diff --git a/third/semester1/CT3536: Games Programming/exam_notes.txt b/third/semester1/CT3536: Games Programming/exam_notes.txt new file mode 100644 index 00000000..0e8287a5 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/exam_notes.txt @@ -0,0 +1 @@ +- ct3111 was the old course code diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/AsteroidScript.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/AsteroidScript.cs new file mode 100644 index 00000000..840530f0 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/AsteroidScript.cs @@ -0,0 +1,34 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class AsteroidScript : MonoBehaviour +{ + public GameObject asteroid; + + // Start is called before the first frame update + void Start() + { + // set asteroid start position to a random plae to the left of mars + asteroid.transform.position = new Vector3(-500,Random.Range(-250, 250),Random.Range(-250,250)); + + // adding force to the asteroir + asteroid.GetComponent().AddForce(Vector3.right * 200000 * Time.deltaTime); + } + + // Update is called once per frame + void Update() + { + // destroy object if it goes off the right edge of the screen + Vector3 position = Camera.main.WorldToScreenPoint(transform.position); + if (position.x > Screen.width) { + Destroy(asteroid); + } + + } + + // destroy asterod upon collisions + void OnCollisionEnter() { + Destroy(asteroid); + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/AsteroidScript.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/AsteroidScript.cs.meta new file mode 100644 index 00000000..eaf2408c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/AsteroidScript.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: eca507dc12d119869b6e6e5bfc1762c6 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: + - asteroid: {instanceID: 0} + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/GameManagerScript.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/GameManagerScript.cs new file mode 100644 index 00000000..4ba254da --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/GameManagerScript.cs @@ -0,0 +1,55 @@ +// Andrew Hayes, ID: 21321503 +// some of the comments here are quite obvious, and are just here for my own learning purposes +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class GameManager : MonoBehaviour { + // inspector settings + public GameObject mars; + public GameObject phobos; + public GameObject deimos; + public GameObject asteroid; + + // speed that the camera moves around mars on arrow keypress + public float cameraSpeed = 500; + + // Start is called before the first frame update + void Start() { + // set position of mars object and point camera at it + mars.transform.position = new Vector3(0,0,0); + mars.transform.rotation = Quaternion.Euler(new Vector3(270,0,0)); // make it so mars' north pole points up + Camera.main.transform.position = new Vector3(0,0,-100); + Camera.main.transform.LookAt(mars.transform); + + // before this can run, you need to manually add a rigid body with 0 angular velocity and no gravity in the UI + // start mars rotating + mars.GetComponent().AddTorque(new Vector3(0,20,0)); + } + + void Update() { + // rotate phobos and deimos a little each frame + phobos.transform.RotateAround(mars.transform.position, Vector3.up, 32*Time.deltaTime); + deimos.transform.RotateAround(mars.transform.position, Vector3.up, 8*Time.deltaTime); + + // control the camera's position using the arrow keys + if (Input.GetKey(KeyCode.LeftArrow)) { + Camera.main.transform.RotateAround(Vector3.zero, Vector3.up, cameraSpeed * Time.deltaTime); + } + else if (Input.GetKey(KeyCode.RightArrow)) { + Camera.main.transform.RotateAround(Vector3.zero, Vector3.up, -cameraSpeed * Time.deltaTime); + } + else if (Input.GetKey(KeyCode.UpArrow)) { + Camera.main.transform.RotateAround(Vector3.zero, Vector3.right, cameraSpeed * Time.deltaTime); + } + else if (Input.GetKey(KeyCode.DownArrow)) { + Camera.main.transform.RotateAround(Vector3.zero, Vector3.right, -cameraSpeed * Time.deltaTime); + } + + // randomly spawn new asteroids + if (Random.Range(1,180) == 1) { // assuming Update() is called 60 times per second, want to spawn a new asteroid on average once every 3 seconds + Instantiate(asteroid); // instantiating asteroid prefab + } + } +} + diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/GameManagerScript.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/GameManagerScript.cs.meta new file mode 100644 index 00000000..0fb8a9fc --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/GameManagerScript.cs.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b2ca6ffba7316325b81d032cd68582c5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: + - mars: {fileID: 919132149155446097, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + - phobos: {fileID: 8158671706834929829, guid: 18b7cfdb18fd74b40a6a893bf804f7a4, type: 3} + - deimos: {fileID: 474245857029531064, guid: 519c8392cfe9249b0a0c17b1d45fef5f, type: 3} + - asteroid: {fileID: 7403127104882189301, guid: cb351f6d8db33aa3bb61da43dcdd2635, type: 3} + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/Scenes.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/Scenes.meta new file mode 100644 index 00000000..2ee48c30 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/Scenes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 65ce25c3c9264ba9da36c545bfe70aa1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/Scenes/SampleScene.unity b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/Scenes/SampleScene.unity new file mode 100644 index 00000000..fef5a2f5 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/Scenes/SampleScene.unity @@ -0,0 +1,587 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 2100000, guid: cfcde6590ecb81b49a97f914002f79a9, type: 2} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 705507994} + m_IndirectSpecularColor: {r: 0.0053261537, g: 0.002279427, b: 0.008268956, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 12 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 0 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 3 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1001 &167340063 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 474245857029531064, guid: 519c8392cfe9249b0a0c17b1d45fef5f, type: 3} + propertyPath: m_Name + value: deimos + objectReference: {fileID: 0} + - target: {fileID: 474245857029765528, guid: 519c8392cfe9249b0a0c17b1d45fef5f, type: 3} + propertyPath: m_LocalPosition.x + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 474245857029765528, guid: 519c8392cfe9249b0a0c17b1d45fef5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 474245857029765528, guid: 519c8392cfe9249b0a0c17b1d45fef5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 474245857029765528, guid: 519c8392cfe9249b0a0c17b1d45fef5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 474245857029765528, guid: 519c8392cfe9249b0a0c17b1d45fef5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 474245857029765528, guid: 519c8392cfe9249b0a0c17b1d45fef5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 474245857029765528, guid: 519c8392cfe9249b0a0c17b1d45fef5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 474245857029765528, guid: 519c8392cfe9249b0a0c17b1d45fef5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 474245857029765528, guid: 519c8392cfe9249b0a0c17b1d45fef5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 474245857029765528, guid: 519c8392cfe9249b0a0c17b1d45fef5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 519c8392cfe9249b0a0c17b1d45fef5f, type: 3} +--- !u!1 &705507993 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 705507995} + - component: {fileID: 705507994} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &705507994 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 705507993} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 1 + m_Shape: 0 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 1 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &705507995 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 705507993} + serializedVersion: 2 + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!1 &963194225 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 963194228} + - component: {fileID: 963194227} + - component: {fileID: 963194226} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &963194226 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 963194225} + m_Enabled: 1 +--- !u!20 &963194227 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 963194225} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &963194228 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 963194225} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1008578052 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + m_PrefabInstance: {fileID: 1064121982} + m_PrefabAsset: {fileID: 0} +--- !u!54 &1008578053 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1008578052} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 0 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!1001 &1064121982 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + propertyPath: m_LocalRotation.w + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + propertyPath: m_LocalRotation.x + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 270 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + propertyPath: m_Name + value: mars1 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 919132149155446097, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + insertIndex: -1 + addedObject: {fileID: 1008578053} + m_SourcePrefab: {fileID: 100100000, guid: 729994df3d65fea10a3e168d5469e639, type: 3} +--- !u!1 &1238982101 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 474245857029531064, guid: 519c8392cfe9249b0a0c17b1d45fef5f, type: 3} + m_PrefabInstance: {fileID: 167340063} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1331862213 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1331862215} + - component: {fileID: 1331862214} + m_Layer: 0 + m_Name: GameManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1331862214 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1331862213} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b2ca6ffba7316325b81d032cd68582c5, type: 3} + m_Name: + m_EditorClassIdentifier: + mars: {fileID: 1008578052} + phobos: {fileID: 1931251019} + deimos: {fileID: 1238982101} + asteroid: {fileID: 7403127104882189301, guid: cb351f6d8db33aa3bb61da43dcdd2635, type: 3} + cameraSpeed: 2 +--- !u!4 &1331862215 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1331862213} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -69.161316, y: -2.1650677, z: 70.67708} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1569350097 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 8158671706834769029, guid: 18b7cfdb18fd74b40a6a893bf804f7a4, type: 3} + propertyPath: m_LocalPosition.x + value: 75 + objectReference: {fileID: 0} + - target: {fileID: 8158671706834769029, guid: 18b7cfdb18fd74b40a6a893bf804f7a4, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8158671706834769029, guid: 18b7cfdb18fd74b40a6a893bf804f7a4, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8158671706834769029, guid: 18b7cfdb18fd74b40a6a893bf804f7a4, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8158671706834769029, guid: 18b7cfdb18fd74b40a6a893bf804f7a4, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8158671706834769029, guid: 18b7cfdb18fd74b40a6a893bf804f7a4, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8158671706834769029, guid: 18b7cfdb18fd74b40a6a893bf804f7a4, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8158671706834769029, guid: 18b7cfdb18fd74b40a6a893bf804f7a4, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8158671706834769029, guid: 18b7cfdb18fd74b40a6a893bf804f7a4, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8158671706834769029, guid: 18b7cfdb18fd74b40a6a893bf804f7a4, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8158671706834929829, guid: 18b7cfdb18fd74b40a6a893bf804f7a4, type: 3} + propertyPath: m_Name + value: phobos + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 18b7cfdb18fd74b40a6a893bf804f7a4, type: 3} +--- !u!1 &1931251019 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 8158671706834929829, guid: 18b7cfdb18fd74b40a6a893bf804f7a4, type: 3} + m_PrefabInstance: {fileID: 1569350097} + m_PrefabAsset: {fileID: 0} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 963194228} + - {fileID: 705507995} + - {fileID: 1331862215} + - {fileID: 1064121982} + - {fileID: 1569350097} + - {fileID: 167340063} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/Scenes/SampleScene.unity.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/Scenes/SampleScene.unity.meta new file mode 100644 index 00000000..952bd1e9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/Scenes/SampleScene.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9fc0d4010bbf28b4594072e72b8655ab +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/SkyboxMaterial.mat b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/SkyboxMaterial.mat new file mode 100644 index 00000000..19f18db4 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/SkyboxMaterial.mat @@ -0,0 +1,110 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SkyboxMaterial + m_Shader: {fileID: 104, guid: 0000000000000000f000000000000000, type: 0} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BackTex: + m_Texture: {fileID: 2800000, guid: 160727aa92b574e2da94a4841f151eac, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DownTex: + m_Texture: {fileID: 2800000, guid: 38f75c321d316413cb8d3ad2af036a84, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _FrontTex: + m_Texture: {fileID: 2800000, guid: 4bf65a7e8488741ce99c26cd4c074d95, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LeftTex: + m_Texture: {fileID: 2800000, guid: 2b4ec48d656de478a84e7f49e484567d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _RightTex: + m_Texture: {fileID: 2800000, guid: 04148519712d0468591d2345a425ef55, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _UpTex: + m_Texture: {fileID: 2800000, guid: 8bf0cd74ca51b45bfb6d767bc0efbd55, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _Exposure: 1 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _Rotation: 0 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _Tint: {r: 0.5, g: 0.5, b: 0.5, a: 0.5} + m_BuildTextureStacks: [] diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/SkyboxMaterial.mat.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/SkyboxMaterial.mat.meta new file mode 100644 index 00000000..61be4aff --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/SkyboxMaterial.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cfcde6590ecb81b49a97f914002f79a9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.DAE b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.DAE new file mode 100644 index 00000000..71e719a4 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.DAE @@ -0,0 +1,432 @@ + + + + + + FBX COLLADA exporter + + + 2011-03-29T18:23:31Z + 2011-03-29T18:23:31Z + + + + + + Y_UP + + + + asteroid1.jpg + + + + + + + + + + + + + + 0.000000 0.000000 0.000000 1.000000 + + + 0.588235 0.588235 0.588235 1.000000 + + + + + + TRUE + TRUE + ADD + + + + + + 0.000000 0.000000 0.000000 1.000000 + + + 2.000000 + + + 0.000000 0.000000 0.000000 1.000000 + + + 1.000000 + + + 1.000000 1.000000 1.000000 1.000000 + + + 0.000000 + + + + + + + + + + + +0.000000 2.933583 28.060616 +-0.000001 17.136948 20.423018 +-5.802542 13.127665 15.231148 +-11.663722 2.975798 15.231148 +-9.628154 -8.568477 15.231148 +-0.648304 -16.103464 15.231148 +5.861180 -16.103464 20.423018 +14.841030 -8.568477 20.423018 +16.876600 2.975794 20.423018 +11.015424 13.127658 20.423018 +-0.000001 26.255325 4.629520 +-11.663722 20.112747 -0.562349 +-20.643574 7.484353 -5.707970 +-18.212126 -13.127668 -0.562349 +-3.766973 -24.671936 -0.562349 +8.979849 -24.671936 4.629520 +22.737778 -13.127667 4.629520 +16.527693 4.559181 4.629520 +16.876608 20.112740 4.629520 +5.931790 23.088545 -13.330179 +-1.475312 17.686852 -13.330179 +-9.372061 4.009281 -13.330179 +-6.629545 -11.544277 -13.330179 +-1.964954 -21.696136 -13.330179 +13.828537 -21.696136 -13.330179 +19.995264 -11.544276 -13.330179 +22.737780 4.009276 -13.330179 +14.841040 17.686844 -13.330179 +5.931791 -0.000000 -20.643642 + + + + + + + + + + + +-0.228682 0.047693 0.972332 +-0.248055 0.672597 0.697196 +-0.748457 0.411777 0.519858 +-0.228682 0.047693 0.972332 +-0.748457 0.411777 0.519858 +-0.818351 0.149015 0.555064 +-0.228682 0.047693 0.972332 +-0.818351 0.149015 0.555064 +-0.667101 -0.407790 0.623445 +-0.228682 0.047693 0.972332 +-0.667101 -0.407790 0.623445 +-0.448070 -0.690501 0.567840 +-0.228682 0.047693 0.972332 +-0.448070 -0.690501 0.567840 +0.006824 -0.677541 0.735453 +-0.228682 0.047693 0.972332 +0.006824 -0.677541 0.735453 +0.685263 -0.291309 0.667498 +-0.228682 0.047693 0.972332 +0.685263 -0.291309 0.667498 +0.841524 0.048529 0.538035 +-0.228682 0.047693 0.972332 +0.841524 0.048529 0.538035 +0.465185 0.548358 0.694915 +-0.228682 0.047693 0.972332 +0.465185 0.548358 0.694915 +-0.248055 0.672597 0.697196 +-0.248055 0.672597 0.697196 +-0.133100 0.978085 0.160109 +-0.698949 0.711487 -0.072511 +-0.248055 0.672597 0.697196 +-0.698949 0.711487 -0.072511 +-0.748457 0.411777 0.519858 +-0.748457 0.411777 0.519858 +-0.698949 0.711487 -0.072511 +-0.907422 0.283072 -0.310573 +-0.748457 0.411777 0.519858 +-0.907422 0.283072 -0.310573 +-0.818351 0.149015 0.555064 +-0.818351 0.149015 0.555064 +-0.907422 0.283072 -0.310573 +-0.888817 -0.457993 -0.015706 +-0.818351 0.149015 0.555064 +-0.888817 -0.457993 -0.015706 +-0.667101 -0.407790 0.623445 +-0.667101 -0.407790 0.623445 +-0.888817 -0.457993 -0.015706 +-0.359945 -0.928249 0.093772 +-0.667101 -0.407790 0.623445 +-0.359945 -0.928249 0.093772 +-0.448070 -0.690501 0.567840 +-0.448070 -0.690501 0.567840 +-0.359945 -0.928249 0.093772 +0.275270 -0.931218 0.238873 +-0.448070 -0.690501 0.567840 +0.275270 -0.931218 0.238873 +0.006824 -0.677541 0.735453 +0.006824 -0.677541 0.735453 +0.275270 -0.931218 0.238873 +0.916654 -0.338340 0.212771 +0.006824 -0.677541 0.735453 +0.916654 -0.338340 0.212771 +0.685263 -0.291309 0.667498 +0.685263 -0.291309 0.667498 +0.916654 -0.338340 0.212771 +0.978638 0.156745 0.133037 +0.685263 -0.291309 0.667498 +0.978638 0.156745 0.133037 +0.841524 0.048529 0.538035 +0.841524 0.048529 0.538035 +0.978638 0.156745 0.133037 +0.790952 0.597552 0.131631 +0.841524 0.048529 0.538035 +0.790952 0.597552 0.131631 +0.465185 0.548358 0.694915 +0.465185 0.548358 0.694915 +0.790952 0.597552 0.131631 +-0.133100 0.978085 0.160109 +0.465185 0.548358 0.694915 +-0.133100 0.978085 0.160109 +-0.248055 0.672597 0.697196 +-0.133100 0.978085 0.160109 +0.006659 0.798535 -0.601912 +-0.460625 0.514703 -0.723122 +-0.133100 0.978085 0.160109 +-0.460625 0.514703 -0.723122 +-0.698949 0.711487 -0.072511 +-0.698949 0.711487 -0.072511 +-0.460625 0.514703 -0.723122 +-0.513614 0.141412 -0.846288 +-0.698949 0.711487 -0.072511 +-0.513614 0.141412 -0.846288 +-0.907422 0.283072 -0.310573 +-0.907422 0.283072 -0.310573 +-0.513614 0.141412 -0.846288 +-0.556298 -0.207010 -0.804785 +-0.907422 0.283072 -0.310573 +-0.556298 -0.207010 -0.804785 +-0.888817 -0.457993 -0.015706 +-0.888817 -0.457993 -0.015706 +-0.556298 -0.207010 -0.804785 +-0.314074 -0.678511 -0.664064 +-0.888817 -0.457993 -0.015706 +-0.314074 -0.678511 -0.664064 +-0.359945 -0.928249 0.093772 +-0.359945 -0.928249 0.093772 +-0.314074 -0.678511 -0.664064 +0.481002 -0.712299 -0.511143 +-0.359945 -0.928249 0.093772 +0.481002 -0.712299 -0.511143 +0.275270 -0.931218 0.238873 +0.275270 -0.931218 0.238873 +0.481002 -0.712299 -0.511143 +0.750712 -0.341286 -0.565646 +0.275270 -0.931218 0.238873 +0.750712 -0.341286 -0.565646 +0.916654 -0.338340 0.212771 +0.916654 -0.338340 0.212771 +0.750712 -0.341286 -0.565646 +0.874809 0.231053 -0.425821 +0.916654 -0.338340 0.212771 +0.874809 0.231053 -0.425821 +0.978638 0.156745 0.133037 +0.978638 0.156745 0.133037 +0.874809 0.231053 -0.425821 +0.648495 0.530867 -0.545559 +0.978638 0.156745 0.133037 +0.648495 0.530867 -0.545559 +0.790952 0.597552 0.131631 +0.790952 0.597552 0.131631 +0.648495 0.530867 -0.545559 +0.006659 0.798535 -0.601912 +0.790952 0.597552 0.131631 +0.006659 0.798535 -0.601912 +-0.133100 0.978085 0.160109 +-0.018336 0.012233 -0.999757 +-0.460625 0.514703 -0.723122 +0.006659 0.798535 -0.601912 +-0.018336 0.012233 -0.999757 +-0.513614 0.141412 -0.846288 +-0.460625 0.514703 -0.723122 +-0.018336 0.012233 -0.999757 +-0.556298 -0.207010 -0.804785 +-0.513614 0.141412 -0.846288 +-0.018336 0.012233 -0.999757 +-0.314074 -0.678511 -0.664064 +-0.556298 -0.207010 -0.804785 +-0.018336 0.012233 -0.999757 +0.481002 -0.712299 -0.511143 +-0.314074 -0.678511 -0.664064 +-0.018336 0.012233 -0.999757 +0.750712 -0.341286 -0.565646 +0.481002 -0.712299 -0.511143 +-0.018336 0.012233 -0.999757 +0.874809 0.231053 -0.425821 +0.750712 -0.341286 -0.565646 +-0.018336 0.012233 -0.999757 +0.648495 0.530867 -0.545559 +0.874809 0.231053 -0.425821 +-0.018336 0.012233 -0.999757 +0.006659 0.798535 -0.601912 +0.648495 0.530867 -0.545559 + + + + + + + + + + + +0.000000 1.000000 +0.111111 1.000000 +0.222222 1.000000 +0.333333 1.000000 +0.444444 1.000000 +0.555556 1.000000 +0.666667 1.000000 +0.777778 1.000000 +0.888889 1.000000 +1.000000 1.000000 +0.000000 0.777778 +0.111111 0.777778 +0.222222 0.777778 +0.333333 0.777778 +0.444444 0.777778 +0.555556 0.777778 +0.666667 0.777778 +0.777778 0.777778 +0.888889 0.777778 +1.000000 0.777778 +0.000000 0.555556 +0.111111 0.555556 +0.222222 0.555556 +0.333333 0.555556 +0.444444 0.555556 +0.555556 0.555556 +0.666667 0.555556 +0.777778 0.555556 +0.888889 0.555556 +1.000000 0.555556 +0.000000 0.333333 +0.111111 0.333333 +0.222222 0.333333 +0.333333 0.333333 +0.444444 0.333333 +0.555556 0.333333 +0.666667 0.333333 +0.777778 0.333333 +0.888889 0.333333 +1.000000 0.333333 +0.000000 0.111111 +0.111111 0.111111 +0.222222 0.111111 +0.333333 0.111111 +0.444444 0.111111 +0.555556 0.111111 +0.666667 0.111111 +0.777778 0.111111 +0.888889 0.111111 +1.000000 0.111111 + + + + + + + + + + + + + + + +

0 0 0 1 1 10 2 2 11

+

0 3 1 2 4 11 3 5 12

+

0 6 2 3 7 12 4 8 13

+

0 9 3 4 10 13 5 11 14

+

0 12 4 5 13 14 6 14 15

+

0 15 5 6 16 15 7 17 16

+

0 18 6 7 19 16 8 20 17

+

0 21 7 8 22 17 9 23 18

+

0 24 8 9 25 18 1 26 19

+

1 27 10 10 28 20 11 29 21

+

1 30 10 11 31 21 2 32 11

+

2 33 11 11 34 21 12 35 22

+

2 36 11 12 37 22 3 38 12

+

3 39 12 12 40 22 13 41 23

+

3 42 12 13 43 23 4 44 13

+

4 45 13 13 46 23 14 47 24

+

4 48 13 14 49 24 5 50 14

+

5 51 14 14 52 24 15 53 25

+

5 54 14 15 55 25 6 56 15

+

6 57 15 15 58 25 16 59 26

+

6 60 15 16 61 26 7 62 16

+

7 63 16 16 64 26 17 65 27

+

7 66 16 17 67 27 8 68 17

+

8 69 17 17 70 27 18 71 28

+

8 72 17 18 73 28 9 74 18

+

9 75 18 18 76 28 10 77 29

+

9 78 18 10 79 29 1 80 19

+

10 81 20 19 82 30 20 83 31

+

10 84 20 20 85 31 11 86 21

+

11 87 21 20 88 31 21 89 32

+

11 90 21 21 91 32 12 92 22

+

12 93 22 21 94 32 22 95 33

+

12 96 22 22 97 33 13 98 23

+

13 99 23 22 100 33 23 101 34

+

13 102 23 23 103 34 14 104 24

+

14 105 24 23 106 34 24 107 35

+

14 108 24 24 109 35 15 110 25

+

15 111 25 24 112 35 25 113 36

+

15 114 25 25 115 36 16 116 26

+

16 117 26 25 118 36 26 119 37

+

16 120 26 26 121 37 17 122 27

+

17 123 27 26 124 37 27 125 38

+

17 126 27 27 127 38 18 128 28

+

18 129 28 27 130 38 19 131 39

+

18 132 28 19 133 39 10 134 29

+

28 135 40 20 136 31 19 137 30

+

28 138 41 21 139 32 20 140 31

+

28 141 42 22 142 33 21 143 32

+

28 144 43 23 145 34 22 146 33

+

28 147 44 24 148 35 23 149 34

+

28 150 45 25 151 36 24 152 35

+

28 153 46 26 154 37 25 155 36

+

28 156 47 27 157 38 26 158 37

+

28 159 48 19 160 39 27 161 38

+
+
+
+
+ + + + 1.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 -1.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 + + + + + + + + + + + + + +
+ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.DAE.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.DAE.meta new file mode 100644 index 00000000..243b2a69 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.DAE.meta @@ -0,0 +1,107 @@ +fileFormatVersion: 2 +guid: 78463956d81a76c58afb6cc7a7d5c91c +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.jpg b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.jpg new file mode 100644 index 00000000..3a45191d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.jpg differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.jpg.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.jpg.meta new file mode 100644 index 00000000..5fe15556 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.jpg.meta @@ -0,0 +1,148 @@ +fileFormatVersion: 2 +guid: 29ea5df3c2b0fde50a6cfa712ee3bf43 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.prefab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.prefab new file mode 100644 index 00000000..303aa554 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.prefab @@ -0,0 +1,149 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7403127104882189301 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1580577290007040041} + - component: {fileID: 7373982358426546496} + - component: {fileID: 6638633915664101152} + - component: {fileID: -2863260050607356218} + - component: {fileID: 758864102433418508} + - component: {fileID: -6673167403383002539} + m_Layer: 0 + m_Name: asteroid1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1580577290007040041 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7403127104882189301} + serializedVersion: 2 + m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068} + m_LocalPosition: {x: -0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &7373982358426546496 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7403127104882189301} + m_Mesh: {fileID: -8978465599795454212, guid: 78463956d81a76c58afb6cc7a7d5c91c, type: 3} +--- !u!23 &6638633915664101152 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7403127104882189301} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -4910163530500726105, guid: 78463956d81a76c58afb6cc7a7d5c91c, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!135 &-2863260050607356218 +SphereCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7403127104882189301} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Radius: 25.463636 + m_Center: {x: -1.0471029, y: 0.7916948, z: 3.7084875} +--- !u!54 &758864102433418508 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7403127104882189301} + serializedVersion: 4 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0 + m_CenterOfMass: {x: 0, y: 0, z: 0} + m_InertiaTensor: {x: 1, y: 1, z: 1} + m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ImplicitCom: 1 + m_ImplicitTensor: 1 + m_UseGravity: 0 + m_IsKinematic: 0 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!114 &-6673167403383002539 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7403127104882189301} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: eca507dc12d119869b6e6e5bfc1762c6, type: 3} + m_Name: + m_EditorClassIdentifier: + asteroid: {fileID: 7403127104882189301} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.prefab.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.prefab.meta new file mode 100644 index 00000000..7fd11533 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/asteroid1.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: cb351f6d8db33aa3bb61da43dcdd2635 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos.jpg b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos.jpg new file mode 100755 index 00000000..3a3659be Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos.jpg differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos.jpg.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos.jpg.meta new file mode 100644 index 00000000..9b7084c2 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos.jpg.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 534b5dbfc61794e58bfe9b52bc6389bf +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos.prefab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos.prefab new file mode 100644 index 00000000..04c09766 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos.prefab @@ -0,0 +1,108 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &474245857029531064 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 474245857029765528} + - component: {fileID: 474245857026374078} + - component: {fileID: 474245857027341182} + - component: {fileID: 4406876169920435290} + m_Layer: 0 + m_Name: deimos + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &474245857029765528 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 474245857029531064} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 44.02} + m_LocalScale: {x: 0.05, y: 0.05, z: 0.05} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &474245857026374078 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 474245857029531064} + m_Mesh: {fileID: 4300000, guid: f7615ca7131634e47a6c5c0fed2c9cdc, type: 3} +--- !u!23 &474245857027341182 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 474245857029531064} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: f7615ca7131634e47a6c5c0fed2c9cdc, type: 3} + - {fileID: 2100002, guid: f7615ca7131634e47a6c5c0fed2c9cdc, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!135 &4406876169920435290 +SphereCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 474245857029531064} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Radius: 43.986126 + m_Center: {x: -40.825275, y: 43.986126, z: 39.352062} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos.prefab.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos.prefab.meta new file mode 100644 index 00000000..85623964 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 519c8392cfe9249b0a0c17b1d45fef5f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos2.dae b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos2.dae new file mode 100755 index 00000000..b0e350a8 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos2.dae @@ -0,0 +1,185 @@ + + + + + Google SketchUp 5 + + 2008-12-19T02:40:33Z + 2008-12-19T02:40:33Z + + Z_UP + + + + deimos.jpg + + + + + + + + + + + + + + + + deimos-image + + + + + deimos-image-surface + + + + + + 0.000000 0.000000 0.000000 1 + + + 0.000000 0.000000 0.000000 1 + + + + + + 0.330000 0.330000 0.330000 1 + + + 20.000000 + + + 0.100000 + + + 1 1 1 1 + + + 0.000000 + + + + + + + + + + + 0.000000 0.000000 0.000000 1 + + + 0.000000 0.000000 0.000000 1 + + + 0.501961 0.501961 0.784314 1 + + + 0.330000 0.330000 0.330000 1 + + + 20.000000 + + + 0.100000 + + + 1 1 1 1 + + + 0.000000 + + + + + + + + + + + 58.503138 51.089473 65.508798 61.237913 61.593706 59.929791 55.259190 55.440469 65.508798 65.825549 55.440469 59.929791 55.259190 64.374306 59.929791 51.031594 56.838161 70.162341 48.296820 48.274872 74.554097 46.108455 50.003078 76.317876 40.825276 40.585240 78.704125 43.560050 51.089473 77.090711 40.825276 51.460022 77.090711 38.090501 51.089473 77.854491 39.329213 61.593706 69.308011 35.542096 60.877860 68.713522 35.542096 50.003078 73.130081 30.618957 58.779105 69.622971 33.353732 69.283338 62.347114 40.825276 70.295698 63.445540 40.825276 76.972971 61.226018 25.607611 75.733089 55.328380 31.163858 86.938197 51.629184 21.705571 79.787572 44.192176 23.147413 72.097939 52.659089 26.391361 66.315251 59.929791 20.412638 61.593706 59.929791 15.825002 66.315251 52.659089 21.108182 75.733089 44.192176 12.941094 69.283338 44.192176 20.412638 76.429664 35.106059 11.957446 70.295698 35.106059 12.941094 69.283338 26.019942 5.469550 61.593706 35.106059 6.674267 60.877860 26.019942 15.825002 66.315251 17.553030 10.206319 58.779105 17.553030 15.825002 55.440469 10.282327 20.412638 61.593706 10.282327 12.798824 50.003078 17.553030 12.941094 48.274872 10.282327 21.108182 46.022631 4.703320 23.147413 51.089473 4.703320 20.963819 39.640358 4.703320 12.508627 39.640358 10.282327 13.492275 31.950726 10.282327 21.659363 34.202967 4.703320 7.634904 40.585240 17.553030 8.839621 31.167402 17.553030 15.825002 27.674893 10.282327 10.206319 24.336257 17.553030 15.825002 16.800111 17.553030 20.412638 21.521656 10.282327 15.342669 11.887142 26.019942 23.147413 9.072541 17.553030 23.147413 30.081007 4.703320 26.391361 25.730011 4.703320 31.674540 35.147849 1.196210 33.353732 32.895608 1.196210 40.825276 40.585240 0.000000 35.542096 31.167402 1.196210 38.090501 30.081007 1.196210 40.825276 29.710458 1.196210 35.542096 20.292620 4.703320 30.618957 22.391375 4.703320 33.353732 11.887142 10.282327 26.391361 14.855229 10.282327 31.674540 5.437391 17.553030 30.618957 1.382909 26.019942 21.108182 5.437391 26.019942 22.006163 4.197509 35.106059 16.759703 10.874782 35.106059 30.258917 5.261303 35.106059 40.825276 3.936508 35.106059 40.825276 0.000000 26.019942 40.825276 4.197509 17.553030 40.825276 10.874782 10.282327 40.825276 19.576774 4.703320 43.560050 30.081007 1.196210 46.108455 20.292620 4.703320 46.108455 31.167402 1.196210 51.031594 22.391375 4.703320 48.296820 32.895608 1.196210 55.259190 25.730011 4.703320 49.976011 35.147849 1.196210 58.503138 30.081007 4.703320 51.031594 37.770639 1.196210 60.542370 35.147849 4.703320 51.391634 40.585240 1.196210 61.237913 40.585240 4.703320 60.542370 46.022631 4.703320 51.031594 43.399841 1.196210 49.976011 46.022631 1.196210 48.296820 48.274872 1.196210 46.108455 50.003078 1.196210 43.560050 51.089473 1.196210 40.825276 51.460022 1.196210 38.090501 51.089473 1.196210 40.825276 61.593706 4.703320 35.542096 60.877860 4.703320 35.542096 50.003078 1.196210 30.618957 58.779105 4.703320 33.353732 48.274872 1.196210 26.391361 55.440469 4.703320 31.674540 46.022631 1.196210 30.618957 43.399841 1.196210 30.258917 40.585240 1.196210 30.618957 37.770639 1.196210 26.391361 66.315251 10.282327 33.353732 69.283338 10.282327 40.825276 70.295698 10.282327 46.108455 60.877860 4.703320 48.296820 69.283338 10.282327 51.031594 58.779105 4.703320 55.259190 66.315251 10.282327 49.976011 75.733089 17.553030 58.503138 72.097939 17.553030 51.031594 79.787572 26.019942 60.542370 75.733089 26.019942 51.391634 81.170480 35.106059 51.777193 74.799742 34.476138 51.031594 79.787572 44.192176 49.976011 75.733089 57.426805 60.542370 75.733089 44.192176 60.232385 68.122469 34.476138 68.709457 69.283338 44.192176 68.709457 69.283338 26.019942 65.825549 66.315251 17.553030 61.237913 61.593706 10.282327 55.259190 55.440469 4.703320 58.503138 51.089473 4.703320 65.825549 55.440469 10.282327 71.444232 58.779105 17.553030 74.976284 60.877860 26.019942 78.915776 51.089473 26.019942 74.976284 50.003078 17.553030 80.259464 40.585240 26.019942 76.181001 40.585240 17.553030 74.976284 31.167402 17.553030 78.915776 30.081007 26.019942 81.302779 29.710458 35.106059 81.650551 40.585240 36.125744 80.259464 40.585240 45.211861 78.915776 51.089473 45.211861 80.259464 51.460022 36.125744 76.318797 40.585240 52.659089 74.976284 50.003078 52.659089 68.709457 48.274872 59.929791 71.444232 58.779105 52.659089 60.542370 46.022631 65.508798 68.695628 61.909739 52.659089 58.503138 72.097939 52.659089 45.348001 66.315251 62.288059 26.391361 55.440469 69.622971 33.353732 48.274872 73.130081 31.674540 46.022631 72.858428 23.147413 51.089473 65.508798 15.825002 55.440469 59.929791 10.206319 58.779105 52.659089 6.674267 60.877860 44.192176 9.554780 50.003078 52.659089 2.734775 51.089473 44.192176 1.391088 51.460022 35.106059 0.000000 40.585240 35.106059 3.556442 40.585240 26.019942 4.900129 30.081007 26.019942 1.391088 29.710458 35.106059 7.115182 19.576774 35.106059 9.578220 30.081007 44.192176 8.234532 40.585240 44.192176 13.517712 31.167402 52.659089 12.312995 40.585240 52.659089 12.941094 32.895608 59.929791 11.957446 40.585240 59.929791 20.412638 40.585240 65.508798 12.941094 48.274872 59.929791 21.108182 46.022631 65.508798 30.618957 43.399841 71.464727 30.258917 40.585240 71.464727 21.108182 35.147849 67.465491 15.825002 25.730011 59.929791 23.147413 30.081007 67.465491 23.050433 19.576774 59.929791 15.825002 14.855229 52.659089 10.206319 22.391375 52.659089 17.071015 11.887142 44.192176 23.147413 9.072541 52.659089 21.108182 5.437391 44.192176 30.618957 6.644212 44.192176 40.825276 5.368200 44.192176 51.031594 3.567948 44.192176 51.391634 0.000000 35.106059 51.031594 1.382909 26.019942 49.976011 5.437391 17.553030 48.296820 11.887142 10.282327 55.259190 14.855229 10.282327 61.237913 19.576774 10.282327 65.825549 25.730011 10.282327 68.709457 32.895608 10.282327 69.693105 40.585240 13.475240 71.444232 22.391375 17.553030 66.555024 20.292620 26.019942 65.825549 14.855229 17.553030 68.709457 11.887142 26.019942 58.503138 9.072541 17.553030 60.542370 5.437391 26.019942 61.237913 7.536146 35.106059 69.693105 14.906880 35.106059 76.181001 19.257876 35.106059 74.976284 20.292620 44.192176 68.709457 15.143047 44.192176 60.542370 13.118494 44.192176 49.976011 7.646053 52.659089 40.825276 4.197509 52.659089 31.674540 9.696933 52.659089 33.353732 11.887142 59.929791 29.029156 14.855229 59.929791 26.391361 25.730011 68.540294 30.618957 22.391375 68.540294 31.674540 35.147849 70.972601 30.618957 37.770639 70.972601 33.353732 32.895608 72.047404 35.542096 31.167402 72.047404 35.542096 20.292620 69.619034 40.825276 19.576774 69.619034 40.825276 10.874782 59.929791 48.296820 11.887142 59.929791 58.503138 14.765454 52.659089 65.825549 18.311922 52.659089 71.444232 22.391375 52.659089 78.915776 30.081007 44.192176 74.976284 31.167402 52.659089 68.709457 32.895608 59.929791 65.825549 25.730011 59.929791 61.237913 19.576774 59.929791 55.259190 14.855229 59.929791 51.031594 22.391375 65.508798 46.108455 20.292620 65.508798 46.108455 31.167402 71.708822 43.560050 30.081007 71.819058 48.296820 32.895608 73.752129 49.976011 35.147849 72.185540 40.825276 29.710458 71.819058 38.090501 30.081007 73.126144 55.259190 25.730011 67.552105 55.082420 32.364472 67.552105 51.031594 37.770639 69.015908 51.391634 40.585240 70.047404 51.031594 43.399841 72.909609 49.976011 46.022631 72.169451 61.237913 40.585240 65.508798 74.665546 40.585240 59.929791 60.542370 35.147849 65.508798 76.181001 61.593706 35.106059 74.976284 60.877860 44.192176 68.709457 48.274872 10.282327 6.674267 20.292620 44.192176 6.674267 20.292620 26.019942 8.859332 51.089473 26.019942 43.159636 60.877860 70.882814 40.825276 87.972251 35.106059 40.825276 81.170480 26.019942 40.825276 76.972971 17.553030 31.674540 75.733089 17.553030 30.618957 79.787572 26.019942 26.664429 87.972251 35.106059 21.108182 75.733089 26.019942 23.147413 72.097939 17.553030 + + + + + + + + + + 0.482112 0.270534 0.833294 0.435516 0.551626 0.711362 0.598095 0.278870 0.751341 0.571930 0.357645 0.738232 -0.598095 -0.278870 -0.751341 -0.435516 -0.551626 -0.711362 -0.482112 -0.270534 -0.833294 0.435516 0.551626 0.711362 0.420257 0.599115 0.681502 0.598095 0.278870 0.751341 -0.598095 -0.278870 -0.751341 -0.420257 -0.599115 -0.681502 -0.435516 -0.551626 -0.711362 0.420257 0.599115 0.681502 0.567062 0.442595 0.694659 -0.567062 -0.442595 -0.694659 -0.420257 -0.599115 -0.681502 0.567062 0.442595 0.694659 0.705442 -0.032561 0.708020 0.598095 0.278870 0.751341 0.567062 0.442595 0.694659 0.488209 0.226312 0.842873 0.705442 -0.032561 0.708020 -0.705442 0.032561 -0.708020 -0.488209 -0.226312 -0.842873 -0.567062 -0.442595 -0.694659 -0.011109 -0.161944 0.986737 0.011109 0.161944 -0.986737 -0.705442 0.032561 -0.708020 0.130169 0.388933 0.912024 -0.011109 -0.161944 0.986737 0.011109 0.161944 -0.986737 -0.130169 -0.388933 -0.912024 0.130169 0.388933 0.912024 0.125830 0.394325 0.910316 -0.011109 -0.161944 0.986737 0.011109 0.161944 -0.986737 -0.125830 -0.394325 -0.910316 -0.130169 -0.388933 -0.912024 -0.011109 -0.161944 0.986737 -0.395413 0.345631 0.850992 0.395413 -0.345631 -0.850992 0.011109 0.161944 -0.986737 0.125830 0.394325 0.910316 -0.026067 0.621041 0.783344 -0.395413 0.345631 0.850992 0.395413 -0.345631 -0.850992 0.026067 -0.621041 -0.783344 -0.125830 -0.394325 -0.910316 -0.026067 0.621041 0.783344 -0.312133 0.502959 0.805981 0.312133 -0.502959 -0.805981 0.026067 -0.621041 -0.783344 -0.501044 0.225820 0.835440 -0.501044 0.225820 0.835440 -0.312133 0.502959 0.805981 -0.256853 0.496352 0.829253 0.256853 -0.496352 -0.829253 0.312133 -0.502959 -0.805981 0.501044 -0.225820 -0.835440 -0.286870 0.497172 0.818856 -0.256853 0.496352 0.829253 -0.026067 0.621041 0.783344 0.169848 0.421016 0.891009 -0.286870 0.497172 0.818856 0.054045 0.469399 0.881331 0.054045 0.469399 0.881331 -0.628085 0.395094 0.670381 0.054045 0.469399 0.881331 -0.023256 0.901956 0.431202 -0.628085 0.395094 0.670381 0.628085 -0.395094 -0.670381 0.023256 -0.901956 -0.431202 -0.054045 -0.469399 -0.881331 -0.023256 0.901956 0.431202 -0.900093 0.378962 0.214988 0.900093 -0.378962 -0.214988 0.023256 -0.901956 -0.431202 -0.774012 0.400938 0.490055 0.774012 -0.400938 -0.490055 -0.774012 0.400938 0.490055 -0.551740 0.474268 0.686041 0.551740 -0.474268 -0.686041 0.774012 -0.400938 -0.490055 -0.576274 0.419627 0.701300 -0.551740 0.474268 0.686041 -0.593675 0.577231 0.560673 0.593675 -0.577231 -0.560673 0.576274 -0.419627 -0.701300 -0.861745 0.492257 0.122795 -0.593675 0.577231 0.560673 -0.774012 0.400938 0.490055 -0.667290 0.697258 0.261831 0.667290 -0.697258 -0.261831 0.861745 -0.492257 -0.122795 0.593675 -0.577231 -0.560673 -0.710046 0.704155 -0.000000 0.710046 -0.704155 0.000000 -0.667290 0.697258 0.261831 -0.710046 0.704155 -0.000000 -0.702484 0.711700 -0.000000 0.702484 -0.711700 0.000000 0.710046 -0.704155 0.000000 0.667290 -0.697258 -0.261831 -0.667290 0.697258 -0.261831 -0.702484 0.711700 -0.000000 0.702484 -0.711700 0.000000 0.667290 -0.697258 0.261831 -0.871946 0.489603 -0.000000 -0.702484 0.711700 -0.000000 -0.896893 0.244486 -0.368524 0.896893 -0.244486 0.368524 0.871946 -0.489603 0.000000 -0.593675 0.577231 -0.560673 -0.896893 0.244486 -0.368524 -0.859081 0.059787 -0.508335 0.859081 -0.059787 0.508335 0.593675 -0.577231 0.560673 0.896893 -0.244486 0.368524 -0.720975 0.243134 -0.648908 -0.859081 0.059787 -0.508335 -0.465125 0.452131 -0.761076 0.859081 -0.059787 0.508335 0.720975 -0.243134 0.648908 -0.912612 0.213202 -0.348832 0.912612 -0.213202 0.348832 -0.720975 0.243134 -0.648908 -0.773062 0.206917 -0.599634 -0.419122 0.079889 -0.904408 -0.773062 0.206917 -0.599634 -0.387083 0.217193 -0.896100 0.773062 -0.206917 0.599634 0.419122 -0.079889 0.904408 -0.419122 0.079889 -0.904408 -0.476111 -0.013414 -0.879283 -0.773062 0.206917 -0.599634 0.773062 -0.206917 0.599634 0.476111 0.013414 0.879283 0.419122 -0.079889 0.904408 -0.476111 -0.013414 -0.879283 -0.705376 -0.027535 -0.708299 -0.773062 0.206917 -0.599634 -0.675978 -0.220010 -0.703314 -0.705376 -0.027535 -0.708299 -0.457192 -0.141098 -0.878104 0.705376 0.027535 0.708299 0.675978 0.220010 0.703314 -0.888649 0.155410 -0.431452 -0.830943 -0.193339 -0.521683 0.830943 0.193339 0.521683 0.888649 -0.155410 0.431452 -0.675978 -0.220010 -0.703314 -0.615005 -0.311189 -0.724521 -0.457192 -0.141098 -0.878104 -0.615005 -0.311189 -0.724521 0.675978 0.220010 0.703314 0.615005 0.311189 0.724521 0.457192 0.141098 0.878104 0.615005 0.311189 0.724521 -0.830943 -0.193339 -0.521683 -0.765676 -0.360816 -0.532497 0.765676 0.360816 0.532497 0.830943 0.193339 0.521683 -0.646705 -0.543853 -0.534786 -0.765676 -0.360816 -0.532497 -0.530580 -0.448368 -0.719340 0.765676 0.360816 0.532497 0.646705 0.543853 0.534786 -0.765676 -0.360816 -0.532497 -0.646705 -0.543853 -0.534786 -0.706146 -0.648617 -0.283997 0.706146 0.648617 0.283997 0.646705 0.543853 0.534786 0.765676 0.360816 0.532497 -0.527001 -0.641825 -0.557074 -0.527001 -0.641825 -0.557074 0.530580 0.448368 0.719340 0.527001 0.641825 0.557074 -0.393025 -0.203305 -0.896771 -0.530580 -0.448368 -0.719340 -0.355007 -0.336045 -0.872378 0.530580 0.448368 0.719340 0.393025 0.203305 0.896771 0.355007 0.336045 0.872378 -0.195344 -0.109593 -0.974592 -0.393025 -0.203305 -0.896771 -0.159579 -0.155066 -0.974930 0.393025 0.203305 0.896771 0.195344 0.109593 0.974592 0.159579 0.155066 0.974930 -0.000000 -0.000000 -1.000000 -0.195344 -0.109593 -0.974592 0.195344 0.109593 0.974592 0.000000 0.000000 1.000000 -0.000000 -0.000000 -1.000000 -0.112896 -0.190013 -0.975269 -0.159579 -0.155066 -0.974930 -0.000000 -0.000000 -1.000000 -0.058461 -0.212010 -0.975517 -0.000000 -0.219519 -0.975608 -0.058461 -0.212010 -0.975517 -0.000000 -0.000000 -1.000000 0.000000 0.000000 1.000000 0.058461 0.212010 0.975517 0.000000 0.219519 0.975608 0.112896 0.190013 0.975269 0.058461 0.212010 0.975517 0.000000 0.000000 1.000000 -0.116160 -0.421316 -0.899444 -0.224156 -0.377323 -0.898544 0.224156 0.377323 0.898544 0.116160 0.421316 0.899444 -0.171154 -0.620913 -0.764966 -0.377985 -0.512850 -0.770787 0.377985 0.512850 0.770787 0.171154 0.620913 0.764966 -0.219145 -0.795216 -0.565337 -0.377985 -0.512850 -0.770787 -0.527001 -0.641825 -0.557074 0.377985 0.512850 0.770787 0.219145 0.795216 0.565337 0.527001 0.641825 0.557074 -0.180131 -0.982909 0.037979 -0.527001 -0.641825 -0.557074 -0.219145 -0.795216 -0.565337 -0.618939 -0.761732 -0.191517 0.219145 0.795216 0.565337 0.527001 0.641825 0.557074 0.180131 0.982909 -0.037979 0.618939 0.761732 0.191517 -0.300485 -0.947109 0.112664 -0.618939 -0.761732 -0.191517 -0.180131 -0.982909 0.037979 -0.732450 -0.679998 0.033454 -0.300485 -0.947109 0.112664 -0.706146 -0.648617 -0.283997 -0.732450 -0.679998 0.033454 0.732450 0.679998 -0.033454 0.706146 0.648617 0.283997 0.300485 0.947109 -0.112664 0.618939 0.761732 0.191517 0.732450 0.679998 -0.033454 0.180131 0.982909 -0.037979 0.300485 0.947109 -0.112664 -0.180131 -0.982909 0.037979 -0.023588 -0.967905 0.250209 0.023588 0.967905 -0.250209 0.180131 0.982909 -0.037979 -0.023588 -0.967905 0.250209 -0.180131 -0.982909 0.037979 -0.199688 -0.931835 0.302997 0.199688 0.931835 -0.302997 0.180131 0.982909 -0.037979 0.023588 0.967905 -0.250209 -0.199688 -0.931835 0.302997 -0.068971 -0.995915 -0.058276 0.068971 0.995915 0.058276 0.199688 0.931835 -0.302997 -0.219145 -0.795216 -0.565337 -0.000000 -0.824358 -0.566069 0.000000 0.824358 0.566069 0.219145 0.795216 0.565337 -0.171154 -0.620913 -0.764966 -0.000000 -0.643348 -0.765574 0.000000 0.643348 0.765574 0.171154 0.620913 0.764966 -0.000000 -0.436355 -0.899774 0.000000 0.436355 0.899774 0.058461 -0.212010 -0.975517 -0.000000 -0.436355 -0.899774 -0.000000 -0.219519 -0.975608 0.116160 -0.421316 -0.899444 0.000000 0.219519 0.975608 0.000000 0.436355 0.899774 -0.058461 0.212010 0.975517 -0.116160 0.421316 0.899444 0.112896 -0.190013 -0.975269 0.058461 -0.212010 -0.975517 0.224156 -0.377323 -0.898544 -0.058461 0.212010 0.975517 -0.112896 0.190013 0.975269 -0.224156 0.377323 0.898544 0.159579 -0.155066 -0.974930 0.224156 -0.377323 -0.898544 0.316527 -0.307619 -0.897319 -0.224156 0.377323 0.898544 -0.159579 0.155066 0.974930 -0.316527 0.307619 0.897319 0.195344 -0.109593 -0.974592 0.387083 -0.217193 -0.896100 -0.195344 0.109593 0.974592 -0.387083 0.217193 0.896100 0.217798 -0.056708 -0.974345 0.387083 -0.217193 -0.896100 0.508456 -0.045987 -0.859859 -0.387083 0.217193 0.896100 -0.217798 0.056708 0.974345 -0.508456 0.045987 0.859859 0.225450 -0.000000 -0.974255 0.217798 -0.056708 -0.974345 0.541811 0.000000 -0.840500 -0.217798 0.056708 0.974345 -0.225450 0.000000 0.974255 -0.541811 -0.000000 0.840500 0.508456 0.045987 -0.859859 0.541811 0.000000 -0.840500 0.217798 0.056708 -0.974345 -0.217798 -0.056708 0.974345 -0.508456 -0.045987 0.859859 0.225450 -0.000000 -0.974255 -0.000000 -0.000000 -1.000000 0.225450 -0.000000 -0.974255 -0.000000 -0.000000 -1.000000 0.000000 0.000000 1.000000 -0.225450 0.000000 0.974255 0.195344 -0.109593 -0.974592 -0.000000 -0.000000 -1.000000 0.000000 0.000000 1.000000 -0.195344 0.109593 0.974592 -0.000000 -0.000000 -1.000000 0.000000 0.000000 1.000000 0.159579 -0.155066 -0.974930 0.112896 -0.190013 -0.975269 -0.000000 -0.000000 -1.000000 0.000000 0.000000 1.000000 -0.112896 0.190013 0.975269 -0.159579 0.155066 0.974930 -0.000000 -0.000000 -1.000000 0.000000 0.000000 1.000000 -0.000000 -0.219519 -0.975608 -0.000000 -0.000000 -1.000000 0.000000 0.000000 1.000000 0.000000 0.219519 0.975608 0.000000 0.000000 1.000000 -0.225450 0.000000 0.974255 0.217798 0.056708 -0.974345 0.195344 0.109593 -0.974592 -0.195344 -0.109593 0.974592 -0.217798 -0.056708 0.974345 -0.000000 -0.000000 -1.000000 0.159579 0.155066 -0.974930 -0.159579 -0.155066 0.974930 0.000000 0.000000 1.000000 0.159579 0.155066 -0.974930 -0.000000 -0.000000 -1.000000 0.112896 0.190013 -0.975269 -0.112896 -0.190013 0.975269 0.000000 0.000000 1.000000 -0.159579 -0.155066 0.974930 -0.000000 -0.000000 -1.000000 0.058461 0.212010 -0.975517 -0.058461 -0.212010 0.975517 0.000000 0.000000 1.000000 0.058461 0.212010 -0.975517 -0.000000 -0.000000 -1.000000 0.000000 0.219519 -0.975608 -0.000000 -0.219519 0.975608 0.000000 0.000000 1.000000 -0.058461 -0.212010 0.975517 -0.000000 -0.000000 -1.000000 -0.058461 0.212010 -0.975517 0.000000 0.219519 -0.975608 -0.000000 -0.219519 0.975608 0.058461 -0.212010 0.975517 0.000000 0.000000 1.000000 -0.058461 0.212010 -0.975517 0.000000 0.436355 -0.899774 0.000000 0.219519 -0.975608 -0.116160 0.421316 -0.899444 0.116160 -0.421316 0.899444 0.058461 -0.212010 0.975517 -0.000000 -0.436355 0.899774 -0.112896 0.190013 -0.975269 -0.116160 0.421316 -0.899444 -0.224156 0.377323 -0.898544 0.224156 -0.377323 0.898544 0.112896 -0.190013 0.975269 0.116160 -0.421316 0.899444 -0.159579 0.155066 -0.974930 -0.224156 0.377323 -0.898544 -0.112896 0.190013 -0.975269 -0.316527 0.307619 -0.897319 0.316527 -0.307619 0.897319 0.159579 -0.155066 0.974930 0.224156 -0.377323 0.898544 -0.195344 0.109593 -0.974592 0.387083 -0.217193 0.896100 0.195344 -0.109593 0.974592 -0.217798 0.056708 -0.974345 -0.387083 0.217193 -0.896100 0.217798 -0.056708 0.974345 0.387083 -0.217193 0.896100 -0.217798 0.056708 -0.974345 -0.254399 0.001265 -0.967098 -0.000000 -0.000000 -1.000000 -0.000000 -0.000000 -1.000000 -0.241759 -0.069108 -0.967872 0.254399 -0.001265 0.967098 0.241759 0.069108 0.967872 0.000000 0.000000 1.000000 -0.457192 -0.141098 -0.878104 -0.241759 -0.069108 -0.967872 -0.476111 -0.013414 -0.879283 0.476111 0.013414 0.879283 0.457192 0.141098 0.878104 0.457192 0.141098 0.878104 0.241759 0.069108 0.967872 -0.195344 -0.109593 -0.974592 -0.393025 -0.203305 -0.896771 0.393025 0.203305 0.896771 0.195344 0.109593 0.974592 -0.000000 -0.000000 -1.000000 0.000000 0.000000 1.000000 -0.476111 -0.013414 -0.879283 0.476111 0.013414 0.879283 0.217798 -0.056708 0.974345 0.000000 0.000000 1.000000 -0.000000 -0.000000 -1.000000 0.000000 0.000000 1.000000 -0.000000 -0.000000 -1.000000 -0.159579 0.155066 -0.974930 0.159579 -0.155066 0.974930 0.000000 0.000000 1.000000 -0.000000 -0.000000 -1.000000 0.000000 0.000000 1.000000 0.112896 -0.190013 0.975269 -0.000000 -0.000000 -1.000000 0.000000 0.000000 1.000000 0.465125 -0.452131 0.761076 -0.329900 0.555443 -0.763315 -0.465125 0.452131 -0.761076 -0.224156 0.377323 -0.898544 0.465125 -0.452131 0.761076 0.329900 -0.555443 0.763315 0.224156 -0.377323 0.898544 -0.171154 0.620913 -0.764966 -0.224156 0.377323 -0.898544 -0.329900 0.555443 -0.763315 0.329900 -0.555443 0.763315 0.224156 -0.377323 0.898544 0.171154 -0.620913 0.764966 0.000000 0.643348 -0.765574 0.000000 0.436355 -0.899774 -0.000000 -0.643348 0.765574 -0.000000 -0.436355 0.899774 0.000000 0.643348 -0.765574 0.116160 0.421316 -0.899444 0.171154 0.620913 -0.764966 -0.116160 -0.421316 0.899444 -0.000000 -0.643348 0.765574 0.058461 0.212010 -0.975517 0.116160 0.421316 -0.899444 0.000000 0.219519 -0.975608 -0.000000 -0.219519 0.975608 -0.058461 -0.212010 0.975517 -0.116160 -0.421316 0.899444 0.116160 0.421316 -0.899444 0.058461 0.212010 -0.975517 0.224156 0.377323 -0.898544 -0.058461 -0.212010 0.975517 -0.116160 -0.421316 0.899444 -0.224156 -0.377323 0.898544 0.171154 0.620913 -0.764966 0.224156 0.377323 -0.898544 0.116160 0.421316 -0.899444 0.329900 0.555443 -0.763315 -0.116160 -0.421316 0.899444 -0.224156 -0.377323 0.898544 -0.171154 -0.620913 0.764966 -0.329900 -0.555443 0.763315 0.219145 0.795216 -0.565337 0.421839 0.710413 -0.563352 -0.171154 -0.620913 0.764966 -0.219145 -0.795216 0.565337 -0.421839 -0.710413 0.563352 0.310121 0.877122 -0.366717 0.421839 0.710413 -0.563352 0.631851 0.771919 0.070039 -0.421839 -0.710413 0.563352 -0.310121 -0.877122 0.366717 -0.631851 -0.771919 -0.070039 0.698176 0.689728 0.191901 -0.698176 -0.689728 -0.191901 0.631851 0.771919 0.070039 0.698176 0.689728 0.191901 0.812817 0.572113 0.109616 -0.812817 -0.572113 -0.109616 -0.698176 -0.689728 -0.191901 -0.631851 -0.771919 -0.070039 0.698176 0.689728 0.191901 0.579566 0.809971 0.089727 -0.023256 0.901956 0.431202 0.579566 0.809971 0.089727 0.467960 0.661636 0.585876 0.579566 0.809971 0.089727 0.023256 -0.901956 -0.431202 -0.579566 -0.809971 -0.089727 -0.467960 -0.661636 -0.585876 -0.579566 -0.809971 -0.089727 -0.579566 -0.809971 -0.089727 -0.698176 -0.689728 -0.191901 0.553060 0.819928 0.147793 0.812817 0.572113 0.109616 0.579566 0.809971 0.089727 -0.579566 -0.809971 -0.089727 -0.812817 -0.572113 -0.109616 -0.553060 -0.819928 -0.147793 0.553060 0.819928 0.147793 0.498365 0.866645 0.023617 0.812817 0.572113 0.109616 0.662425 0.747277 0.052633 -0.812817 -0.572113 -0.109616 -0.498365 -0.866645 -0.023617 -0.553060 -0.819928 -0.147793 0.659175 0.751989 0.001445 0.812817 0.572113 0.109616 0.631851 0.771919 0.070039 -0.631851 -0.771919 -0.070039 -0.659175 -0.751989 -0.001445 -0.812817 -0.572113 -0.109616 0.593675 0.577231 -0.560673 0.631851 0.771919 0.070039 0.659175 0.751989 0.001445 0.421839 0.710413 -0.563352 -0.421839 -0.710413 0.563352 -0.593675 -0.577231 0.560673 -0.631851 -0.771919 -0.070039 0.465125 0.452131 -0.761076 0.421839 0.710413 -0.563352 0.329900 0.555443 -0.763315 -0.329900 -0.555443 0.763315 -0.465125 -0.452131 0.761076 -0.421839 -0.710413 0.563352 0.316527 0.307619 -0.897319 0.329900 0.555443 -0.763315 0.465125 0.452131 -0.761076 -0.316527 -0.307619 0.897319 -0.329900 -0.555443 0.763315 0.112896 0.190013 -0.975269 -0.112896 -0.190013 0.975269 0.316527 0.307619 -0.897319 0.387083 0.217193 -0.896100 -0.316527 -0.307619 0.897319 -0.387083 -0.217193 0.896100 0.387083 0.217193 -0.896100 0.567930 0.318734 -0.758857 -0.387083 -0.217193 0.896100 -0.567930 -0.318734 0.758857 0.593675 0.577231 -0.560673 0.567930 0.318734 -0.758857 0.465125 0.452131 -0.761076 0.723605 0.406198 -0.558031 -0.465125 -0.452131 0.761076 -0.567930 -0.318734 0.758857 -0.593675 -0.577231 0.560673 -0.723605 -0.406198 0.558031 0.854302 0.446629 -0.265879 0.723605 0.406198 -0.558031 -0.723605 -0.406198 0.558031 -0.854302 -0.446629 0.265879 0.926321 0.241375 -0.289254 0.772285 0.132336 -0.621339 -0.772285 -0.132336 0.621339 -0.926321 -0.241375 0.289254 0.959256 -0.003210 -0.282521 0.772285 0.132336 -0.621339 0.745242 -0.000000 -0.666794 -0.745242 0.000000 0.666794 -0.959256 0.003210 0.282521 -0.772285 -0.132336 0.621339 0.832504 -0.265067 -0.486493 0.818399 -0.467417 -0.334282 -0.818399 0.467417 0.334282 -0.832504 0.265067 0.486493 0.959256 -0.003210 -0.282521 0.950625 -0.303645 -0.064118 0.998854 0.047269 0.007525 0.950625 -0.303645 -0.064118 0.959256 -0.003210 -0.282521 0.952822 -0.022747 0.302675 0.998854 0.047269 0.007525 0.897115 0.246154 0.366869 0.952822 -0.022747 0.302675 0.955285 0.295643 0.005117 -0.952822 0.022747 -0.302675 -0.897115 -0.246154 -0.366869 -0.998854 -0.047269 -0.007525 0.897115 0.246154 0.366869 0.881026 -0.006388 0.473024 0.897115 0.246154 0.366869 0.788445 0.211500 0.577600 0.881026 -0.006388 0.473024 -0.881026 0.006388 -0.473024 -0.788445 -0.211500 -0.577600 -0.897115 -0.246154 -0.366869 0.788445 0.211500 0.577600 0.671526 0.326723 0.665061 0.881026 -0.006388 0.473024 0.571930 0.357645 0.738232 0.671526 0.326723 0.665061 0.726055 0.421526 0.543286 -0.671526 -0.326723 -0.665061 -0.571930 -0.357645 -0.738232 0.509517 0.114325 0.852832 0.482112 0.270534 0.833294 -0.482112 -0.270534 -0.833294 -0.571930 -0.357645 -0.738232 -0.509517 -0.114325 -0.852832 0.583024 0.594154 0.554133 0.435516 0.551626 0.711362 0.571930 0.357645 0.738232 0.435516 0.551626 0.711362 0.583024 0.594154 0.554133 -0.583024 -0.594154 -0.554133 -0.435516 -0.551626 -0.711362 0.520605 0.538902 0.662234 -0.520605 -0.538902 -0.662234 -0.583024 -0.594154 -0.554133 0.520605 0.538902 0.662234 0.381319 0.523906 0.761655 -0.381319 -0.523906 -0.761655 -0.520605 -0.538902 -0.662234 0.054045 0.469399 0.881331 -0.054045 -0.469399 -0.881331 0.381319 0.523906 0.761655 0.054045 0.469399 0.881331 0.169848 0.421016 0.891009 -0.169848 -0.421016 -0.891009 -0.054045 -0.469399 -0.881331 -0.381319 -0.523906 -0.761655 -0.169848 -0.421016 -0.891009 0.286870 -0.497172 -0.818856 -0.054045 -0.469399 -0.881331 0.286870 -0.497172 -0.818856 0.026067 -0.621041 -0.783344 0.256853 -0.496352 -0.829253 -0.256853 0.496352 0.829253 -0.628085 0.395094 0.670381 0.628085 -0.395094 -0.670381 0.628085 -0.395094 -0.670381 -0.054045 -0.469399 -0.881331 0.256853 -0.496352 -0.829253 -0.541697 0.197789 0.816972 -0.576274 0.419627 0.701300 0.576274 -0.419627 -0.701300 0.541697 -0.197789 -0.816972 0.551740 -0.474268 -0.686041 -0.316347 0.245574 0.916307 -0.256853 0.496352 0.829253 0.256853 -0.496352 -0.829253 0.316347 -0.245574 -0.916307 -0.011109 -0.161944 0.986737 0.501044 -0.225820 -0.835440 0.011109 0.161944 -0.986737 -0.011109 -0.161944 0.986737 0.011109 0.161944 -0.986737 -0.011109 -0.161944 0.986737 -0.316347 0.245574 0.916307 -0.564159 -0.015877 0.825513 0.564159 0.015877 -0.825513 0.316347 -0.245574 -0.916307 0.011109 0.161944 -0.986737 -0.541697 0.197789 0.816972 0.541697 -0.197789 -0.816972 -0.564159 -0.015877 0.825513 -0.625077 0.095755 0.774667 0.625077 -0.095755 -0.774667 0.564159 0.015877 -0.825513 -0.625077 0.095755 0.774667 -0.625077 0.095755 0.774667 -0.649601 0.282334 0.705908 0.649601 -0.282334 -0.705908 0.625077 -0.095755 -0.774667 -0.649601 0.282334 0.705908 -0.576274 0.419627 0.701300 -0.782209 0.288199 0.552350 0.782209 -0.288199 -0.552350 0.649601 -0.282334 -0.705908 -0.846808 0.386430 0.365498 0.846808 -0.386430 -0.365498 -0.887923 -0.008115 0.459920 -0.782209 0.288199 0.552350 -0.846808 0.386430 0.365498 -0.888308 0.008083 0.459177 -0.887923 -0.008115 0.459920 -0.942398 0.211580 -0.259076 -0.888308 0.008083 0.459177 -0.871946 0.489603 -0.000000 0.888308 -0.008083 -0.459177 0.942398 -0.211580 0.259076 -0.942398 0.211580 -0.259076 -0.983097 -0.076322 0.166419 -0.888308 0.008083 0.459177 -0.942398 0.211580 -0.259076 -0.875727 0.189206 -0.444189 -0.983097 -0.076322 0.166419 0.983097 0.076322 -0.166419 0.875727 -0.189206 0.444189 0.942398 -0.211580 0.259076 -0.918805 -0.206470 -0.336404 -0.983097 -0.076322 0.166419 -0.875727 0.189206 -0.444189 -0.933299 -0.312719 0.176520 0.933299 0.312719 -0.176520 0.918805 0.206470 0.336404 0.983097 0.076322 -0.166419 -0.905422 -0.421728 0.048542 0.905422 0.421728 -0.048542 -0.906490 0.052194 0.418988 -0.905422 -0.421728 0.048542 -0.906490 0.052194 0.418988 -0.799838 -0.246667 0.547188 0.906490 -0.052194 -0.418988 0.799838 0.246667 -0.547188 -0.963499 0.004764 0.267669 -0.799838 -0.246667 0.547188 -0.906490 0.052194 0.418988 -0.959996 -0.200785 0.195177 0.906490 -0.052194 -0.418988 0.799838 0.246667 -0.547188 0.963499 -0.004764 -0.267669 0.959996 0.200785 -0.195177 -0.850225 -0.147432 0.505352 -0.959996 -0.200785 0.195177 -0.888603 -0.066259 0.453867 0.959996 0.200785 -0.195177 0.850225 0.147432 -0.505352 0.888603 0.066259 -0.453867 -0.567454 0.093858 0.818038 -0.888603 -0.066259 0.453867 -0.850225 -0.147432 0.505352 -0.567454 0.093858 0.818038 -0.720694 0.187412 0.667441 -0.516320 0.134461 0.845774 0.888603 0.066259 -0.453867 0.720694 -0.187412 -0.667441 0.567454 -0.093858 -0.818038 -0.887923 -0.008115 0.459920 -0.720694 0.187412 0.667441 -0.887923 -0.008115 0.459920 0.887923 0.008115 -0.459920 -0.887923 -0.008115 0.459920 -0.799838 -0.246667 0.547188 -0.799838 -0.246667 0.547188 -0.887923 -0.008115 0.459920 0.887923 0.008115 -0.459920 0.799838 0.246667 -0.547188 0.888308 -0.008083 -0.459177 0.799838 0.246667 -0.547188 0.887923 0.008115 -0.459920 0.983097 0.076322 -0.166419 0.942398 -0.211580 0.259076 0.887923 0.008115 -0.459920 0.888308 -0.008083 -0.459177 0.846808 -0.386430 -0.365498 0.782209 -0.288199 -0.552350 0.887923 0.008115 -0.459920 -0.887923 -0.008115 0.459920 -0.649601 0.282334 0.705908 0.649601 -0.282334 -0.705908 0.887923 0.008115 -0.459920 -0.649601 0.282334 0.705908 -0.887923 -0.008115 0.459920 0.720694 -0.187412 -0.667441 0.887923 0.008115 -0.459920 0.649601 -0.282334 -0.705908 0.887923 0.008115 -0.459920 -0.516320 0.134461 0.845774 -0.720694 0.187412 0.667441 0.720694 -0.187412 -0.667441 0.516320 -0.134461 -0.845774 -0.576877 0.010541 0.816763 -0.625077 0.095755 0.774667 0.625077 -0.095755 -0.774667 0.576877 -0.010541 -0.816763 0.625077 -0.095755 -0.774667 -0.011109 -0.161944 0.986737 -0.576877 0.010541 0.816763 0.576877 -0.010541 -0.816763 0.011109 0.161944 -0.986737 -0.011109 -0.161944 0.986737 -0.576877 0.010541 0.816763 -0.495603 -0.008013 0.868512 0.495603 0.008013 -0.868512 0.576877 -0.010541 -0.816763 0.011109 0.161944 -0.986737 -0.495603 -0.008013 0.868512 -0.576877 0.010541 0.816763 0.495603 0.008013 -0.868512 0.516320 -0.134461 -0.845774 0.576877 -0.010541 -0.816763 -0.495603 -0.008013 0.868512 -0.567454 0.093858 0.818038 -0.502396 -0.036701 0.863859 0.502396 0.036701 -0.863859 0.567454 -0.093858 -0.818038 0.495603 0.008013 -0.868512 -0.502396 -0.036701 0.863859 -0.850225 -0.147432 0.505352 0.850225 0.147432 -0.505352 0.567454 -0.093858 -0.818038 0.502396 0.036701 -0.863859 0.850225 0.147432 -0.505352 -0.706529 -0.328744 0.626692 -0.502396 -0.036701 0.863859 -0.510800 -0.276967 0.813863 0.502396 0.036701 -0.863859 0.706529 0.328744 -0.626692 0.510800 0.276967 -0.813863 -0.503556 -0.517060 0.692156 0.503556 0.517060 -0.692156 -0.503556 -0.517060 0.692156 -0.605463 -0.603601 0.518730 0.605463 0.603601 -0.518730 0.503556 0.517060 -0.692156 -0.706529 -0.328744 0.626692 -0.878428 -0.161915 0.449609 0.878428 0.161915 -0.449609 0.706529 0.328744 -0.626692 -0.720457 -0.658409 0.217807 -0.605463 -0.603601 0.518730 0.605463 0.603601 -0.518730 0.720457 0.658409 -0.217807 -0.720457 -0.658409 0.217807 -0.376688 -0.778109 0.502646 0.376688 0.778109 -0.502646 0.720457 0.658409 -0.217807 -0.720457 -0.658409 0.217807 -0.409553 -0.873932 0.261745 -0.732450 -0.679998 0.033454 -0.409553 -0.873932 0.261745 0.409553 0.873932 -0.261745 0.732450 0.679998 -0.033454 -0.732450 -0.679998 0.033454 0.732450 0.679998 -0.033454 0.026580 -0.973711 0.226233 -0.026580 0.973711 -0.226233 0.409553 0.873932 -0.261745 0.026580 -0.973711 0.226233 -0.127996 -0.980869 0.146674 0.127996 0.980869 -0.146674 -0.026580 0.973711 -0.226233 0.151422 -0.921297 0.358167 -0.151422 0.921297 -0.358167 0.249344 -0.941612 0.226264 -0.249344 0.941612 -0.226264 -0.068971 -0.995915 -0.058276 0.068971 0.995915 0.058276 -0.068971 -0.995915 -0.058276 0.333791 -0.919115 -0.209309 -0.333791 0.919115 0.209309 0.068971 0.995915 0.058276 -0.000000 -0.824358 -0.566069 0.219145 -0.795216 -0.565337 -0.219145 0.795216 0.565337 0.000000 0.824358 0.566069 0.219145 -0.795216 -0.565337 0.171154 -0.620913 -0.764966 -0.171154 0.620913 0.764966 -0.219145 0.795216 0.565337 -0.000000 -0.436355 -0.899774 -0.000000 -0.643348 -0.765574 0.000000 0.643348 0.765574 0.000000 0.436355 0.899774 0.329900 -0.555443 -0.763315 -0.329900 0.555443 0.763315 0.329900 -0.555443 -0.763315 0.465125 -0.452131 -0.761076 -0.329900 0.555443 0.763315 -0.465125 0.452131 0.761076 0.316527 -0.307619 -0.897319 0.567930 -0.318734 -0.758857 -0.316527 0.307619 0.897319 -0.567930 0.318734 0.758857 0.508456 -0.045987 -0.859859 0.387083 -0.217193 -0.896100 0.663757 -0.021150 -0.747649 -0.387083 0.217193 0.896100 -0.508456 0.045987 0.859859 -0.663757 0.021150 0.747649 0.665045 0.000000 -0.746803 0.663757 -0.021150 -0.747649 0.508456 -0.045987 -0.859859 0.665045 -0.000000 -0.746803 0.663757 -0.021150 -0.747649 0.832504 -0.265067 -0.486493 0.665045 -0.000000 -0.746803 -0.665045 0.000000 0.746803 -0.832504 0.265067 0.486493 -0.663757 0.021150 0.747649 -0.665045 0.000000 0.746803 0.856298 -0.482459 -0.184356 -0.856298 0.482459 0.184356 0.868465 -0.438474 -0.231321 0.856298 -0.482459 -0.184356 -0.856298 0.482459 0.184356 -0.868465 0.438474 0.231321 0.868465 -0.438474 -0.231321 0.778368 -0.483527 -0.400431 -0.778368 0.483527 0.400431 -0.868465 0.438474 0.231321 0.897438 -0.420754 -0.132558 0.778368 -0.483527 -0.400431 -0.778368 0.483527 0.400431 -0.897438 0.420754 0.132558 0.897438 -0.420754 -0.132558 0.421839 -0.710413 -0.563352 0.504985 -0.850113 -0.149323 -0.421839 0.710413 0.563352 -0.897438 0.420754 0.132558 0.421839 -0.710413 -0.563352 0.465125 -0.452131 -0.761076 0.778368 -0.483527 -0.400431 -0.421839 0.710413 0.563352 -0.465125 0.452131 0.761076 0.171154 -0.620913 -0.764966 0.219145 -0.795216 -0.565337 -0.171154 0.620913 0.764966 -0.219145 0.795216 0.565337 0.421839 -0.710413 -0.563352 -0.421839 0.710413 0.563352 -0.504985 0.850113 0.149323 0.540499 -0.814142 0.212214 0.333791 -0.919115 -0.209309 -0.540499 0.814142 -0.212214 -0.333791 0.919115 0.209309 0.540499 -0.814142 0.212214 0.504985 -0.850113 -0.149323 0.897438 -0.420754 -0.132558 -0.897438 0.420754 0.132558 -0.504985 0.850113 0.149323 -0.540499 0.814142 -0.212214 0.540499 -0.814142 0.212214 0.760473 -0.642644 -0.093215 -0.760473 0.642644 0.093215 -0.540499 0.814142 -0.212214 0.760473 -0.642644 -0.093215 -0.760473 0.642644 0.093215 0.868465 -0.438474 -0.231321 0.709626 -0.677951 -0.191867 -0.709626 0.677951 0.191867 -0.868465 0.438474 0.231321 0.950625 -0.303645 -0.064118 0.709626 -0.677951 -0.191867 0.950625 -0.303645 -0.064118 0.790084 -0.536528 0.296489 -0.790084 0.536528 -0.296489 -0.950625 0.303645 0.064118 0.485513 -0.817426 0.309988 0.709626 -0.677951 -0.191867 -0.709626 0.677951 0.191867 -0.485513 0.817426 -0.309988 0.485513 -0.817426 0.309988 0.485513 -0.817426 0.309988 0.540499 -0.814142 0.212214 0.501026 -0.777683 0.379713 -0.485513 0.817426 -0.309988 -0.501026 0.777683 -0.379713 -0.540499 0.814142 -0.212214 -0.709626 0.677951 0.191867 -0.485513 0.817426 -0.309988 0.151422 -0.921297 0.358167 0.249344 -0.941612 0.226264 -0.249344 0.941612 -0.226264 -0.151422 0.921297 -0.358167 0.367913 -0.835348 0.408453 -0.367913 0.835348 -0.408453 -0.089618 -0.947513 0.306899 -0.136096 -0.936755 0.322442 -0.089618 -0.947513 0.306899 -0.136096 -0.936755 0.322442 0.136096 0.936755 -0.322442 0.136096 0.936755 -0.322442 -0.409553 -0.873932 0.261745 0.409553 0.873932 -0.261745 0.720457 0.658409 -0.217807 -0.242708 -0.781956 0.574142 0.242708 0.781956 -0.574142 -0.242708 -0.781956 0.574142 -0.428894 -0.582065 0.690833 0.428894 0.582065 -0.690833 0.242708 0.781956 -0.574142 -0.503556 -0.517060 0.692156 0.503556 0.517060 -0.692156 -0.428894 -0.582065 0.690833 -0.480182 -0.267602 0.835353 -0.503556 -0.517060 0.692156 -0.380301 -0.488719 0.785191 0.503556 0.517060 -0.692156 0.480182 0.267602 -0.835353 0.428894 0.582065 -0.690833 -0.503556 -0.517060 0.692156 -0.480182 -0.267602 0.835353 0.480182 0.267602 -0.835353 0.503556 0.517060 -0.692156 -0.471160 -0.084749 0.877967 -0.480182 -0.267602 0.835353 -0.430668 -0.191878 0.881877 -0.510800 -0.276967 0.813863 -0.471160 -0.084749 0.877967 0.430668 0.191878 -0.881877 0.510800 0.276967 -0.813863 -0.430668 -0.191878 0.881877 -0.495603 -0.008013 0.868512 -0.430668 -0.191878 0.881877 0.430668 0.191878 -0.881877 0.495603 0.008013 -0.868512 0.430668 0.191878 -0.881877 -0.011109 -0.161944 0.986737 -0.471160 -0.084749 0.877967 0.471160 0.084749 -0.877967 0.011109 0.161944 -0.986737 0.471160 0.084749 -0.877967 0.480182 0.267602 -0.835353 0.471160 0.084749 -0.877967 -0.422044 -0.182836 0.887947 -0.011109 -0.161944 0.986737 0.422044 0.182836 -0.887947 0.011109 0.161944 -0.986737 -0.380301 -0.488719 0.785191 -0.480182 -0.267602 0.835353 -0.355184 -0.280733 0.891646 0.480182 0.267602 -0.835353 0.380301 0.488719 -0.785191 0.355184 0.280733 -0.891646 -0.355184 -0.280733 0.891646 -0.380301 -0.488719 0.785191 -0.274027 -0.443237 0.853493 0.274027 0.443237 -0.853493 0.380301 0.488719 -0.785191 0.355184 0.280733 -0.891646 -0.274027 -0.443237 0.853493 0.274027 0.443237 -0.853493 0.380301 0.488719 -0.785191 -0.242708 -0.781956 0.574142 0.287194 -0.451497 0.844790 -0.025965 -0.804299 0.593658 0.025965 0.804299 -0.593658 0.242708 0.781956 -0.574142 -0.287194 0.451497 -0.844790 -0.025965 -0.804299 0.593658 0.025965 0.804299 -0.593658 0.089618 0.947513 -0.306899 0.089618 0.947513 -0.306899 -0.025965 -0.804299 0.593658 -0.089618 -0.947513 0.306899 0.089618 0.947513 -0.306899 0.025965 0.804299 -0.593658 -0.025965 -0.804299 0.593658 0.367913 -0.835348 0.408453 0.351211 -0.707608 0.613141 -0.351211 0.707608 -0.613141 -0.367913 0.835348 -0.408453 0.025965 0.804299 -0.593658 0.351211 -0.707608 0.613141 0.461533 -0.819559 0.339573 -0.461533 0.819559 -0.339573 -0.351211 0.707608 -0.613141 0.461533 -0.819559 0.339573 -0.461533 0.819559 -0.339573 0.499209 -0.710396 0.496112 -0.499209 0.710396 -0.496112 0.499209 -0.710396 0.496112 0.638211 -0.551350 0.537307 -0.638211 0.551350 -0.537307 -0.499209 0.710396 -0.496112 0.638211 -0.551350 0.537307 -0.638211 0.551350 -0.537307 0.900359 -0.228143 0.370546 0.802712 -0.215329 0.556135 -0.900359 0.228143 -0.370546 -0.802712 0.215329 -0.556135 0.881026 -0.006388 0.473024 0.900359 -0.228143 0.370546 -0.900359 0.228143 -0.370546 -0.881026 0.006388 -0.473024 0.881026 -0.006388 0.473024 0.635672 -0.326028 0.699733 -0.635672 0.326028 -0.699733 -0.881026 0.006388 -0.473024 0.562250 -0.394903 0.726586 0.638211 -0.551350 0.537307 -0.638211 0.551350 -0.537307 -0.562250 0.394903 -0.726586 0.638211 -0.551350 0.537307 0.499209 -0.710396 0.496112 -0.499209 0.710396 -0.496112 -0.638211 0.551350 -0.537307 0.594366 -0.522179 0.611603 -0.594366 0.522179 -0.611603 0.594366 -0.522179 0.611603 0.499209 -0.710396 0.496112 0.358677 -0.701255 0.616110 0.594366 -0.522179 0.611603 -0.594366 0.522179 -0.611603 -0.358677 0.701255 -0.616110 -0.499209 0.710396 -0.496112 -0.594366 0.522179 -0.611603 0.461533 -0.819559 0.339573 0.358677 -0.701255 0.616110 -0.358677 0.701255 -0.616110 -0.461533 0.819559 -0.339573 0.075636 -0.566662 0.820472 0.337530 -0.427533 0.838623 -0.337530 0.427533 -0.838623 -0.075636 0.566662 -0.820472 0.065541 -0.561801 0.824672 0.337530 -0.427533 0.838623 -0.337530 0.427533 -0.838623 -0.065541 0.561801 -0.824672 0.065541 -0.561801 0.824672 0.157816 -0.508977 0.846189 -0.011109 -0.161944 0.986737 0.157816 -0.508977 0.846189 0.325964 -0.343029 0.880953 0.688927 0.237492 0.684819 -0.011109 -0.161944 0.986737 0.325964 -0.343029 0.880953 -0.325964 0.343029 -0.880953 0.011109 0.161944 -0.986737 -0.688927 -0.237492 -0.684819 -0.065541 0.561801 -0.824672 -0.325964 0.343029 -0.880953 -0.157816 0.508977 -0.846189 0.011109 0.161944 -0.986737 -0.011109 -0.161944 0.986737 0.307332 -0.400892 0.863037 -0.307332 0.400892 -0.863037 0.011109 0.161944 -0.986737 -0.157816 0.508977 -0.846189 0.307332 -0.400892 0.863037 -0.011109 -0.161944 0.986737 -0.056396 -0.333249 0.941151 0.056396 0.333249 -0.941151 0.011109 0.161944 -0.986737 -0.307332 0.400892 -0.863037 -0.355184 -0.280733 0.891646 -0.056396 -0.333249 0.941151 0.056396 0.333249 -0.941151 0.355184 0.280733 -0.891646 0.287194 -0.451497 0.844790 -0.287194 0.451497 -0.844790 -0.056396 -0.333249 0.941151 0.056396 0.333249 -0.941151 0.075636 -0.566662 0.820472 0.325964 -0.343029 0.880953 -0.325964 0.343029 -0.880953 -0.075636 0.566662 -0.820472 0.447629 -0.365310 0.816197 0.325964 -0.343029 0.880953 0.447629 -0.365310 0.816197 0.599715 -0.049738 0.798667 -0.325964 0.343029 -0.880953 -0.599715 0.049738 -0.798667 -0.447629 0.365310 -0.816197 0.599715 -0.049738 0.798667 0.569833 0.029173 0.821243 0.688927 0.237492 0.684819 0.599715 -0.049738 0.798667 -0.599715 0.049738 -0.798667 -0.688927 -0.237492 -0.684819 -0.569833 -0.029173 -0.821243 -0.599715 0.049738 -0.798667 -0.011109 -0.161944 0.986737 0.569833 0.029173 0.821243 -0.569833 -0.029173 -0.821243 0.011109 0.161944 -0.986737 0.486812 -0.315146 0.814676 -0.011109 -0.161944 0.986737 0.569833 0.029173 0.821243 0.570313 -0.087014 0.816806 -0.011109 -0.161944 0.986737 0.011109 0.161944 -0.986737 -0.570313 0.087014 -0.816806 -0.486812 0.315146 -0.814676 0.570313 -0.087014 0.816806 0.574055 0.184396 0.797784 -0.574055 -0.184396 -0.797784 -0.570313 0.087014 -0.816806 0.574055 0.184396 0.797784 -0.574055 -0.184396 -0.797784 0.598095 0.278870 0.751341 0.574055 0.184396 0.797784 -0.598095 -0.278870 -0.751341 -0.567062 -0.442595 -0.694659 -0.574055 -0.184396 -0.797784 -0.598095 -0.278870 -0.751341 0.482112 0.270534 0.833294 -0.482112 -0.270534 -0.833294 0.574055 0.184396 0.797784 -0.574055 -0.184396 -0.797784 0.570313 -0.087014 0.816806 -0.570313 0.087014 -0.816806 0.486812 -0.315146 0.814676 -0.486812 0.315146 -0.814676 0.401222 0.000000 0.915981 -0.401222 -0.000000 -0.915981 0.646037 0.000000 0.763306 0.509517 0.114325 0.852832 0.401222 0.000000 0.915981 0.646037 0.000000 0.763306 0.671526 0.326723 0.665061 -0.671526 -0.326723 -0.665061 -0.646037 -0.000000 -0.763306 0.646037 0.000000 0.763306 0.881026 -0.006388 0.473024 -0.881026 0.006388 -0.473024 -0.646037 -0.000000 -0.763306 0.646037 0.000000 0.763306 0.392113 -0.192386 0.899575 0.646037 0.000000 0.763306 -0.392113 0.192386 -0.899575 -0.646037 -0.000000 -0.763306 0.392113 -0.192386 0.899575 -0.569833 -0.029173 -0.821243 -0.392113 0.192386 -0.899575 0.011109 0.161944 -0.986737 0.569833 0.029173 0.821243 0.599715 -0.049738 0.798667 -0.599715 0.049738 -0.798667 -0.569833 -0.029173 -0.821243 0.635672 -0.326028 0.699733 0.599715 -0.049738 0.798667 -0.646037 -0.000000 -0.763306 -0.599715 0.049738 -0.798667 -0.635672 0.326028 -0.699733 0.599715 -0.049738 0.798667 -0.599715 0.049738 -0.798667 0.562250 -0.394903 0.726586 0.599715 -0.049738 0.798667 0.594366 -0.522179 0.611603 -0.594366 0.522179 -0.611603 -0.599715 0.049738 -0.798667 -0.562250 0.394903 -0.726586 0.594366 -0.522179 0.611603 -0.594366 0.522179 -0.611603 -0.447629 0.365310 -0.816197 0.447629 -0.365310 0.816197 0.358677 -0.701255 0.616110 -0.358677 0.701255 -0.616110 -0.447629 0.365310 -0.816197 -0.881026 0.006388 -0.473024 -0.401222 -0.000000 -0.915981 -0.509517 -0.114325 -0.852832 -0.646037 -0.000000 -0.763306 -0.671526 -0.326723 -0.665061 -0.788445 -0.211500 -0.577600 0.881026 -0.006388 0.473024 -0.952822 0.022747 -0.302675 -0.881026 0.006388 -0.473024 0.952822 -0.022747 0.302675 0.900359 -0.228143 0.370546 -0.900359 0.228143 -0.370546 -0.952822 0.022747 -0.302675 0.790084 -0.536528 0.296489 -0.790084 0.536528 -0.296489 -0.950625 0.303645 0.064118 -0.998854 -0.047269 -0.007525 -0.959256 0.003210 0.282521 -0.950625 0.303645 0.064118 -0.959256 0.003210 0.282521 0.868465 -0.438474 -0.231321 -0.868465 0.438474 0.231321 0.868465 -0.438474 -0.231321 -0.868465 0.438474 0.231321 -0.950625 0.303645 0.064118 0.926321 0.241375 -0.289254 0.998854 0.047269 0.007525 0.959256 -0.003210 -0.282521 -0.959256 0.003210 0.282521 -0.998854 -0.047269 -0.007525 -0.926321 -0.241375 0.289254 -0.955285 -0.295643 -0.005117 0.955285 0.295643 0.005117 -0.955285 -0.295643 -0.005117 0.752257 0.658849 0.005180 0.854302 0.446629 -0.265879 -0.854302 -0.446629 0.265879 -0.752257 -0.658849 -0.005180 0.752257 0.658849 0.005180 0.820118 0.485532 0.302762 -0.820118 -0.485532 -0.302762 -0.752257 -0.658849 -0.005180 0.820118 0.485532 0.302762 0.955285 0.295643 0.005117 0.820118 0.485532 0.302762 0.726055 0.421526 0.543286 -0.897115 -0.246154 -0.366869 -0.726055 -0.421526 -0.543286 -0.820118 -0.485532 -0.302762 0.726055 0.421526 0.543286 0.897115 0.246154 0.366869 -0.726055 -0.421526 -0.543286 -0.897115 -0.246154 -0.366869 -0.726055 -0.421526 -0.543286 -0.571930 -0.357645 -0.738232 -0.435516 -0.551626 -0.711362 0.583024 0.594154 0.554133 0.726055 0.421526 0.543286 -0.726055 -0.421526 -0.543286 -0.583024 -0.594154 -0.554133 0.662425 0.747277 0.052633 -0.662425 -0.747277 -0.052633 0.662425 0.747277 0.052633 -0.662425 -0.747277 -0.052633 -0.662425 -0.747277 -0.052633 0.498365 0.866645 0.023617 0.752257 0.658849 0.005180 -0.752257 -0.658849 -0.005180 -0.498365 -0.866645 -0.023617 0.752257 0.658849 0.005180 0.659175 0.751989 0.001445 0.498365 0.866645 0.023617 0.752257 0.658849 0.005180 -0.752257 -0.658849 -0.005180 -0.659175 -0.751989 -0.001445 -0.498365 -0.866645 -0.023617 -0.659175 -0.751989 -0.001445 -0.752257 -0.658849 -0.005180 0.553060 0.819928 0.147793 -0.553060 -0.819928 -0.147793 0.467960 0.661636 0.585876 0.520605 0.538902 0.662234 0.553060 0.819928 0.147793 -0.553060 -0.819928 -0.147793 -0.520605 -0.538902 -0.662234 -0.467960 -0.661636 -0.585876 0.467960 0.661636 0.585876 -0.467960 -0.661636 -0.585876 -0.955285 -0.295643 -0.005117 -0.820118 -0.485532 -0.302762 -0.881026 0.006388 -0.473024 -0.778368 0.483527 0.400431 0.856298 -0.482459 -0.184356 -0.856298 0.482459 0.184356 -0.508456 0.045987 0.859859 -0.663757 0.021150 0.747649 -0.665045 -0.000000 0.746803 0.665045 0.000000 -0.746803 0.541811 0.000000 -0.840500 -0.541811 -0.000000 0.840500 -0.665045 -0.000000 0.746803 0.665045 -0.000000 -0.746803 0.541811 0.000000 -0.840500 -0.541811 -0.000000 0.840500 -0.665045 0.000000 0.746803 0.665045 0.000000 -0.746803 0.663757 0.021150 -0.747649 -0.663757 -0.021150 0.747649 -0.665045 0.000000 0.746803 0.663757 0.021150 -0.747649 0.387083 0.217193 -0.896100 -0.387083 -0.217193 0.896100 -0.663757 -0.021150 0.747649 0.567930 0.318734 -0.758857 0.723605 0.406198 -0.558031 -0.567930 -0.318734 0.758857 0.665045 0.000000 -0.746803 -0.665045 0.000000 0.746803 0.665045 -0.000000 -0.746803 0.772285 0.132336 -0.621339 -0.772285 -0.132336 0.621339 -0.665045 0.000000 0.746803 -0.723605 -0.406198 0.558031 -0.541811 -0.000000 0.840500 -0.896286 -0.400683 0.190066 -0.896286 -0.400683 0.190066 -0.905422 -0.421728 0.048542 -0.732450 -0.679998 0.033454 0.732450 0.679998 -0.033454 0.905422 0.421728 -0.048542 0.896286 0.400683 -0.190066 -0.905422 -0.421728 0.048542 -0.828343 -0.521555 -0.204518 -0.732450 -0.679998 0.033454 0.732450 0.679998 -0.033454 0.828343 0.521555 0.204518 0.905422 0.421728 -0.048542 -0.828343 -0.521555 -0.204518 0.828343 0.521555 0.204518 -0.828343 -0.521555 -0.204518 -0.918805 -0.206470 -0.336404 0.918805 0.206470 0.336404 0.828343 0.521555 0.204518 -0.830943 -0.193339 -0.521683 0.830943 0.193339 0.521683 -0.875727 0.189206 -0.444189 -0.918805 -0.206470 -0.336404 0.918805 0.206470 0.336404 0.875727 -0.189206 0.444189 -0.875727 0.189206 -0.444189 0.773062 -0.206917 0.599634 -0.705376 -0.027535 -0.708299 -0.888649 0.155410 -0.431452 0.888649 -0.155410 0.431452 0.705376 0.027535 0.708299 0.705376 0.027535 0.708299 0.476111 0.013414 0.879283 0.773062 -0.206917 0.599634 0.720975 -0.243134 0.648908 0.875727 -0.189206 0.444189 -0.865734 0.027344 -0.499757 -0.859081 0.059787 -0.508335 -0.865734 0.027344 -0.499757 0.865734 -0.027344 0.499757 0.859081 -0.059787 0.508335 0.865734 -0.027344 0.499757 -0.865734 0.027344 -0.499757 0.865734 -0.027344 0.499757 -0.859081 0.059787 -0.508335 -0.865734 0.027344 -0.499757 0.865734 -0.027344 0.499757 0.859081 -0.059787 0.508335 -0.896893 0.244486 -0.368524 0.896893 -0.244486 0.368524 0.871946 -0.489603 0.000000 0.702484 -0.711700 0.000000 0.875727 -0.189206 0.444189 -0.905422 -0.421728 0.048542 0.905422 0.421728 -0.048542 -0.906490 0.052194 0.418988 -0.905422 -0.421728 0.048542 0.896286 0.400683 -0.190066 0.905422 0.421728 -0.048542 0.906490 -0.052194 -0.418988 0.905422 0.421728 -0.048542 0.906490 -0.052194 -0.418988 -0.896286 -0.400683 0.190066 0.896286 0.400683 -0.190066 -0.963499 0.004764 0.267669 -0.906490 0.052194 0.418988 0.906490 -0.052194 -0.418988 0.963499 -0.004764 -0.267669 -0.706529 -0.328744 0.626692 0.706529 0.328744 -0.626692 -0.850225 -0.147432 0.505352 0.850225 0.147432 -0.505352 0.576274 -0.419627 -0.701300 -0.026067 0.621041 0.783344 0.026067 -0.621041 -0.783344 0.187703 0.650743 0.735732 -0.026067 0.621041 0.783344 0.187703 0.650743 0.735732 0.567062 0.442595 0.694659 -0.567062 -0.442595 -0.694659 -0.187703 -0.650743 -0.735732 0.567062 0.442595 0.694659 -0.567062 -0.442595 -0.694659 0.567062 0.442595 0.694659 0.187703 0.650743 0.735732 -0.187703 -0.650743 -0.735732 -0.567062 -0.442595 -0.694659 0.130169 0.388933 0.912024 -0.130169 -0.388933 -0.912024 -0.187703 -0.650743 -0.735732 0.130169 0.388933 0.912024 0.187703 0.650743 0.735732 0.026067 -0.621041 -0.783344 -0.187703 -0.650743 -0.735732 -0.130169 -0.388933 -0.912024 -0.026067 0.621041 0.783344 0.026067 -0.621041 -0.783344 0.054045 0.469399 0.881331 -0.023256 0.901956 0.431202 0.023256 -0.901956 -0.431202 -0.054045 -0.469399 -0.881331 -0.465125 -0.452131 0.761076 0.196491 0.933041 -0.301373 -0.196491 -0.933041 0.301373 0.196491 0.933041 -0.301373 0.310121 0.877122 -0.366717 0.000000 0.851746 -0.523956 -0.000000 -0.851746 0.523956 -0.310121 -0.877122 0.366717 -0.196491 -0.933041 0.301373 0.000000 0.851746 -0.523956 0.000000 0.824358 -0.566069 -0.000000 -0.824358 0.566069 -0.000000 -0.851746 0.523956 0.171154 0.620913 -0.764966 0.000000 0.824358 -0.566069 0.000000 0.643348 -0.765574 -0.000000 -0.643348 0.765574 -0.171154 -0.620913 0.764966 -0.000000 -0.824358 0.566069 -0.219145 0.795216 -0.565337 0.000000 0.824358 -0.566069 0.219145 -0.795216 0.565337 -0.000000 -0.824358 0.566069 -0.174685 0.795111 -0.580761 0.174685 -0.795111 0.580761 -0.174685 0.795111 -0.580761 0.174685 -0.795111 0.580761 0.196491 0.933041 -0.301373 -0.637049 0.727211 -0.255603 0.637049 -0.727211 0.255603 -0.196491 -0.933041 0.301373 -0.568334 0.729403 -0.380746 -0.637049 0.727211 -0.255603 -0.568334 0.729403 -0.380746 -0.421839 0.710413 -0.563352 0.421839 -0.710413 0.563352 0.568334 -0.729403 0.380746 -0.465125 0.452131 -0.761076 0.465125 -0.452131 0.761076 -0.710046 0.704155 -0.000000 -0.710046 0.704155 -0.000000 0.710046 -0.704155 0.000000 0.568334 -0.729403 0.380746 0.637049 -0.727211 0.255603 0.710046 -0.704155 0.000000 -0.637049 0.727211 -0.255603 -0.861745 0.492257 0.122795 0.861745 -0.492257 -0.122795 0.637049 -0.727211 0.255603 -0.900093 0.378962 0.214988 -0.861745 0.492257 0.122795 -0.774012 0.400938 0.490055 0.774012 -0.400938 -0.490055 0.861745 -0.492257 -0.122795 0.900093 -0.378962 -0.214988 0.774012 -0.400938 -0.490055 -0.000000 -0.219519 0.975608 0.527001 0.641825 0.557074 -0.112896 -0.190013 -0.975269 0.112896 0.190013 0.975269 0.159579 0.155066 0.974930 0.000000 0.000000 1.000000 + + + + + + + + + + -0.555831 -0.324883 -0.467128 -0.363719 -0.521364 -0.324276 -0.515872 -0.364578 11.417201 -28.642079 12.776660 -38.785286 5.990014 -28.642079 -0.445185 -0.368701 -26.725761 -23.435567 -22.958311 -33.271475 -29.552010 -33.271475 -0.514752 -0.282726 26.205436 12.011381 29.288943 17.665898 34.266658 5.232335 -0.586928 -0.253298 -0.574921 -0.236959 37.266492 11.711280 39.409177 14.220353 45.080900 5.463765 -0.652042 -0.231742 47.728168 19.357711 57.991380 15.238449 56.720079 12.193725 -0.567082 -0.231603 31.678682 -20.282464 41.431521 -25.312688 39.861116 -27.722195 -0.564200 -0.234932 -35.006287 -33.541966 -33.546147 -44.438386 -36.305912 -44.438386 -0.567920 -0.231617 25.415903 -33.716447 24.378875 -36.385573 14.940985 -30.747289 -0.476449 -0.301675 -26.415943 4.041248 -25.403634 -9.519389 -29.010359 2.829365 -0.481652 -0.313559 -53.557351 26.791938 -54.594545 13.198247 -58.392771 14.082321 -0.572140 -0.282819 -0.499275 -0.313835 -28.928993 -29.036501 -33.790230 -31.452600 -34.100585 -19.719290 -0.408971 -0.369347 -0.478779 -0.277414 -0.411301 -0.345086 -0.483981 -0.289298 -0.401811 -0.347099 -0.346715 -0.361135 -0.351318 -0.441467 -0.344196 -0.387369 -0.256246 -0.483366 -0.348799 -0.467701 -67.134106 -4.076395 -78.451491 -10.559232 -79.825522 6.259209 -0.258765 -0.457131 -0.308709 -0.551558 -76.801684 39.719991 -77.903800 27.291591 -89.173685 35.591556 -0.377706 -0.475318 -79.943652 50.720057 -75.719565 47.796174 -82.566620 38.521703 -0.430399 -0.406136 -70.441602 57.197883 -75.390437 48.692894 -79.469948 51.815328 -0.468005 -0.419857 -0.423764 -0.492123 -53.519168 10.861625 -62.849611 10.861625 -54.193233 20.646723 -0.340905 -0.557102 -0.392276 -0.575845 -53.095432 19.475491 -63.502190 19.475491 -53.519168 28.890136 -0.326816 -0.646547 -53.095432 38.979287 -63.388049 29.840715 -63.502190 38.979287 -0.375686 -0.665318 -50.957449 27.118339 -61.403300 27.118339 -51.159170 36.311231 -0.375126 -0.754444 -50.957449 42.278268 -51.159170 33.085376 -61.403300 42.278268 -0.444899 -0.684375 -0.441981 -0.772852 -52.795354 30.424852 -63.279876 30.424852 -52.649165 39.617236 -0.390633 -0.837149 -0.450573 -0.853653 -53.223960 27.522235 -62.624124 27.522235 -52.795354 36.923569 -0.470092 -0.921273 -0.421151 -0.907798 -53.223960 31.048726 -53.905772 21.296067 -62.624124 31.048726 -0.520179 -0.860310 -44.328481 1.192070 -48.685771 -7.328501 -53.479423 1.192070 -0.527032 -0.933585 -0.539469 -0.979809 -0.499206 -0.971103 -49.615624 10.697448 -50.575531 0.599042 -57.339787 10.697448 -0.590132 -0.987442 -48.555171 -4.023895 -40.104287 -13.954999 -46.488193 -13.954999 -0.595579 -0.944237 -0.656595 -0.951841 -0.633277 -0.992819 -37.732810 -8.823495 -29.980519 -8.823495 -36.659975 -18.896459 -0.595045 -0.878381 -0.669774 -0.887694 -29.793878 7.805966 -29.980519 -0.859428 -39.288456 7.805966 -0.690485 -0.953614 -21.586371 -16.724781 -16.715605 -16.724781 -19.652100 -26.682583 -23.126993 3.101167 -16.715605 -5.428217 -21.586371 -5.428217 -0.723968 -0.893772 -21.861064 3.828871 -24.032546 -5.703384 -28.827585 3.828871 -0.783667 -0.894823 -0.739229 -0.954473 -13.409925 -2.062636 -4.009761 -2.062636 -12.728113 -11.815294 -0.830665 -0.817995 -0.359317 17.130934 -4.009761 8.035178 -13.409925 8.035178 -0.844848 -0.893755 -1.581881 -12.246546 -1.310082 -2.442025 9.335717 -2.442025 -5.052910 -11.815294 -0.665964 -0.995574 -0.700431 -0.996181 -12.728113 -16.994363 -5.052910 -16.994363 -10.280338 -26.188970 -4.853151 -26.188970 -0.622252 -1.012415 -0.640093 -1.012729 -10.280338 -32.851009 -4.853151 -32.851009 -9.245594 -43.320676 -6.436275 -43.320676 -0.577766 -1.005255 -9.245594 -45.974484 -6.436275 -45.974484 -8.135176 -56.628078 -0.653764 -1.011733 -0.662333 -1.009494 -0.665215 -1.006165 35.006287 -45.420312 33.706662 -34.577813 36.466427 -34.577813 20.472621 -42.214359 23.242932 -42.214359 21.639343 -53.016087 -0.743394 -0.989931 -0.726841 -0.994256 19.385409 -29.213080 24.737238 -29.213080 20.472621 -39.813729 -0.815426 -0.947900 -0.792016 -0.954016 18.451799 -14.539756 26.020428 -14.539756 19.385409 -24.782790 -0.873519 -0.886264 26.020428 -8.512116 18.451799 -8.512116 27.005054 1.301782 17.735414 1.301782 -0.913716 -0.809224 -0.881737 -0.817580 27.005054 8.107364 17.735414 8.107364 27.624016 17.533848 17.285076 17.533848 -0.900134 -0.728490 -0.847245 -0.727927 3.061905 35.903915 10.013793 26.809782 1.362757 26.809782 10.295360 34.974059 8.765626 25.887745 1.803522 34.974059 27.624016 24.774562 17.285076 24.774562 18.597356 33.894821 -0.891513 -0.715903 30.683247 32.800936 30.544503 22.916107 22.362213 32.800936 -0.901802 -0.702916 40.018408 35.852642 30.209055 26.002569 29.369322 35.852642 -0.924473 -0.796801 40.455603 26.072082 30.156021 26.072082 39.927054 35.960168 -0.883165 -0.875125 39.892010 11.503531 30.657658 11.503531 40.455603 20.936985 -0.823301 -0.938805 38.995463 -3.338009 31.455646 -3.338009 39.892010 6.492826 -0.748963 -0.983500 31.455646 -8.064734 38.995463 -8.064734 32.495605 -18.335314 37.827060 -18.335314 32.495605 -21.938935 37.827060 -21.938935 33.706662 -32.575666 36.466427 -32.575666 -0.662215 -1.001973 -0.743167 -0.975402 44.444779 -22.225633 43.084145 -11.588902 47.204543 -22.225633 48.415601 -11.588902 -0.653537 -0.997203 -0.726402 -0.966187 51.867288 -9.597059 50.372982 1.003590 54.637599 -9.597059 55.724811 1.003590 -0.639772 -0.992181 -0.699810 -0.956485 55.501799 4.280109 53.926334 14.819260 58.290281 4.280109 59.313269 14.819260 -0.621859 -0.987249 -0.665204 -0.946957 55.240589 18.356997 53.657465 28.826664 58.049908 18.356997 59.084652 28.826664 -0.601017 -0.982742 -0.624942 -0.938251 51.265298 31.699309 49.748565 42.110079 54.092538 31.699309 55.210373 42.110079 -0.578668 -0.978969 -0.581767 -0.930961 43.940488 43.534466 42.545669 53.911757 46.778023 43.534466 48.027366 53.911757 -0.538621 -0.925584 -0.556335 -0.976185 36.573929 53.227756 33.736394 53.227756 37.968748 63.605047 45.437313 35.117674 43.940488 45.666671 46.778023 45.666671 52.892952 22.574550 51.265298 33.161468 54.092538 33.161468 56.939490 8.417520 55.240589 19.071114 58.049908 19.071114 57.192480 -6.507861 55.501799 4.224342 58.290281 4.224342 53.470877 -21.193240 51.867288 -10.391512 54.637599 -10.391512 45.904919 -34.524147 44.444779 -23.681647 47.204543 -23.681647 36.573929 55.899536 35.077104 45.350538 33.736394 55.899536 -0.535539 -0.974582 24.035402 63.273359 22.407747 52.686441 21.208162 63.273359 -0.517697 -0.974268 9.834077 67.281672 8.135176 56.628078 7.024758 67.281672 -0.504026 -0.975264 -5.195127 67.528948 -6.885808 56.796746 -7.983609 67.528948 -0.495458 -0.977503 -20.035755 63.817815 -21.639343 53.016087 -22.806066 63.817815 -0.492575 -0.980832 -33.546147 56.262812 -35.006287 45.420312 -36.305912 56.262812 -0.495575 -0.985024 -47.365058 45.366646 -44.605294 45.366646 -45.904919 34.524147 -0.415447 -0.934560 -0.421243 -0.942658 -43.394236 53.998582 -44.605294 43.361851 -48.725692 53.998582 -0.504253 -0.989793 -0.438008 -0.951873 -51.216942 41.250721 -52.304154 30.650072 -56.568771 41.250721 -0.518018 -0.994816 -0.464600 -0.961575 -55.071692 27.170150 -56.094680 16.631000 -60.458626 27.170150 -0.535932 -0.999748 -54.794327 12.863307 -55.829072 2.393641 -60.221515 12.863307 -0.556773 -1.004254 -50.575531 -0.674038 -51.693367 -11.084808 -56.037339 -0.674038 -0.579122 -1.008028 -0.601456 -1.010811 -36.417813 -34.801540 -33.580278 -34.801540 -35.077104 -45.350538 -36.659975 -22.522548 -31.178278 -22.522548 -36.417813 -32.499162 -31.178278 -18.896459 -33.580278 -32.499162 -23.607333 -39.619389 -19.263360 -29.208619 -20.780093 -39.619389 -24.816241 -28.450214 -20.433908 -28.450214 -25.129654 -38.707124 -24.816241 -23.148563 -20.657124 -13.636330 -20.433908 -23.148563 -23.607333 -42.099523 -20.780093 -42.099523 -22.407747 -52.686441 -46.488193 -17.100343 -40.104287 -17.100343 -41.259123 -27.012852 -48.328958 -12.620110 -44.096604 -22.997401 -46.934139 -22.997401 -46.934139 -24.568676 -44.096604 -24.568676 -45.437313 -35.117674 -54.520607 -11.987632 -51.693367 -11.987632 -52.892952 -22.574550 -54.520607 -11.084808 -58.638391 2.236074 -55.829072 2.236074 -56.939490 -8.417520 -58.638391 2.393641 -58.883162 17.240063 -56.094680 17.240063 -57.192480 6.507861 -58.883162 16.631000 -55.074465 31.994968 -52.304154 31.994968 -53.470877 21.193240 -55.074465 30.650072 -56.037339 0.599042 -53.905772 22.735169 -54.794327 12.591962 -61.580974 22.735169 -60.221515 12.591962 -0.383545 -0.894077 -54.193233 35.496886 -55.071692 25.300755 -61.811508 35.496886 -60.458626 25.300755 -0.359836 -0.881046 -50.283332 48.081418 -51.216942 37.838384 -57.851961 48.081418 -56.568771 37.838384 -0.351639 -0.869593 -42.354278 59.469024 -43.394236 49.198444 -49.894095 59.469024 -48.725692 49.198444 -0.421016 -0.928129 -0.359515 -0.860498 -32.185513 58.403072 -37.516969 58.403072 -31.017111 68.673652 -33.546147 53.711884 -36.305912 53.711884 -32.185513 64.348614 -37.516969 64.348614 -0.437569 -0.923804 -20.035755 60.866742 -22.806066 60.866742 -18.541449 71.467391 -23.893278 71.467391 -0.382925 -0.854381 -18.541449 64.691936 -23.893278 64.691936 -17.258259 74.934970 -24.826888 74.934970 -0.315144 -0.779219 -0.343816 -0.771728 -17.258259 63.146418 -24.826888 63.146418 -16.273633 72.960316 -25.543272 72.960316 -0.290929 -0.689831 -0.322908 -0.681476 -16.273633 55.005146 -25.543272 55.005146 -15.654671 64.431629 -25.993610 64.431629 -0.288519 -0.598426 -15.654671 40.067677 -25.993610 40.067677 -15.443554 49.263057 -0.338485 -0.611507 76.883132 -10.905816 83.232393 -10.001029 78.179264 -23.051875 -0.308079 -0.511232 -0.352775 -0.387335 10.209540 22.112935 -10.779385 14.326247 -11.612842 28.183153 -15.696027 20.115214 -15.903379 29.310680 5.180243 36.837190 71.800939 31.756056 76.822544 41.483298 78.183262 32.386703 -0.340058 -0.502877 -15.654671 78.190595 -18.296556 67.567215 -25.993610 78.190595 -0.391305 -0.607658 -0.391078 -0.499159 5.724241 77.752811 -5.049627 77.752811 -0.576099 89.259616 -0.373928 -0.677758 -0.576099 -36.091447 -10.982856 -36.091447 5.724241 -25.626630 -0.389559 -0.768394 -1.228678 56.381311 -10.559121 56.381311 -0.576099 65.795956 -0.420274 -0.851660 -2.266780 65.390378 -9.885056 65.390378 -1.228678 75.175476 -0.463980 -0.921879 -3.619662 67.657595 -9.006597 67.657595 -2.266780 77.853726 -5.195127 64.351175 -7.983609 64.351175 -3.619662 74.890325 -9.006597 74.890325 -0.498446 -0.922486 9.834077 64.071314 7.024758 64.071314 11.417201 74.540980 5.990014 74.540980 -0.469018 -0.852519 11.417201 67.260424 5.990014 67.260424 12.776660 77.403631 5.101458 77.403631 -0.449258 -0.769446 12.776660 64.924499 5.101458 64.924499 13.819810 74.677157 4.419646 74.677157 -0.440513 -0.678931 4.419646 55.973114 3.991040 65.374448 13.819810 55.973114 -0.518125 -0.684915 -0.518843 -0.774812 18.393856 53.974723 17.930833 63.364829 27.853986 53.974723 -0.601475 -0.695303 -0.593572 -0.784125 30.591001 50.635647 30.073507 60.019392 40.085579 50.635647 -0.668354 -0.796751 -0.684883 -0.709386 39.851085 55.579184 50.440910 55.579184 40.428838 46.195439 -0.696348 -0.617235 -0.610982 -0.594069 -0.619587 -0.506682 -0.536237 -0.496295 -0.524692 -0.583315 30.073507 31.973311 40.663332 31.973311 29.896999 22.783018 -0.626700 -0.438909 -0.551974 -0.429785 29.408701 7.394289 38.921746 7.394289 39.441314 -1.084573 -0.572688 -0.368958 -0.482388 -0.424420 19.130419 -9.498805 26.854582 -9.498805 18.393856 -19.224051 -0.596006 -0.327981 25.552135 -24.946486 26.854582 -35.044892 20.090326 -24.946486 5.101458 -38.785286 -0.457598 -0.424553 -22.958311 19.337283 -36.180892 11.297480 -29.552010 19.337283 -0.376946 -0.426701 6.427556 -20.730034 9.593539 -31.360997 -4.817785 -31.360997 -0.432217 -0.356892 49.923304 -17.355830 57.549537 -26.049880 51.553569 -34.576644 31.229573 -35.474124 42.639491 -37.706552 36.645246 -45.692559 -0.431151 -0.367997 -0.345649 -0.372240 -0.400745 -0.358204 38.957542 -25.806704 44.667961 -29.918074 33.209352 -27.950783 -70.516547 -15.017727 -63.540738 -18.082603 -73.857038 -21.210737 -57.100896 5.420204 -53.926430 -6.121618 -61.324961 -4.300326 -56.302585 6.797809 -57.531618 -3.900866 -60.072206 7.796839 -40.114820 -1.241137 -44.585964 -13.519772 -45.321896 -2.775910 -67.915638 16.235020 -74.671534 8.182642 -74.641145 20.465287 -68.580287 7.931217 -66.344804 -4.146321 -79.186403 6.002082 -60.954811 35.162889 -62.466724 22.265683 -69.731891 25.482038 -0.525867 -0.323537 -54.193233 21.397414 -61.811508 21.397414 -55.071692 34.312270 -61.811508 20.646723 -60.458626 34.312270 -0.582022 -0.328276 -0.495392 -0.354269 -0.521984 -0.363972 -0.568257 -0.323254 -55.071692 -2.436612 -60.458626 -2.436612 -56.094680 8.102539 -58.883162 8.102539 -0.585905 -0.287841 -56.094680 18.616900 -58.883162 18.616900 -57.192480 30.650986 -31.200790 92.344778 -41.511891 85.913696 -42.044168 91.364507 -57.576943 81.978348 -56.011072 76.730233 -66.673937 71.824093 -0.603562 -0.295443 -55.332858 41.906527 -58.098516 42.469737 -54.566892 54.026208 -54.557960 37.319572 -61.296235 28.282345 -57.276475 38.078351 -0.556590 -0.373500 -45.153102 69.948389 -48.733665 75.741519 -38.422489 80.297336 -0.516946 -0.433332 -53.905772 15.883177 -61.580974 15.883177 -54.794327 26.026384 -0.483704 -0.508627 -53.223960 21.295099 -62.624124 21.295099 -53.905772 31.047758 -0.459130 -0.594253 -53.223960 35.711335 -52.795354 26.310001 -62.624124 35.711335 -0.553379 -0.519745 -0.536912 -0.611071 -0.525424 -0.701787 -48.416038 41.195790 -48.258110 32.004741 -58.967442 41.195790 -0.611774 -0.716366 -0.603123 -0.800775 -40.257208 34.589866 -40.708467 24.842961 -51.220603 34.589866 -0.686473 -0.811163 -0.698065 -0.727120 -29.293814 30.862242 -29.216125 21.115337 -40.257208 30.862242 -0.778379 -0.731053 -25.184635 27.758371 -13.546044 27.758371 -23.781453 18.112684 -0.703522 -0.626131 -0.620172 -0.615744 -29.293814 29.550451 -40.257208 29.550451 -28.622546 41.768199 -39.212372 41.768199 -0.702805 -0.536235 -0.628075 -0.526922 -28.622546 45.615874 -39.212372 45.615874 -29.200299 54.999619 -38.694877 54.999619 -0.695961 -0.463558 -0.634944 -0.455953 -29.200299 51.756017 -38.694877 51.756017 -30.987700 59.035268 -38.739991 59.035268 -0.640028 -0.389496 -0.573886 -0.445644 -0.596853 -0.382206 -41.774426 38.780456 -49.526717 38.780456 -42.847261 48.853420 -35.588370 58.791203 -35.488438 51.512498 -45.301868 51.512498 -39.866637 61.398703 -32.135606 51.281466 -43.992513 51.281466 -35.488438 57.543807 -36.634752 48.215976 -45.301868 57.543807 -32.135606 50.812792 -35.955146 39.160489 -43.992513 50.812792 -51.023542 43.125233 -40.257208 33.934940 -51.220603 33.934940 -49.954534 35.114581 -48.416038 24.297263 -58.967442 24.297263 -59.373431 50.620716 -50.573252 50.620716 -61.204923 41.389551 -56.459949 54.011312 -50.573252 44.679065 -59.373431 44.679065 -49.615624 50.372828 -49.954534 42.175141 -57.339787 50.372828 -49.526717 56.734167 -41.774426 56.734167 -50.811282 48.630660 -49.615624 28.092225 -57.339787 28.092225 -50.575531 38.190631 -56.037339 38.190631 -0.623088 -0.313647 -50.575531 36.066570 -56.037339 36.066570 -51.693367 47.536418 -38.137952 76.185720 -46.891307 67.594662 -40.565765 78.196047 -33.256523 77.009683 -35.485814 79.238124 -27.732835 88.585031 -0.645437 -0.317421 -44.096604 61.074033 -46.934139 61.074033 -45.437313 73.812138 -42.847261 46.997233 -48.328958 46.997233 -44.096604 58.436701 -48.328958 48.853420 -46.934139 58.436701 -0.685020 -0.375642 -40.777883 40.996828 -45.410227 37.472763 -49.576489 48.199578 -34.991595 46.200903 -44.195111 54.035123 -39.064023 56.782774 -30.987700 47.355755 -38.739991 47.355755 -37.667156 57.428719 -0.752777 -0.467938 -0.725195 -0.378740 -25.685076 58.068891 -24.725169 69.366646 -17.960912 58.068891 -19.263360 69.366646 -0.801464 -0.465170 4.856318 62.732831 -4.634161 62.732831 -1.880363 73.766970 -0.832235 -0.552062 2.416602 50.954938 -4.634161 61.973592 4.856318 61.973592 -0.772537 -0.551011 -2.450542 53.631662 -11.850706 53.631662 -11.168894 63.384320 -0.847778 -0.637020 -2.450542 54.405978 0.673754 45.903656 -11.850706 54.405978 -0.877979 -0.548729 12.542939 55.673120 6.029869 47.064223 3.212496 55.673120 -0.898887 -0.638981 6.590478 45.846024 -0.325653 36.724668 -1.018595 45.846024 8.765626 44.322846 10.295360 35.236532 1.803522 35.236532 -0.889103 -0.624497 31.211772 44.117391 22.359497 34.932549 21.624736 44.117391 30.683247 34.933186 22.362213 34.933186 31.217129 44.115481 -0.899012 -0.611949 39.843952 45.265542 29.372477 36.069614 29.558178 45.265542 40.018408 36.072572 29.369322 36.072572 39.840298 45.269068 -0.913083 -0.600012 49.636034 45.567591 39.520853 36.372733 39.272161 45.567591 -0.932821 -0.692972 48.158150 39.081482 36.882334 39.081482 46.575155 48.720544 48.158150 39.276533 38.256611 29.470159 36.882334 39.276533 -0.913277 -0.781155 50.755184 26.554093 40.455603 26.554093 50.926283 35.750304 -0.873126 -0.861098 50.253548 16.337495 41.019196 16.337495 50.755184 25.770950 -0.815105 -0.927352 49.455560 4.040886 41.915743 4.040886 50.253548 13.871720 41.915743 1.139894 49.455560 1.139894 43.084145 -9.130686 48.415601 -9.130686 -0.791396 -0.914321 50.372982 2.070762 49.089792 12.313796 55.724811 2.070762 56.658421 12.313796 -0.753789 -0.900600 53.926334 14.337998 52.573452 24.534129 59.313269 14.337998 60.191728 24.534129 -0.704849 -0.887125 53.657465 26.741201 52.298005 36.884408 59.084652 26.741201 59.973208 36.884408 -0.647909 -0.874813 49.748565 38.475025 48.446117 48.573431 55.210373 38.475025 56.170281 48.573431 -0.589863 -0.833123 49.923416 46.195439 49.100201 61.256547 40.428838 68.875175 49.923416 68.875175 18.120948 54.092415 15.145482 63.380555 25.445943 58.171282 -0.738090 -0.811830 47.446714 51.588116 56.906843 51.588116 48.446117 41.862870 -0.762845 -0.737784 47.446714 -7.417150 43.674285 1.843871 56.906843 -7.417150 -0.798030 -0.828334 51.254856 3.563856 56.050055 12.440344 60.655020 3.563856 -0.829518 -0.744612 -1.953562 32.978721 -5.544745 41.691843 3.132447 41.691843 -0.844088 -0.845139 -0.880890 -0.763355 60.865793 28.527070 51.535350 28.527070 61.289528 37.941714 52.573452 22.758197 51.535350 32.543295 60.191728 22.758197 56.658421 12.994361 49.089792 12.994361 57.374806 22.808259 48.105166 22.808259 57.374806 22.182535 48.105166 22.182535 57.825144 31.609018 47.486204 31.609018 -0.872790 -0.670654 53.209370 39.223585 41.364675 30.042518 40.810067 39.223585 57.825144 22.233468 47.486204 22.233468 59.288014 31.469597 61.289528 21.378814 50.882771 21.378814 52.729361 30.545939 50.882771 37.941714 -0.814103 -0.650443 62.329661 28.452540 59.603888 19.221394 51.112799 28.452540 -5.544745 38.377034 -2.863791 47.621297 3.132447 38.377034 -0.779427 -0.636453 73.996594 43.902433 66.578291 32.890783 66.184810 43.902433 -0.779814 -0.547605 50.814248 24.616719 51.213343 33.831939 62.454226 24.616719 -0.820824 -0.562221 70.811128 38.135298 71.084981 28.915506 62.699950 38.135298 -0.837070 -0.575809 70.334473 36.686817 61.252137 26.021095 61.920191 36.686817 62.329661 31.839679 51.112799 31.839679 61.743383 40.963118 73.996594 32.831391 66.184810 32.831391 65.499404 41.947918 36.263474 22.948653 38.537598 32.448430 52.016016 32.448430 -0.888725 -0.513499 38.537598 27.381494 40.682412 36.592009 52.016016 27.381494 -0.916295 -0.530099 -0.872839 -0.536276 39.843952 45.036011 29.558178 45.036011 30.226899 54.073421 31.211772 42.700245 21.624736 42.700245 32.643237 51.648591 32.298118 51.507384 21.448905 42.354526 23.748161 51.507384 4.591142 58.031131 6.590478 48.808114 -1.018595 48.808114 -0.862280 -0.459959 32.298118 52.668921 23.748161 52.668921 34.132774 60.226293 -0.838813 -0.462448 13.950941 50.495739 15.528119 61.377376 20.773259 61.377376 3.212496 51.022667 5.956668 61.969469 12.542939 51.022667 13.574944 61.969469 -0.760676 -0.368784 -0.787086 -0.366859 5.956668 65.307864 4.765020 76.341669 13.574944 65.307864 -9.765706 76.630481 -5.994294 66.192984 -15.142706 75.327624 -0.688102 -0.326644 -0.667306 -0.325041 -24.725169 53.520362 -23.607333 63.931132 -19.263360 53.520362 -24.316406 75.932184 -27.073525 76.764103 -23.293283 89.002020 -16.874640 58.746402 -16.134070 70.093059 -13.615292 68.696796 -20.780093 76.283039 -23.607333 76.283039 -22.407747 89.337861 -20.780093 63.931132 -22.781057 51.849537 -27.452020 48.884461 -31.584414 58.559580 -0.706958 -0.316395 -28.125393 74.042001 -30.582484 72.307015 -34.743556 84.787525 -28.279456 54.328269 -38.185553 59.267196 -36.115671 61.449640 -0.720629 -0.315399 4.765020 57.274171 5.788008 67.813322 10.151954 57.274171 8.576490 67.813322 -0.804657 -0.351932 4.042062 63.045552 -0.520180 60.046935 -4.823161 69.795788 21.516926 63.867933 13.507109 75.172865 18.779664 76.589168 15.528119 64.465956 12.574389 75.634537 20.773259 64.465956 10.151954 76.341669 -0.810226 -0.345501 -0.870155 -0.450864 38.995463 55.576413 31.455646 55.576413 37.827060 68.547185 38.995463 62.007335 30.085736 54.352064 31.455646 62.007335 32.830026 56.610364 22.153902 56.610364 29.390467 65.863392 32.830026 49.394796 32.226986 40.868632 22.153902 49.394796 49.461712 53.567124 40.095577 45.029637 39.682735 53.567124 49.636034 45.364021 39.272161 45.364021 47.888112 54.658029 49.461712 33.114122 39.682735 33.114122 42.037466 42.700797 -0.861959 -0.439411 49.455560 53.938247 50.550101 45.425220 41.915743 53.938247 -0.832031 -0.493481 54.371638 31.849149 43.263183 31.849149 44.692305 40.312438 54.371638 42.785550 54.881467 33.936843 43.263183 42.785550 70.334473 42.465935 61.920191 42.465935 60.337142 51.186801 -0.803723 -0.479281 67.224892 42.042792 68.439100 32.631468 59.088853 42.042792 -0.771221 -0.466804 70.968592 36.324185 64.497021 26.846599 64.025139 36.324185 70.811128 26.950553 62.699950 26.950553 69.414652 36.257466 -0.702033 -0.530787 -0.701484 -0.451725 46.818463 13.048485 47.446714 22.438590 57.369866 13.048485 56.906843 22.438590 40.916814 7.958117 41.436382 17.345263 50.949426 17.345263 -0.694763 -0.386872 41.436382 -6.933400 42.262896 2.784614 50.949426 -6.933400 -0.751703 -0.399184 47.446714 0.903250 48.446117 10.628496 56.906843 0.903250 64.025139 25.419407 68.383453 34.847889 70.968592 25.419407 -0.800643 -0.412659 54.026099 23.180820 52.298005 31.696868 59.973208 31.696868 -0.838250 -0.426380 60.191728 51.400629 55.063622 43.837995 52.573452 51.400629 67.224892 43.508558 59.088853 43.508558 63.647377 51.427571 56.658421 57.449526 59.607319 50.053691 49.089792 57.449526 -0.783786 -0.368584 -0.800551 -0.377798 50.372982 36.171215 55.724811 36.171215 49.089792 25.928181 -0.720082 -0.304197 50.372982 35.007665 54.637599 46.776872 55.724811 35.007665 -0.728865 -0.307883 -0.708246 -0.279093 -0.688854 -0.289557 25.567944 4.396258 34.256932 12.394894 27.553771 1.865850 36.230264 79.509855 28.645626 89.902891 37.883991 82.545629 52.419293 45.275121 54.678563 57.928886 55.184384 45.072523 -0.731865 -0.312076 44.444779 58.858150 45.904919 71.646154 47.204543 58.858150 -0.730216 -0.302558 48.221767 48.101083 56.077989 57.439796 50.351545 45.912746 8.576490 77.583987 5.788008 77.583987 6.885808 90.156226 -4.539512 81.452152 -6.836774 79.565121 -11.869091 91.209664 -4.578931 69.641541 -14.566810 74.581191 -12.560993 76.775501 32.495605 46.444272 33.706662 57.081003 37.827060 46.444272 35.407542 5.794408 43.671008 13.657796 44.528935 10.727141 29.506136 18.309255 39.292224 21.739144 31.569281 11.901300 50.311418 33.077385 52.426766 44.809886 55.191682 44.604926 44.444779 58.499176 47.204543 58.499176 48.415601 46.639176 36.444474 28.449073 39.555688 22.479248 33.159913 14.376138 49.455560 48.287960 41.915743 48.287960 43.084145 61.258731 32.495605 68.547185 34.992016 80.022307 36.580050 83.092956 42.264173 70.705012 -0.759123 -0.338800 -0.757195 -0.358882 -0.704537 -0.351397 -0.706318 -0.299175 31.597564 13.565972 30.885884 4.386632 24.249069 4.386632 -0.706465 -0.331316 -0.665021 -0.316202 2.380634 19.618428 7.252304 25.236093 9.061116 21.393171 32.176502 13.792980 34.403619 11.472114 31.544898 4.607783 4.106507 18.497713 2.473623 22.418624 12.000991 30.482271 -0.643646 -0.302291 -0.624013 -0.271378 57.492432 62.830700 66.966273 55.353154 65.353326 51.659616 -0.602519 -0.277049 -1.365065 -6.254767 -4.204431 -18.417873 -6.781861 -17.040204 52.682655 39.236958 62.568206 33.367287 61.083873 29.994519 48.037101 9.195209 41.805728 21.145430 49.956257 15.343250 47.874996 29.376072 50.062294 32.341629 57.485415 21.092848 7.024758 -15.619283 11.417201 -27.522156 5.990014 -27.522156 24.035402 -11.998061 25.552135 -23.849163 20.090326 -23.849163 0.011784 -5.136898 2.693762 -6.297982 -4.150212 -16.746535 64.327332 49.046378 66.218570 52.605457 74.429284 43.402737 -0.639151 -0.333358 33.736394 -21.379077 37.968748 -32.148817 32.487051 -32.148817 -0.633597 -0.369725 -0.688693 -23.954095 -3.909264 -33.573198 -13.635796 -33.573198 19.130419 -35.044892 -14.648172 36.755755 -13.635796 44.143004 -3.909264 44.143004 -0.682326 -0.340648 42.545669 -25.967437 48.027366 -25.967437 49.731128 -40.407791 42.545669 -22.808750 46.778023 -12.039010 48.027366 -22.808750 63.363759 33.256695 65.195186 35.657000 69.923505 25.095602 58.186024 28.946059 55.536591 43.050419 60.805289 30.447738 31.321472 -28.726975 36.802962 -24.516058 34.001539 -34.604949 68.081275 6.917689 64.860704 16.536792 77.807807 6.917689 57.814536 16.292189 63.194796 12.716417 65.947753 2.953197 48.446117 -12.576077 50.589737 2.016231 56.170281 -12.576077 52.298005 -0.920718 58.870676 13.786932 59.973208 -0.920718 17.938773 10.217285 24.249069 19.803070 30.885884 19.803070 52.573452 23.072841 59.313269 34.515543 60.191728 23.072841 56.464585 42.094530 53.009112 51.782207 57.548398 55.330312 56.658421 25.928181 53.785898 51.351174 52.637623 64.932480 58.461491 54.717626 56.170281 10.628496 78.820183 45.550125 68.081275 52.937374 77.807807 52.937374 32.487051 -35.467023 37.968748 -35.467023 30.783289 -49.907377 29.408701 -14.533938 38.095231 -4.815923 38.921746 -14.533938 54.111761 6.914203 43.535261 5.764499 53.416347 15.311015 41.741308 14.443956 41.744153 23.845690 52.330508 24.900795 57.917329 17.859412 46.818463 27.245193 57.369866 27.245193 33.441764 22.632405 44.256601 32.855709 44.320988 23.663947 42.108335 36.612203 31.255425 45.783967 42.134861 46.813264 39.851085 44.271976 39.786405 53.673488 50.440910 44.271976 80.541428 30.403408 64.774351 30.403408 82.182701 39.660775 80.541428 33.467148 78.127472 24.380824 64.774351 33.467148 47.507853 54.358562 50.814248 67.217620 62.454226 67.217620 30.073507 37.247510 29.896999 47.447078 40.663332 37.247510 40.860393 47.447078 17.930833 38.308226 17.772905 48.508476 28.482237 38.308226 -0.443380 -0.587141 29.789324 39.535771 19.100729 49.757749 30.023245 48.726341 -0.457663 -0.500332 16.435618 21.532132 27.163606 29.692110 27.358124 20.500622 13.608443 0.298901 23.710118 8.567625 24.148371 -0.833264 27.853986 -19.224051 17.930833 -4.478917 18.393856 4.003221 27.853986 4.003221 -1.767776 -12.068592 1.200096 -21.771358 -2.965920 -21.771358 5.101458 -9.874297 12.776660 -9.874297 8.572387 -19.408686 -3.719105 -1.664588 -2.965920 7.716323 1.200096 7.716323 3.991040 -5.465152 8.572387 4.085309 14.475562 -5.465152 -0.576099 -18.295548 -10.982856 -18.295548 -15.541906 -8.035244 -10.982856 89.259616 3.844851 19.858559 3.991040 29.050943 14.475562 29.050943 -28.506485 67.071410 -45.737314 67.763130 -35.839781 77.740644 3.991040 40.349497 3.844851 49.541881 14.475562 40.349497 -31.470834 -6.655756 -38.951956 -16.076395 -48.701256 -5.953991 -5.049627 -25.626630 14.475562 65.374448 -10.982856 65.795956 9.593539 8.035517 10.721180 -1.334105 -4.817785 8.035517 -1.761950 -2.723582 -2.364128 6.694420 6.609869 11.997695 -15.654671 14.263768 -25.993610 14.263768 -16.273633 28.131911 16.393758 21.587971 16.572031 30.778647 27.122294 29.747228 40.860393 22.783018 28.482237 63.364829 40.663332 60.019392 30.073507 0.640866 30.573517 9.051576 40.663332 0.640866 53.209370 16.240183 40.810067 16.240183 56.049922 26.542375 60.865793 32.543295 52.298005 32.587936 51.254856 42.340595 59.973208 32.587936 60.655020 42.340595 56.170281 41.862870 9.492737 56.302421 4.304749 65.019301 11.043082 70.008047 48.027366 41.818077 42.545669 41.818077 49.100201 53.954216 32.487051 48.935553 31.414216 61.071692 37.968748 48.935553 -0.525834 -0.856899 70.771311 41.309190 65.583323 32.592309 64.032979 46.297935 25.552135 63.736159 20.090326 63.736159 26.854582 73.834565 24.035402 60.233889 21.208162 60.233889 25.552135 70.644660 20.090326 70.644660 19.130419 73.834565 19.130419 61.990172 18.393856 71.715418 26.854582 61.990172 61.327748 43.743991 54.002753 47.822858 64.303214 53.032131 40.085579 77.574995 31.414216 69.956367 30.591001 77.574995 27.853986 71.715418 32.487051 63.605047 41.019196 13.871720 40.455603 25.770950 -0.781281 -0.641526 5.158336 35.595614 -7.831716 35.595614 -8.638618 44.684798 -0.764132 -0.820125 5.158336 34.592809 -8.638618 25.503625 -7.831716 34.592809 2.739603 26.558214 -9.334885 26.558214 4.461646 35.648040 -18.776982 18.789776 -22.125874 9.339912 -28.724851 18.789776 2.739603 11.702979 -9.614106 1.681151 -9.334885 11.702979 -28.535154 18.800674 -21.861064 9.403710 -28.827585 9.403710 -29.216125 19.736726 -29.793878 10.352981 -39.805950 19.736726 -39.288456 10.352981 -39.257486 19.073748 -48.551185 11.740511 -49.998144 19.073748 -40.916351 11.408688 -40.216451 2.632628 -48.861788 2.632628 -37.732810 -0.859428 -48.861788 -3.101238 -40.216451 -3.101238 -40.639405 -13.222339 -51.165737 18.175951 -49.615624 10.863824 -57.339787 10.863824 -37.296633 30.348381 -39.257486 21.157216 -49.998144 21.157216 -0.519630 -0.781248 -46.486443 15.364698 -44.328481 6.214197 -53.479423 6.214197 -37.832976 29.984867 -50.405421 20.617928 -49.599860 29.984867 -49.920789 19.691076 -47.932049 8.093041 -57.961358 8.093041 -37.832976 29.880407 -49.599860 29.880407 -46.564991 41.249623 -47.932049 17.949597 -55.143498 8.970263 -57.961358 17.949597 -48.258110 37.405781 -58.967442 28.214733 -59.181726 37.405781 -59.181726 32.004741 -52.795354 38.975588 -52.649165 29.783204 -63.279876 38.975588 -63.503540 29.783204 -63.503540 39.617236 -63.279876 26.310001 -39.805950 21.115337 -17.993978 35.439515 -18.776982 26.348241 -28.724851 26.348241 -21.352826 44.044447 -20.791950 34.936770 -31.562892 44.044447 -13.546044 37.271055 -25.184635 37.271055 -21.480674 48.933158 -24.369489 51.083967 -21.352826 42.169456 -31.562892 42.169456 5.801693 48.497402 -7.567841 48.497402 -6.140655 57.799655 5.801693 46.084437 6.196077 36.945303 -7.567841 46.084437 -24.552772 49.657170 -31.525554 40.569053 -33.932750 49.657170 -29.659994 55.068205 -24.552772 46.731809 -33.932750 46.731809 -17.960912 60.291386 -23.866557 53.019846 -25.685076 60.291386 -61.580974 31.047758 -57.821012 69.225411 -53.164827 64.255429 -63.339406 57.515905 -0.429966 -0.380340 -0.399560 -0.370547 -0.474198 -0.325123 26.036379 -3.432001 32.133954 -12.100968 26.242502 -13.812561 -0.483535 -0.281764 -5.674452 6.816913 -15.364484 16.315655 -6.529857 17.184760 -16.698625 -2.749843 -26.602698 -5.827133 -25.561190 7.525260 -20.512841 -22.777011 -10.784040 -19.183848 -19.947669 -33.854981 -10.781753 -9.158223 -2.312952 -18.365597 -11.105920 -19.586128 1.318583 0.520293 8.113948 -8.878316 -1.308748 -0.649761 -61.918800 7.332365 -65.073578 10.109406 -61.243297 21.056542 -43.316347 28.240049 -49.634198 20.000919 -47.091046 30.088354 -33.546147 3.522457 -30.702997 -9.024123 -36.305912 3.522457 -0.342215 -0.407992 -0.348275 -0.434193 -0.254266 -0.503989 3.320788 -2.487216 -18.306131 4.246304 -9.348620 8.658816 -10.559121 75.175476 -9.885056 77.853726 -0.234756 -0.605033 13.288917 -0.332420 0.722612 -0.332420 20.853002 17.280375 13.288917 48.918070 0.276824 39.731077 0.722612 48.918070 -0.280171 -0.702255 -29.556971 72.085663 -39.856552 72.085663 -28.643708 83.398822 -0.305499 -0.790358 -30.120564 51.803979 -39.354916 51.803979 -29.556971 61.237433 -31.017111 58.179356 -38.556928 58.179356 -30.120564 68.010191 -38.556928 68.673652 -39.354916 68.010191 -0.315537 -0.804385 -42.354278 50.800462 -49.894095 50.800462 -41.556289 60.631296 -50.790642 60.631296 -0.291368 -0.717900 -41.556289 46.970014 -50.790642 46.970014 -41.054653 56.403469 -51.354235 56.403469 -41.054653 65.554047 -51.354235 65.554047 -52.267498 76.867206 -0.235060 -0.624505 -26.664429 84.962727 -30.618957 72.733807 -40.825276 84.962727 -0.323755 -0.735701 -0.344575 -0.820345 -49.566948 40.929976 -58.836587 40.929976 -49.116610 50.356459 -50.283332 41.639941 -57.851961 41.639941 -49.566948 51.453839 -58.836587 51.453839 -53.519168 41.308670 -54.193233 31.523572 -62.849611 41.308670 -61.580974 21.296067 -61.811508 31.523572 -53.519168 34.254031 -62.849611 34.254031 -53.095432 43.668676 -63.502190 43.668676 -76.926734 36.823779 -76.645489 27.688824 -90.053660 36.823779 -53.095432 30.829820 -63.502190 30.829820 -63.388049 39.968391 -59.027460 74.644173 -49.116610 61.798881 -59.455549 61.798881 -59.455549 50.356459 -76.645489 42.147914 -76.926734 33.012958 -90.053660 33.012958 -82.099309 37.185169 -78.001053 37.185169 -90.919405 27.369738 -74.701983 53.996116 -78.001053 45.154311 -82.099309 45.154311 -62.849611 28.890136 -0.234983 -0.619563 -0.308632 -0.546615 -0.258688 -0.452189 -83.983984 41.303115 -72.260411 33.657359 -81.581335 24.316206 -0.275328 -0.459562 -0.251319 -0.607463 -0.251623 -0.626936 -26.664429 29.542761 -40.825276 29.542761 -31.163858 46.098210 -63.279876 36.923569 -39.856552 61.237433 -47.365058 43.361851 23.242932 -39.813729 24.737238 -24.782790 30.657658 6.492826 30.156021 20.936985 1.924384 16.027363 9.335717 6.775512 -1.310082 6.775512 10.013793 15.414168 8.662672 6.074154 1.362757 15.414168 -2.393276 -11.535133 8.700534 -1.930450 6.561408 -11.535133 -1.534459 -26.335748 -2.393276 -17.179159 6.561408 -17.179159 4.765020 -28.018842 11.504836 -17.822711 10.151954 -28.018842 4.765020 -32.900915 10.151954 -32.900915 5.788008 -43.440065 8.576490 -43.440065 5.788008 -46.064544 8.576490 -46.064544 6.885808 -56.796746 + + + + + + + + + + + + + + +

0 0 0 1 1 1 2 2 2 1 1 1 0 0 0 3 3 3 1 7 1 4 8 7 2 9 2 4 13 7 5 14 11 2 9 2 5 17 11 6 18 15 2 19 2 5 20 11 7 21 16 6 22 15 6 18 15 7 21 16 8 26 20 7 21 16 9 29 24 8 30 20 9 33 24 10 34 28 8 35 20 8 39 20 10 34 28 11 40 32 10 43 28 12 44 36 11 45 32 12 49 36 13 50 40 11 40 32 13 50 40 14 53 44 11 40 32 14 54 44 13 55 40 15 56 45 13 50 40 16 60 49 15 61 45 12 62 50 16 60 51 13 50 52 17 63 53 16 64 49 12 44 36 18 65 54 16 60 49 17 63 53 18 66 54 19 67 55 16 64 49 18 68 56 20 69 57 19 70 58 20 74 62 21 75 63 19 70 55 21 75 63 22 78 67 19 70 55 19 70 55 22 80 67 23 81 71 22 78 67 24 84 75 23 85 71 24 84 75 22 78 67 25 86 76 26 89 80 25 90 76 22 91 67 25 90 76 26 89 80 27 92 81 26 89 80 28 96 85 27 92 81 27 98 81 28 99 85 29 100 89 28 99 85 30 104 93 29 105 89 30 104 93 31 108 97 29 109 89 31 108 97 30 104 93 32 110 98 33 113 102 32 114 98 30 104 93 32 114 98 33 113 102 34 115 103 33 113 102 35 119 107 34 120 103 35 119 107 33 113 102 36 121 108 34 115 103 35 119 107 37 124 112 35 126 107 38 127 116 37 124 112 35 119 107 39 128 117 38 129 116 39 128 117 35 119 107 40 130 118 39 133 117 41 134 122 38 135 116 41 139 122 42 140 126 38 141 116 41 134 122 43 142 127 42 143 126 43 142 127 41 134 122 44 144 128 43 142 127 45 147 132 42 143 126 45 147 132 43 142 127 46 148 133 43 151 127 47 152 137 46 148 133 44 153 128 47 154 137 43 151 127 46 159 133 47 152 137 48 160 144 47 154 137 49 163 148 48 164 144 49 163 148 47 154 137 50 165 149 48 168 144 49 169 148 51 170 153 49 169 148 52 174 157 51 170 153 52 175 157 49 169 148 50 165 149 53 178 162 50 179 149 47 152 137 50 179 149 53 178 162 54 180 163 55 184 168 54 180 163 53 185 162 54 180 163 55 184 168 56 186 169 57 190 174 56 186 169 55 191 168 57 194 174 58 195 178 56 196 169 57 197 174 59 198 179 58 195 178 60 199 180 59 200 179 57 201 174 61 208 187 58 195 178 59 200 179 58 195 178 61 208 187 62 209 188 63 212 192 62 209 188 61 208 187 62 209 188 63 212 192 64 213 193 65 216 197 64 217 193 63 212 192 64 217 193 65 216 197 52 218 157 66 222 202 52 223 157 65 224 197 52 223 157 66 222 202 67 225 203 68 230 208 67 231 203 66 232 202 69 233 209 67 231 203 68 234 208 51 235 153 67 225 203 69 236 209 68 234 208 66 244 202 70 245 219 70 248 219 66 249 202 71 250 223 71 254 223 66 222 202 72 255 227 65 258 197 72 255 227 66 244 202 72 255 227 65 258 197 73 259 231 63 262 192 73 259 231 65 258 197 73 259 231 63 262 192 74 263 235 61 208 187 74 263 235 63 212 192 74 263 235 61 208 187 75 266 239 59 198 179 75 266 239 61 208 187 75 266 239 59 198 179 60 199 180 76 268 248 75 269 239 60 270 180 75 269 239 76 268 248 77 271 249 78 276 254 77 271 249 76 277 248 77 271 249 78 276 254 79 278 255 80 282 260 79 283 255 78 276 254 79 283 255 80 282 260 81 284 261 82 288 266 81 284 261 80 282 260 81 284 261 82 288 266 83 289 267 84 292 272 83 293 267 82 288 266 83 293 267 84 292 272 85 294 273 86 298 278 85 294 273 84 299 272 85 294 273 86 298 278 87 300 279 86 298 278 88 304 284 87 305 279 88 304 284 86 298 278 89 306 285 86 309 278 57 310 174 89 306 285 86 311 278 84 292 272 57 312 174 84 292 272 82 315 266 57 316 174 82 288 266 80 282 260 57 319 174 80 321 260 78 322 254 57 323 174 78 276 254 76 277 248 57 327 174 76 268 248 60 329 180 57 330 174 89 335 285 57 201 174 90 336 310 90 336 310 57 339 174 91 340 314 91 343 314 57 344 174 92 345 318 92 345 318 57 349 174 93 350 322 93 353 322 57 354 174 94 355 326 57 359 174 95 360 330 94 361 326 95 365 330 96 366 334 94 367 326 96 366 334 95 365 330 97 368 335 98 372 339 97 373 335 95 360 330 97 373 335 98 372 339 99 374 340 100 378 344 99 379 340 98 380 339 99 379 340 100 378 344 101 381 345 102 385 349 101 381 345 100 378 344 101 381 345 102 385 349 40 130 118 103 388 353 40 389 118 102 385 349 40 389 118 103 388 353 39 128 117 103 392 353 104 393 357 39 128 117 57 394 174 104 393 357 103 392 353 57 395 174 105 396 358 104 393 357 44 400 128 104 393 357 105 401 358 104 393 357 44 400 128 41 402 122 105 401 358 53 185 162 44 153 128 55 407 168 53 408 162 105 401 358 53 408 162 47 154 137 44 153 128 57 411 174 55 407 168 105 401 358 104 393 357 41 413 122 39 128 117 57 417 174 103 388 353 102 385 349 57 419 174 102 385 349 100 420 344 57 423 174 100 378 344 98 372 339 57 426 174 98 380 339 95 365 330 36 121 108 40 130 118 35 119 107 40 130 118 36 121 108 101 381 345 106 429 409 101 381 345 36 430 108 101 381 345 106 429 409 99 431 340 107 435 414 99 436 340 106 437 409 99 436 340 107 435 414 97 373 335 108 441 419 97 373 335 107 435 414 97 373 335 108 441 419 96 442 334 108 445 419 109 446 424 96 366 334 109 446 424 108 445 419 110 447 425 93 450 322 96 366 334 109 451 424 96 366 334 93 450 322 94 452 326 109 456 424 92 345 318 93 457 322 92 345 318 109 456 424 111 458 433 110 462 425 111 463 433 109 464 424 111 463 433 110 462 425 112 465 438 113 470 443 112 465 438 110 447 425 112 465 438 113 470 443 114 471 444 115 475 449 114 476 444 113 470 443 114 476 444 115 475 449 116 477 450 117 481 455 116 477 450 115 475 449 116 483 450 117 484 455 118 485 459 117 489 455 119 490 463 118 485 459 20 491 62 119 492 463 117 484 455 120 493 464 119 494 463 20 491 62 121 501 474 118 502 459 119 503 463 121 507 474 122 508 478 118 509 459 122 508 478 121 507 474 123 510 479 124 514 483 118 515 459 122 508 478 118 515 459 124 514 483 116 516 450 125 520 487 116 521 450 124 522 483 116 521 450 125 520 487 114 523 444 126 527 491 114 528 444 125 520 487 114 528 444 126 527 491 112 529 438 127 533 495 112 534 438 126 535 491 112 534 438 127 533 495 111 458 433 91 340 314 111 463 433 127 533 495 111 463 433 91 340 314 92 538 318 127 540 495 90 336 310 91 340 314 90 336 310 127 540 495 128 541 503 126 527 491 128 544 503 127 540 495 128 544 503 126 527 491 129 545 508 125 548 487 129 549 508 126 550 491 129 549 508 125 548 487 130 551 513 125 520 487 131 556 518 130 557 513 131 556 518 125 520 487 124 522 483 132 560 522 130 557 513 131 556 518 130 557 513 132 560 522 133 561 523 134 564 527 133 565 523 132 560 522 133 565 523 134 564 527 135 566 528 134 564 527 136 570 532 135 566 528 136 570 532 134 564 527 137 571 533 134 574 527 138 575 537 137 571 533 139 576 538 138 577 537 134 578 527 139 576 538 140 579 539 138 575 537 139 580 538 141 581 540 140 582 539 141 581 540 139 580 538 142 583 541 141 587 540 143 588 545 140 579 539 141 589 540 144 590 546 143 591 545 144 595 546 145 596 550 143 597 545 144 590 546 3 598 3 145 599 550 3 598 3 144 590 546 146 600 551 3 3 3 147 603 555 145 599 550 147 603 555 3 3 3 0 604 0 148 608 560 1 609 1 3 610 3 1 611 1 148 612 560 4 13 7 148 608 560 149 615 564 4 13 7 149 618 564 150 619 568 4 13 7 149 618 564 120 493 464 150 619 568 120 493 464 18 622 54 150 619 568 150 624 575 18 625 576 17 626 577 16 60 49 23 81 71 15 636 45 16 60 49 19 637 55 23 81 71 23 81 71 151 642 602 15 61 45 151 642 602 23 81 71 24 643 75 152 647 608 15 648 609 151 642 610 15 648 609 152 647 608 14 54 611 8 651 20 14 53 44 152 647 616 11 45 32 14 54 44 8 654 20 8 656 20 152 657 616 153 658 626 152 647 616 151 662 602 153 658 626 153 664 626 151 662 602 154 665 633 24 643 75 154 668 633 151 642 602 154 669 633 24 643 75 155 670 637 25 90 76 155 673 637 24 674 75 155 673 637 25 90 76 156 675 641 25 86 76 157 678 645 156 675 641 157 678 645 25 86 76 27 92 81 157 678 645 158 680 649 156 681 641 157 682 645 159 683 650 158 684 649 157 678 645 160 685 651 159 686 650 160 685 651 157 678 645 31 687 97 160 690 651 161 691 655 159 692 650 160 693 651 162 694 656 161 695 655 163 699 660 161 700 655 162 701 656 161 700 655 163 699 660 164 702 661 163 699 660 165 706 665 164 702 661 166 708 669 164 702 661 165 709 665 166 710 669 161 695 655 164 702 661 161 695 655 166 710 669 167 711 670 168 714 675 167 715 670 166 716 669 167 715 670 168 714 675 169 717 676 170 722 681 169 723 676 168 714 675 169 723 676 170 722 681 171 724 682 172 728 687 171 729 682 170 730 681 172 731 687 173 732 688 171 729 682 173 732 688 172 731 687 174 733 689 158 737 649 171 729 682 173 738 688 158 739 649 169 717 676 171 729 682 158 741 649 167 742 670 169 723 676 159 692 650 167 743 670 158 744 649 159 686 650 161 695 655 167 743 670 156 681 641 158 757 649 155 758 637 155 761 637 158 762 649 173 738 688 174 767 689 155 670 637 173 768 688 155 670 637 174 767 689 154 669 633 175 771 727 154 772 633 174 767 689 153 658 626 154 668 633 175 771 727 8 776 20 153 658 626 175 777 727 8 780 20 175 781 727 176 782 737 174 767 689 176 786 737 175 787 727 176 786 737 174 767 689 172 731 687 176 791 737 172 792 687 177 793 746 177 797 746 172 728 687 170 798 681 178 803 756 177 804 746 170 730 681 177 804 746 178 803 756 179 805 757 179 805 757 178 803 756 180 809 762 180 811 762 178 803 756 181 812 766 178 815 756 182 816 770 181 812 766 182 816 770 183 819 774 181 820 766 181 820 766 183 823 774 184 824 778 183 827 774 185 828 782 184 824 778 183 819 774 69 829 209 185 830 782 69 833 209 68 234 208 185 830 782 185 828 782 68 234 208 186 835 789 186 835 789 68 234 208 70 245 219 186 838 789 70 248 219 187 839 796 187 839 796 70 248 219 71 250 223 187 839 796 71 250 223 188 842 803 188 842 803 71 254 223 189 844 807 71 254 223 72 846 227 189 844 807 189 844 807 72 848 227 190 849 814 73 852 231 190 849 814 72 255 227 190 849 814 73 852 231 191 853 818 74 263 235 191 856 818 73 852 231 191 856 818 74 263 235 192 857 822 75 860 239 192 857 822 74 861 235 192 857 822 75 860 239 77 271 249 79 283 255 192 857 822 77 271 249 192 857 822 79 283 255 193 864 830 81 284 261 193 866 830 79 283 255 193 866 830 81 284 261 194 867 835 83 289 267 194 867 835 81 870 261 194 867 835 83 289 267 195 871 840 85 874 273 195 871 840 83 875 267 195 871 840 85 874 273 196 876 845 197 880 850 196 881 845 85 882 273 197 883 850 136 570 532 196 884 845 135 566 528 136 885 532 197 886 850 136 570 532 195 871 840 196 876 845 195 871 840 136 570 532 198 891 858 136 570 532 199 893 862 198 894 858 198 894 858 199 897 862 200 898 866 199 893 862 201 901 870 200 902 866 201 905 870 202 906 874 200 898 866 202 906 874 201 905 870 203 907 875 202 910 874 194 911 835 200 912 866 194 911 835 202 910 874 193 864 830 202 906 874 192 915 822 193 864 830 192 915 822 202 906 874 191 916 818 203 907 875 191 916 818 202 919 874 191 916 818 203 907 875 190 849 814 204 922 890 190 923 814 203 907 875 189 844 807 190 923 814 204 922 890 204 926 890 203 927 875 201 928 870 204 932 890 201 901 870 205 933 901 199 893 862 205 936 901 201 901 870 205 933 901 199 938 862 206 939 908 138 942 537 206 943 908 199 893 862 138 944 537 207 945 912 206 939 908 208 948 916 206 949 908 207 945 912 208 952 916 205 933 901 206 943 908 208 953 916 204 954 890 205 933 901 209 955 920 204 932 890 208 953 916 209 955 920 189 844 807 204 932 890 209 955 920 188 961 803 189 962 807 209 955 920 210 965 933 188 842 803 210 965 933 187 839 796 188 842 803 211 967 937 187 839 796 210 965 933 212 968 938 187 839 796 211 969 937 212 970 938 186 838 789 187 839 796 212 968 938 185 830 782 186 835 789 184 824 778 185 973 782 212 968 938 213 976 951 184 824 778 212 970 938 213 978 951 214 979 955 184 824 778 180 982 762 184 824 778 214 979 955 184 824 778 180 982 762 181 812 766 214 984 955 215 985 963 180 986 762 215 985 963 214 984 955 216 987 964 179 805 757 180 991 762 215 992 963 217 995 971 179 805 757 215 996 963 218 997 972 179 998 757 217 999 971 179 998 757 218 997 972 177 804 746 218 1002 972 176 1003 737 177 793 746 8 30 20 176 786 737 218 1004 972 8 1008 20 218 1004 972 217 1009 971 219 1015 989 217 995 971 215 992 963 8 1016 20 217 1009 971 219 1015 989 216 1019 964 219 1015 989 215 1020 963 219 1015 989 216 1019 964 220 1021 996 220 1025 996 216 1026 964 221 1027 1001 221 1031 1001 216 1026 964 213 976 951 213 976 951 216 987 964 214 984 955 213 1034 951 222 1035 1012 221 1027 1001 222 1035 1012 213 1034 951 223 1036 1013 213 976 951 212 970 938 223 1040 1013 223 1036 1013 212 970 938 211 969 937 223 1044 1013 211 1045 937 210 965 933 223 1048 1013 210 1049 933 224 1050 1035 224 1054 1035 210 965 933 225 1055 1039 210 965 933 209 955 920 225 1055 1039 225 1058 1039 209 955 920 208 953 916 225 1058 1039 208 953 916 226 1060 1049 226 1062 1049 208 953 916 227 1063 1053 227 1066 1053 208 952 916 207 945 912 228 1068 1060 227 1066 1053 207 945 912 227 1066 1053 228 1068 1060 229 1069 1061 143 1072 545 229 1069 1061 228 1073 1060 143 1076 545 230 1077 1069 229 1069 1061 231 1080 1073 229 1069 1061 230 1077 1069 229 1069 1061 231 1080 1073 227 1081 1053 227 1084 1053 231 1080 1073 226 1085 1049 231 1080 1073 232 1088 1080 226 1085 1049 232 1090 1080 225 1055 1039 226 1091 1049 233 1092 1084 225 1055 1039 232 1093 1080 224 1054 1035 225 1098 1039 233 1099 1084 234 1102 1094 224 1054 1035 233 1099 1084 224 1054 1035 234 1102 1094 235 1103 1095 234 1102 1094 236 1106 1099 235 1107 1095 236 1110 1099 237 1111 1103 235 1107 1095 236 1110 1099 8 1112 20 237 1113 1103 238 1114 1104 8 30 20 236 1110 1099 239 1115 1105 8 1116 20 238 1117 1104 237 1111 1103 8 1125 20 240 1126 1115 240 1130 1115 8 1131 20 241 1132 1119 8 1112 20 220 1136 996 241 1137 1119 8 776 20 219 1015 989 220 1021 996 241 1137 1119 220 1021 996 221 1027 1001 222 1140 1012 241 1132 1119 221 1027 1001 240 1130 1115 241 1142 1119 222 1035 1012 235 1107 1095 240 1130 1115 222 1035 1012 235 1107 1095 237 1111 1103 240 1126 1115 224 1054 1035 235 1107 1095 222 1035 1012 222 1035 1012 223 1040 1013 224 1054 1035 234 1144 1094 238 1145 1104 236 1110 1099 242 1148 1157 238 1149 1104 234 1144 1094 242 1150 1158 243 1151 1159 238 1149 1160 243 1155 1164 239 1115 1105 238 1114 1104 244 1156 1165 239 1157 1105 243 1158 1164 8 1163 20 239 1115 1105 244 1164 1165 245 1167 1175 8 1168 20 244 1169 1165 245 1167 1175 246 1170 1176 8 1171 20 246 1175 1176 247 1176 1180 8 656 20 247 1179 1180 6 18 15 8 656 20 2 1181 2 6 22 15 247 1182 1180 0 1187 0 2 2 2 247 1176 1180 147 603 555 0 0 0 247 1189 1180 147 603 555 247 1179 1180 246 1191 1176 147 603 555 246 1170 1176 245 1193 1175 248 1195 1205 147 603 555 245 1167 1175 249 1197 1209 147 1198 555 248 1199 1205 249 1200 1209 145 1201 550 147 603 555 145 1201 550 249 1204 1209 143 1205 545 249 1200 1209 230 1077 1069 143 597 545 249 1208 1209 250 1209 1217 230 1077 1069 249 1210 1209 248 1195 1205 250 1209 1217 248 1195 1205 245 1167 1175 250 1209 1217 250 1213 1217 245 1167 1175 244 1169 1165 250 1209 1217 244 1217 1165 243 1218 1164 230 1221 1069 250 1209 1217 243 1222 1164 230 1221 1069 243 1226 1164 231 1080 1073 231 1228 1073 243 1229 1164 232 1230 1080 243 1218 1164 242 1148 1157 232 1234 1080 232 1088 1080 242 1237 1157 233 1238 1084 242 1237 1157 234 1144 1094 233 1099 1084 143 1247 545 228 1073 1060 140 579 539 140 1250 539 228 1251 1060 138 944 537 228 1073 1060 207 1254 912 138 944 537 138 575 537 199 1261 862 137 571 533 199 1263 862 136 570 532 137 571 533 132 1266 522 139 1267 538 134 1268 527 139 1267 538 132 1266 522 142 583 541 131 556 518 142 1273 541 132 560 522 251 1275 1302 142 1273 541 131 1276 518 251 1279 1302 252 1280 1306 142 1273 541 252 1283 1306 141 581 540 142 1284 541 252 1285 1306 146 1286 551 141 587 540 146 1290 551 144 590 546 141 1291 540 146 1286 551 148 608 560 3 3 3 148 1297 560 146 1298 551 252 1280 1306 123 1301 479 148 608 560 252 1280 1306 148 608 560 123 1303 479 121 507 474 123 1301 479 251 1275 1302 122 1306 478 123 510 479 252 1280 1306 251 1307 1302 251 1310 1302 124 1311 483 122 1312 478 124 522 483 251 1313 1302 131 556 518 148 608 560 121 1319 474 149 618 564 120 1321 464 149 1322 564 121 1323 474 120 1327 464 121 507 474 119 503 463 195 871 840 200 898 866 194 867 835 200 898 866 195 871 840 198 1333 858 197 1338 850 85 874 273 87 1339 279 88 304 284 197 1342 850 87 1343 279 197 1346 850 88 304 284 253 1347 1384 88 304 284 129 549 508 253 1350 1384 129 549 508 88 304 284 128 1351 503 89 335 285 128 541 503 88 304 284 128 541 503 89 335 285 90 336 310 129 1354 508 133 565 523 253 1350 1384 133 565 523 129 1354 508 130 1355 513 133 561 523 197 1357 850 253 1350 1384 135 566 528 197 1359 850 133 1360 523 254 1365 1409 69 829 209 183 819 774 254 1366 1409 165 1367 665 69 1368 209 165 1372 665 255 1373 1413 69 1374 209 69 829 209 255 1378 1413 51 235 153 255 1380 1413 48 168 144 51 170 153 163 1381 660 48 160 144 255 1378 1413 46 1384 133 48 168 144 163 1381 660 162 1386 656 46 1384 133 163 1387 660 46 1384 133 162 1386 656 45 147 132 37 124 112 45 147 132 162 1390 656 37 124 112 38 141 116 45 147 132 38 135 116 42 1392 126 45 1393 132 256 1401 1449 37 124 112 162 694 656 34 1402 103 37 124 112 256 1403 1449 160 685 651 256 1401 1449 162 694 656 32 110 98 256 1407 1449 160 693 651 32 110 98 34 1409 103 256 1410 1449 31 687 97 32 1413 98 160 685 651 27 98 81 31 687 97 157 678 645 31 687 97 27 98 81 29 109 89 163 699 660 255 1378 1413 165 1418 665 166 1420 669 165 1421 665 254 1365 1409 166 1420 669 254 1427 1409 182 816 770 182 816 770 254 1365 1409 183 819 774 168 1429 675 166 1430 669 182 816 770 168 1429 675 182 816 770 178 1433 756 170 1435 681 168 1429 675 178 815 756 150 619 1507 17 626 1508 12 1438 1509 257 1440 1513 150 619 568 12 1441 36 257 1442 1513 5 1443 11 150 624 568 5 1446 11 4 13 7 150 619 568 5 1448 11 257 1449 1513 7 21 16 7 21 16 257 1440 1513 9 1452 24 9 1455 24 257 1456 1513 12 1441 36 9 33 24 12 1460 36 10 34 28 18 1462 1538 120 1321 1539 20 1463 1540 20 491 62 117 489 455 258 1467 1546 117 481 455 115 475 449 258 1467 1546 258 1469 1546 115 1470 449 259 1471 1553 113 470 443 259 1475 1553 115 1470 449 259 1475 1553 113 470 443 260 1476 1557 110 1479 425 260 1480 1557 113 470 443 260 1480 1557 110 1479 425 108 1481 419 108 441 419 261 1485 1566 260 1486 1557 261 1485 1566 108 441 419 107 435 414 262 1489 1571 260 1486 1557 261 1485 1566 260 1486 1557 262 1489 1571 259 1475 1553 258 1467 1546 259 1475 1553 262 1491 1571 258 1493 1546 262 1491 1571 263 1494 1579 262 1491 1571 264 1497 1583 263 1498 1579 261 1485 1566 264 1499 1583 262 1491 1571 264 1499 1583 261 1485 1566 265 1500 1584 107 435 414 265 1500 1584 261 1485 1566 265 1500 1584 107 435 414 106 429 409 36 1503 108 265 1500 1584 106 429 409 265 1500 1584 36 1503 108 33 113 102 30 104 93 265 1500 1584 33 113 102 265 1500 1584 30 104 93 264 1499 1583 28 1505 85 264 1497 1583 30 104 93 263 1498 1579 264 1497 1583 28 1506 85 263 1511 1579 28 99 85 26 1512 80 263 1498 1579 26 89 80 21 75 63 21 1515 63 26 1516 80 22 1517 67 263 1498 1621 21 75 1622 20 74 1623 20 491 1627 258 1467 1628 263 1498 1629 51 235 153 52 223 157 67 231 203 64 213 193 52 174 157 50 179 149 64 217 193 50 165 149 54 180 163 62 209 188 64 217 193 54 180 163 56 186 169 62 209 188 54 180 163 62 209 188 56 186 169 58 1524 178

+
+ + + + +

2 4 4 1 5 5 0 6 6 2 10 8 4 11 9 1 12 10 2 10 12 5 15 13 4 16 14 6 23 17 7 24 18 5 25 19 8 27 21 7 24 22 6 28 23 8 31 25 9 32 26 7 24 27 8 36 29 10 37 30 9 38 31 11 41 33 10 37 34 8 42 35 11 46 37 12 47 38 10 48 39 11 41 41 13 51 42 12 52 43 15 57 46 13 58 47 14 59 48 19 71 59 20 72 60 18 73 61 19 71 64 21 76 65 20 77 66 19 71 68 22 79 69 21 76 70 23 82 72 22 83 73 19 71 74 25 87 77 22 79 78 24 88 79 27 93 82 26 94 83 25 95 84 27 93 86 28 97 87 26 94 88 29 101 90 28 102 91 27 103 92 29 106 94 30 107 95 28 102 96 32 111 99 30 107 100 31 112 101 34 116 104 33 117 105 32 118 106 34 122 109 35 123 110 33 117 111 37 125 113 35 123 114 34 116 115 38 131 119 39 132 120 35 123 121 38 136 123 41 137 124 39 138 125 42 145 129 43 146 130 41 137 131 46 149 134 43 146 135 45 150 136 43 155 138 47 156 139 44 157 140 46 149 141 47 158 142 43 155 143 48 161 145 47 158 146 46 162 147 48 166 150 49 167 151 47 156 152 51 171 154 49 172 155 48 173 156 50 176 158 49 172 159 52 177 160 50 176 161 47 156 152 49 167 151 47 158 164 50 181 165 53 182 166 54 183 167 53 182 166 50 181 165 53 187 170 54 183 171 55 188 172 56 189 173 55 188 172 54 183 171 55 192 175 56 189 176 57 193 177 57 202 181 59 203 182 60 204 183 58 205 184 59 206 185 57 207 186 62 210 189 61 211 190 58 205 191 64 214 194 63 215 195 62 210 196 63 215 198 64 219 199 65 220 200 52 221 201 65 220 200 64 219 199 65 226 204 52 227 205 66 228 206 67 229 207 66 228 206 52 227 205 69 237 210 67 229 211 51 238 212 68 239 213 67 240 214 69 241 215 66 242 216 67 240 217 68 243 218 70 246 220 66 247 221 68 239 222 71 251 224 66 252 225 70 253 226 72 256 228 66 228 229 71 257 230 73 260 232 65 261 233 72 256 234 74 264 236 63 265 237 73 260 238 63 215 240 74 264 241 61 211 242 75 267 243 61 211 242 74 264 241 61 211 244 75 267 245 59 206 246 60 204 247 59 206 246 75 267 245 60 272 250 75 273 251 76 274 252 77 275 253 76 274 252 75 273 251 76 279 256 77 275 257 78 280 258 79 281 259 78 280 258 77 275 257 78 280 262 79 285 263 80 286 264 81 287 265 80 286 264 79 285 263 80 286 268 81 287 269 82 290 270 83 291 271 82 290 270 81 287 269 82 290 274 83 295 275 84 296 276 85 297 277 84 296 276 83 295 275 84 301 280 85 297 281 86 302 282 87 303 283 86 302 282 85 297 281 89 307 286 86 302 287 88 308 288 57 313 289 84 296 290 86 314 291 57 317 292 82 318 293 84 296 294 57 320 295 80 286 296 82 290 297 57 324 298 78 325 299 80 326 300 57 328 301 76 279 302 78 280 303 57 331 304 60 332 305 76 274 306 89 307 307 57 333 308 86 334 309 90 337 311 57 202 312 89 338 313 91 341 315 57 342 316 90 337 317 92 346 319 57 347 320 91 348 321 93 351 323 57 352 324 92 346 325 94 356 327 57 357 328 93 358 329 94 362 331 95 363 332 57 364 333 97 369 336 95 370 337 96 371 338 99 375 341 98 376 342 97 377 343 101 382 346 100 383 347 99 384 348 40 386 350 102 387 351 101 382 352 39 132 354 103 390 355 40 391 356 104 397 359 105 398 360 57 399 361 41 403 362 44 404 363 104 397 364 44 405 365 41 137 131 43 146 130 105 406 366 104 397 364 44 404 363 105 406 367 53 409 368 55 410 369 44 157 370 53 187 371 105 406 372 44 157 373 47 156 374 53 409 375 105 406 376 55 410 377 57 412 378 39 132 379 41 414 380 104 397 381 39 132 382 104 397 383 103 415 384 103 415 385 104 397 386 57 416 387 102 387 388 103 390 389 57 418 390 102 387 391 40 391 356 103 390 355 100 421 392 102 387 393 57 422 394 100 383 395 101 382 352 102 387 351 98 376 396 100 383 397 57 424 398 98 425 399 99 384 348 100 383 347 95 370 400 98 425 401 57 427 402 95 363 403 97 377 343 98 376 342 40 386 404 35 123 121 39 132 120 35 123 405 40 386 406 36 428 407 101 382 408 36 428 407 40 386 406 36 432 410 101 382 411 106 433 412 99 434 413 106 433 412 101 382 411 106 438 415 99 439 416 107 440 417 97 377 418 107 440 417 99 439 416 107 440 420 97 377 421 108 443 422 96 444 423 108 443 422 97 377 421 96 371 426 109 448 427 108 449 428 94 453 429 93 454 430 96 371 431 109 455 432 96 371 431 93 454 430 93 459 434 92 346 435 109 460 436 111 461 437 109 460 436 92 346 435 109 466 439 111 467 440 110 468 441 112 469 442 110 468 441 111 467 440 110 472 445 112 469 446 113 473 447 114 474 448 113 473 447 112 469 446 113 473 451 114 478 452 115 479 453 116 480 454 115 479 453 114 478 452 115 479 456 116 480 457 117 482 458 118 486 460 117 487 461 116 488 462 20 495 465 119 496 466 120 497 467 117 487 468 119 498 469 20 495 470 118 486 471 119 499 472 117 500 473 119 504 475 118 505 476 121 506 477 118 511 480 122 512 481 121 513 482 116 517 484 124 518 485 118 519 486 114 524 488 125 525 489 116 526 490 112 530 492 126 531 493 114 532 494 111 461 496 127 536 497 112 537 498 92 539 499 91 341 500 111 467 501 127 536 502 111 467 501 91 341 500 91 341 504 90 337 505 127 542 506 128 543 507 127 542 506 90 337 505 127 542 509 128 546 510 126 531 511 129 547 512 126 531 511 128 546 510 126 552 514 129 553 515 125 554 516 130 555 517 125 554 516 129 553 515 130 558 519 131 559 520 125 525 521 133 562 524 132 563 525 130 558 526 135 567 529 134 568 530 133 569 531 137 572 534 134 568 535 136 573 536 140 584 542 141 585 543 139 586 544 143 592 547 144 593 548 141 594 549 145 601 552 3 602 553 144 593 554 0 605 556 3 606 557 147 607 558 3 606 559 0 6 6 1 5 5 4 16 561 148 613 562 1 614 563 4 16 565 149 616 566 148 617 567 150 620 569 120 497 570 149 621 571 150 620 572 18 623 573 120 497 574 17 627 578 18 628 579 150 629 580 17 630 581 16 631 582 18 632 583 12 47 584 16 633 585 17 630 586 13 51 587 16 631 588 12 634 589 15 635 590 16 631 591 13 51 592 23 82 593 19 638 594 16 631 595 16 633 596 19 639 597 18 640 598 15 641 599 23 82 600 16 631 601 24 644 603 23 82 604 151 645 605 23 646 606 24 88 79 22 79 78 15 635 607 151 645 605 23 82 604 151 645 612 15 649 613 152 650 614 14 59 615 152 650 614 15 649 613 152 650 617 14 652 618 8 653 619 8 655 620 14 59 621 11 46 622 11 41 623 14 652 624 13 51 625 153 659 627 152 660 628 8 661 629 153 659 630 151 663 631 152 650 632 154 666 634 151 663 635 153 667 636 155 671 638 24 644 639 154 672 640 156 676 642 25 95 643 155 677 644 156 676 646 157 679 647 25 87 648 159 688 652 160 689 653 157 679 654 161 696 657 162 697 658 160 698 659 164 703 662 163 704 663 161 705 664 164 703 666 165 707 667 163 704 668 164 703 671 161 696 672 166 712 673 167 713 674 166 712 673 161 696 672 166 718 677 167 719 678 168 720 679 169 721 680 168 720 679 167 719 678 168 720 683 169 725 684 170 726 685 171 727 686 170 726 685 169 725 684 171 734 690 173 735 691 172 736 692 171 734 693 169 721 694 158 740 695 158 745 696 167 746 697 159 747 698 169 725 699 167 748 700 158 749 701 167 746 702 161 696 703 159 688 704 159 747 705 161 750 706 160 751 707 158 752 708 159 753 709 157 754 710 156 755 711 158 756 712 157 679 713 155 759 714 158 760 715 156 755 716 173 763 717 158 764 718 155 765 719 173 763 720 171 734 721 158 766 722 173 769 723 155 671 724 174 770 725 154 672 726 174 770 725 155 671 724 174 770 728 154 773 729 175 774 730 175 774 731 154 775 732 153 659 733 175 778 734 153 659 735 8 779 736 176 783 738 175 784 739 8 785 740 172 736 741 174 770 742 176 788 743 174 789 744 172 736 692 173 735 691 175 790 745 176 788 743 174 770 742 177 794 747 172 795 748 176 796 749 170 799 750 172 800 751 177 801 752 170 802 753 171 734 754 172 800 755 170 802 758 177 806 759 178 807 760 179 808 761 178 807 760 177 806 759 180 810 763 178 807 764 179 808 765 181 813 767 178 807 768 180 814 769 181 813 771 182 817 772 178 818 773 181 821 775 183 822 776 182 817 777 184 825 779 183 826 780 181 821 781 185 831 783 69 832 784 183 822 785 185 831 786 68 239 787 69 834 788 186 836 790 68 239 791 185 837 792 70 246 793 68 239 794 186 836 795 187 840 797 70 253 798 186 841 799 71 251 800 70 253 801 187 840 802 188 843 804 71 251 805 187 840 806 189 845 808 71 257 809 188 843 810 189 845 811 72 847 812 71 257 813 190 850 815 72 851 816 189 845 817 191 854 819 73 855 820 190 850 821 192 858 823 74 264 824 191 859 825 74 862 826 192 858 827 75 863 828 77 275 829 75 863 828 192 858 827 77 275 831 192 858 832 79 285 833 193 865 834 79 285 833 192 858 832 79 285 836 193 868 837 81 287 838 194 869 839 81 287 838 193 868 837 81 872 841 194 869 842 83 291 843 195 873 844 83 291 843 194 869 842 83 877 846 195 873 847 85 878 848 196 879 849 85 878 848 195 873 847 135 567 851 136 573 536 134 568 535 197 887 852 136 888 853 135 567 854 196 889 855 136 573 856 197 890 857 198 892 859 136 573 860 195 873 861 198 895 863 199 896 864 136 573 865 200 899 867 199 900 868 198 895 869 200 903 871 201 904 872 199 896 873 200 899 876 202 908 877 201 909 878 193 865 879 202 913 880 194 914 881 193 865 882 192 917 883 202 908 884 191 918 885 202 908 884 192 917 883 202 920 886 191 918 887 203 921 888 190 850 889 203 921 888 191 918 887 204 924 891 190 925 892 189 845 893 203 921 894 190 925 895 204 924 896 201 929 897 203 930 898 204 931 899 203 921 900 201 909 878 202 908 877 205 934 902 201 904 903 204 935 904 201 904 905 205 937 906 199 896 907 206 940 909 199 941 910 205 934 911 206 940 913 207 946 914 138 947 915 207 946 917 206 950 918 208 951 919 208 956 921 204 935 922 209 957 923 205 934 924 204 958 925 208 956 926 206 959 927 205 934 928 208 960 929 189 963 930 188 964 931 209 957 932 188 843 934 210 966 935 209 957 936 187 840 939 186 841 940 212 971 941 186 836 942 185 831 943 212 972 944 212 972 945 185 974 946 184 825 947 184 825 948 185 837 949 183 975 950 212 971 952 184 825 953 213 977 954 184 825 956 214 980 957 213 981 958 181 813 959 180 983 960 184 825 961 214 980 962 184 825 961 180 983 960 180 988 965 215 989 966 214 990 967 215 993 968 180 994 969 179 808 970 177 806 973 218 1000 974 179 1001 975 218 1005 976 176 788 977 8 31 978 177 794 979 176 1006 980 218 1007 981 217 1010 982 218 1005 983 8 1011 984 217 1012 985 179 1001 975 218 1000 974 215 1013 986 179 808 987 217 1014 988 219 1017 990 217 1010 991 8 1018 992 215 993 993 217 1014 994 219 1017 995 215 1022 997 219 1017 998 216 1023 999 220 1024 1000 216 1023 999 219 1017 998 221 1028 1002 216 1029 1003 220 1030 1004 213 977 1005 216 1029 1006 221 1032 1007 214 990 1008 216 1033 1009 213 977 1010 216 1033 1011 214 990 967 215 989 966 223 1037 1014 213 1038 1015 222 1039 1016 223 1041 1017 212 971 1018 213 977 1019 211 1042 1020 212 971 1021 223 1037 1022 211 1042 1023 187 840 1024 212 972 1025 210 966 1026 187 840 1027 211 1043 1028 188 843 1029 187 840 1030 210 966 1031 210 966 1032 211 1046 1033 223 1047 1034 224 1051 1036 210 1052 1037 223 1053 1038 225 1056 1040 210 966 1041 224 1057 1042 225 1056 1043 209 957 1044 210 966 1045 208 956 1046 209 957 1047 225 1059 1048 226 1061 1050 208 956 1051 225 1059 1052 227 1064 1054 208 956 1055 226 1065 1056 207 946 1057 208 960 1058 227 1067 1059 207 946 1062 227 1067 1063 228 1070 1064 229 1071 1065 228 1070 1064 227 1067 1063 228 1074 1066 229 1071 1067 143 1075 1068 229 1071 1070 230 1078 1071 143 1079 1072 227 1082 1074 231 1083 1075 229 1071 1076 226 1086 1077 231 1083 1078 227 1087 1079 226 1086 1081 232 1089 1082 231 1083 1083 232 1094 1085 225 1056 1086 233 1095 1087 226 1096 1088 225 1056 1089 232 1097 1090 233 1100 1091 225 1101 1092 224 1057 1093 235 1104 1096 234 1105 1097 224 1057 1098 235 1108 1100 236 1109 1101 234 1105 1102 238 1118 1106 8 1119 1107 239 1120 1108 236 1121 1109 8 31 1110 238 1122 1111 237 1123 1112 8 1124 1113 236 1121 1114 240 1127 1116 8 1128 1117 237 1129 1118 241 1133 1120 8 1134 1121 240 1135 1122 220 1024 1123 219 1017 1124 8 779 1125 241 1138 1126 220 1139 1127 8 1124 1128 221 1028 1129 220 1024 1130 241 1138 1131 221 1028 1132 241 1133 1133 222 1141 1134 222 1039 1135 241 1143 1136 240 1135 1137 222 1039 1138 240 1135 1139 235 1108 1140 235 1108 1141 237 1129 1142 236 1121 1143 240 1127 1144 237 1129 1145 235 1108 1146 222 1039 1147 235 1108 1148 224 1057 1149 224 1057 1150 223 1041 1151 222 1039 1152 221 1028 1153 222 1039 1016 213 1038 1015 236 1121 1154 238 1146 1155 234 1147 1156 238 1152 1161 243 1153 1162 242 1154 1163 243 1159 1166 239 1160 1167 244 1161 1168 238 1122 1169 239 1120 1170 243 1162 1171 244 1165 1172 239 1120 1173 8 1166 1174 8 1172 1177 246 1173 1178 245 1174 1179 8 661 1181 247 1177 1182 246 1178 1183 8 661 1184 6 28 1185 247 1180 1186 2 1183 1187 6 28 1188 5 1184 1189 247 1185 1190 6 23 1191 2 1186 1192 247 1177 1193 2 4 1194 0 1188 1195 247 1190 1196 0 6 1197 147 607 1198 246 1192 1199 247 1180 1200 147 607 1201 245 1194 1202 246 1173 1203 147 607 1204 245 1174 1206 147 607 1207 248 1196 1208 147 607 1210 145 1202 1211 249 1203 1212 145 601 1213 147 607 558 3 606 557 143 1206 1214 249 1207 1215 145 1202 1216 250 1211 1218 248 1196 1219 249 1212 1220 250 1211 1221 245 1174 1222 248 1196 1223 244 1214 1224 245 1174 1225 250 1215 1226 244 1214 1227 8 1216 1228 245 1174 1229 243 1219 1230 244 1220 1231 250 1211 1232 230 1078 1233 250 1211 1234 249 1223 1235 243 1224 1236 250 1211 1237 230 1225 1238 231 1083 1239 243 1227 1240 230 1225 1241 232 1231 1242 243 1232 1243 231 1233 1244 232 1235 1245 242 1236 1246 243 1219 1247 233 1239 1248 242 1240 1249 232 1089 1250 233 1100 1251 234 1147 1252 242 1240 1253 233 1100 1254 224 1057 1098 234 1105 1097 234 1147 1255 238 1152 1256 242 1236 1257 230 1078 1258 229 1071 1076 231 1083 1075 143 1241 1259 230 1078 1260 249 1203 1261 248 1242 1262 147 1243 1263 249 1244 1264 143 1241 1265 145 1245 1266 144 1246 1267 140 1248 1268 228 1074 1269 143 1249 1270 138 947 1271 228 1252 1272 140 1253 1273 138 947 1274 207 1255 1275 228 1074 1276 138 1256 1277 140 1248 1278 139 1257 1279 134 1258 1280 138 1259 1281 139 1257 1282 137 572 1283 138 1256 1284 134 1260 1285 137 572 1286 199 1262 1287 138 1256 1288 137 572 1289 136 573 1290 199 1264 1291 199 896 1292 206 959 1293 138 1265 1294 134 1269 1295 139 1270 1296 132 1271 1297 142 1272 1298 132 1271 1297 139 1270 1296 132 563 1299 142 1274 1300 131 559 1301 131 1277 1303 142 1274 1304 251 1278 1305 142 1274 1307 252 1281 1308 251 1282 1309 141 1287 1310 146 1288 1311 252 1289 1312 146 1292 1313 144 593 554 3 602 553 141 1293 1314 144 593 1315 146 1294 1316 3 606 1317 148 617 1318 146 1288 1319 3 1295 1320 1 1296 1321 148 617 1322 252 1281 1323 146 1299 1324 148 1300 1325 252 1281 1326 148 617 1327 123 1302 1328 121 513 1329 123 1304 1330 148 617 1331 123 1305 1332 121 513 482 122 512 481 251 1308 1333 252 1281 1334 123 1305 1335 122 1309 1336 251 1278 1337 123 1302 1338 131 559 1339 251 1314 1340 124 1315 1341 122 1316 1342 124 1317 1343 251 1318 1344 122 512 1345 118 519 486 124 518 485 124 1315 1346 125 525 521 131 559 520 124 1315 1347 116 526 490 125 525 489 149 621 1348 121 1320 1349 148 617 1350 121 1324 1351 149 1325 1352 120 1326 1353 119 504 1354 121 513 1355 120 1328 1356 142 1329 1357 141 585 1358 252 1330 1359 142 1272 1360 139 586 544 141 585 543 131 559 1361 130 558 526 132 563 525 132 563 1362 133 569 531 134 568 530 140 1248 1363 143 1331 1364 141 1287 1365 204 935 1366 189 845 1367 209 957 1368 200 1332 1369 194 914 881 202 913 880 194 869 1370 200 899 1371 195 873 1372 198 1334 1373 195 873 1372 200 899 1371 196 879 1374 195 873 861 136 573 860 85 1335 1375 196 1336 1376 197 1337 1377 87 1340 1378 85 878 1379 197 1341 1380 87 1344 1381 197 1345 1382 88 308 1383 253 1348 1385 88 308 1386 197 1349 1387 128 1352 1388 88 308 1389 129 553 1390 90 337 1391 89 338 1392 128 543 1393 88 308 1394 128 543 1393 89 338 1392 253 1353 1395 129 553 1390 88 308 1389 253 1353 1396 133 569 1397 129 1356 1398 253 1353 1399 197 1358 1400 133 562 1401 133 1361 1402 197 1362 1403 135 567 1404 130 1363 1405 129 1356 1398 133 569 1397 87 1364 1406 88 308 288 86 302 287 73 855 1407 191 859 825 74 264 824 72 256 1408 190 850 821 73 855 820 69 1369 1410 165 1370 1411 254 1371 1412 69 1375 1414 255 1376 1415 165 1377 1416 51 238 1417 255 1379 1418 69 832 1419 255 1379 1420 48 161 1421 163 1382 1422 51 171 1423 48 173 1424 255 1383 1425 163 1382 1426 48 173 1427 46 1385 1428 163 1388 1429 46 1385 1430 162 1389 1431 45 150 1432 162 1389 1431 46 1385 1430 45 150 1433 38 1391 1434 37 125 1435 45 1394 1436 42 1395 1437 38 136 1438 42 145 1439 45 150 136 43 146 135 38 1391 1440 42 1396 1441 41 1397 1442 37 125 1443 38 1398 1444 35 1399 1445 162 1400 1446 45 150 1447 37 125 1448 256 1404 1450 37 125 1451 34 1405 1452 162 697 1453 37 125 1454 256 1406 1455 160 698 1456 256 1408 1457 32 111 1458 162 697 1459 256 1406 1460 160 689 1461 256 1411 1462 34 1412 1463 32 111 1464 160 689 1465 32 1414 1466 31 1415 1467 31 1415 1468 157 679 654 160 689 653 157 679 1469 31 1415 1470 27 103 1471 29 1416 1472 27 103 1471 31 1415 1470 29 1416 1473 31 112 101 30 107 100 27 93 1474 25 87 648 157 679 647 162 1417 1475 161 705 664 163 704 663 165 1419 1476 255 1379 1477 163 704 1478 254 1422 1479 165 1423 1480 166 1424 1481 165 1425 1482 164 703 1483 166 1426 1484 182 817 1485 254 1428 1486 166 1424 1487 183 822 1488 254 1422 1489 182 817 1490 183 822 1491 69 832 1492 254 1422 1493 182 817 1494 166 1431 1495 168 1432 1496 178 1434 1497 182 817 1498 168 1432 1499 178 818 1500 168 1432 1501 170 1436 1502 24 1437 1503 155 677 644 25 95 643 151 645 1504 154 775 1505 24 644 1506 12 1439 1510 17 627 1511 150 620 1512 150 629 1514 5 1444 1515 257 1445 1516 150 620 1517 4 16 1518 5 1447 1519 4 16 1520 150 620 1521 149 621 1522 7 24 1523 257 1450 1524 5 1451 1525 9 1453 1526 257 1454 1527 7 24 1528 12 1457 1529 257 1458 1530 9 1459 1531 12 1457 1532 150 620 1533 257 1454 1534 10 37 1535 12 1461 1536 9 38 1537 20 1464 1541 120 1326 1542 18 1465 1543 125 525 1544 114 532 494 126 531 493 126 1466 1545 112 537 498 127 536 497 258 1468 1547 117 500 1548 20 495 1549 258 1468 1550 115 479 1551 117 482 1552 259 1472 1554 115 1473 1555 258 1474 1556 260 1477 1558 113 473 1559 259 1478 1560 108 1482 1561 110 1483 1562 260 1484 1563 110 472 1564 108 449 428 109 448 427 113 473 1565 260 1484 1563 110 1483 1562 107 440 1567 108 443 1568 261 1487 1569 260 1488 1570 261 1487 1569 108 443 1568 261 1487 1572 260 1488 1573 262 1490 1574 259 1478 1575 262 1490 1574 260 1488 1573 262 1492 1576 259 1478 1577 258 1468 1578 263 1495 1580 262 1492 1581 258 1496 1582 265 1501 1585 261 1487 1586 264 1502 1587 106 433 1588 107 440 1589 265 1501 1590 261 1487 1591 265 1501 1590 107 440 1589 33 117 1592 36 1504 1593 265 1501 1594 36 428 1595 33 117 111 35 123 110 106 433 1596 265 1501 1594 36 1504 1593 33 117 1597 265 1501 1598 30 107 1599 264 1502 1600 30 107 1599 265 1501 1598 28 1507 1601 264 1508 1602 263 1509 1603 30 107 1604 264 1508 1605 28 1510 1606 263 1509 1607 264 1508 1608 262 1492 1609 262 1492 1610 264 1502 1587 261 1487 1586 26 1513 1611 28 102 1612 263 1514 1613 21 76 1614 26 94 1615 263 1509 1616 22 1518 1617 26 1519 1618 21 1520 1619 22 1521 1620 25 95 84 26 94 83 20 77 1624 21 76 1625 263 1509 1626 263 1509 1630 258 1468 1631 20 495 1632 30 107 1633 32 118 106 33 117 105 115 1473 1634 259 1478 1560 113 473 1559 94 1522 1635 96 371 338 95 370 337 59 203 1636 58 205 191 61 211 190 61 211 1637 62 210 196 63 215 195 65 261 1638 73 260 238 63 265 237 66 247 1639 72 256 234 65 261 233 51 171 1640 52 1523 1641 49 172 1642 67 240 1643 52 227 1644 51 238 1645 50 181 1646 52 1523 1647 64 214 1648 54 183 1649 50 176 1650 64 219 1651 54 183 1652 64 219 1653 62 210 1654 54 183 1655 62 210 1656 56 189 1657 58 1525 1658 56 189 1657 62 210 1656 56 1526 1659 58 205 1660 57 1527 1661

+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + 1.000000 0.000000 0.000000 -36.779528 + 0.000000 1.000000 0.000000 -35.347835 + 0.000000 0.000000 1.000000 -36.779528 + 0.000000 0.000000 0.000000 0.393701 + + + + + + + + + +
diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos2.dae.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos2.dae.meta new file mode 100644 index 00000000..83a9acd9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/deimos2.dae.meta @@ -0,0 +1,104 @@ +fileFormatVersion: 2 +guid: f7615ca7131634e47a6c5c0fed2c9cdc +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: Deimos + 100002: Deimos1 + 100004: //RootNode + 100006: mesh1 + 400000: Deimos + 400002: Deimos1 + 400004: //RootNode + 400006: mesh1 + 2100000: deimos + 2100002: BackColor + 2300000: mesh1 + 3300000: mesh1 + 4300000: mesh1 + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/fobos.jpg b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/fobos.jpg new file mode 100755 index 00000000..449131aa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/fobos.jpg differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/fobos.jpg.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/fobos.jpg.meta new file mode 100644 index 00000000..1fec6be6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/fobos.jpg.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: b2929c369e79640e5a4ba8eb45aa10e8 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars.prefab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars.prefab new file mode 100644 index 00000000..c5bbc0b7 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars.prefab @@ -0,0 +1,107 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5286735735598927601 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5370998732009497987} + - component: {fileID: 215555155561371294} + - component: {fileID: 3318471050490739546} + - component: {fileID: -9097346183758578719} + m_Layer: 0 + m_Name: mars + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5370998732009497987 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5286735735598927601} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -2.651176, y: 2.259136, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &215555155561371294 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5286735735598927601} + m_Mesh: {fileID: -8978465599795454212, guid: 729994df3d65fea10a3e168d5469e639, type: 3} +--- !u!23 &3318471050490739546 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5286735735598927601} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: -3618312798671967816, guid: 729994df3d65fea10a3e168d5469e639, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!135 &-9097346183758578719 +SphereCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5286735735598927601} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Radius: 32.682594 + m_Center: {x: 0, y: 0, z: 0} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars.prefab.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars.prefab.meta new file mode 100644 index 00000000..93f6f12d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: dba509d99ea06530ca27d29631736776 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars1.DAE b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars1.DAE new file mode 100755 index 00000000..0c8af690 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars1.DAE @@ -0,0 +1,2497 @@ + + + + + + FBX COLLADA exporter + + + 2011-03-07T00:31:31Z + 2011-03-07T00:31:31Z + + + + + + Y_UP + + + + ./mars_1k_color.jpg + + + + + + + + + + + + + + 0.000000 0.000000 0.000000 1.000000 + + + 0.588235 0.588235 0.588235 1.000000 + + + + + + TRUE + TRUE + ADD + + + + + + 0.000000 0.000000 0.000000 1.000000 + + + 2.000000 + + + 0.000000 0.000000 0.000000 1.000000 + + + 1.000000 + + + 1.000000 1.000000 1.000000 1.000000 + + + 0.000000 + + + + + + + + + + + +0.000002 -0.151848 32.682594 +0.000002 8.665811 31.470634 +-2.378975 8.338828 31.470634 +-4.581512 7.382131 31.470634 +-6.444260 5.866673 31.470634 +-7.829067 3.904849 31.470634 +-8.633227 1.642159 31.470634 +-8.797101 -0.753585 31.470634 +-8.308534 -3.104700 31.470634 +-7.203761 -5.236816 31.470634 +-5.564718 -6.991803 31.470634 +-3.512966 -8.239503 31.470634 +-1.200673 -8.887378 31.470634 +1.200669 -8.887379 31.470634 +3.512962 -8.239506 31.470634 +5.564716 -6.991808 31.470634 +7.203760 -5.236823 31.470634 +8.308535 -3.104708 31.470634 +8.797104 -0.753593 31.470634 +8.633232 1.642151 31.470634 +7.829074 3.904842 31.470634 +6.444270 5.866667 31.470634 +4.581523 7.382126 31.470634 +2.378987 8.338825 31.470634 +0.000001 16.829504 27.924643 +-4.581514 16.199789 27.924643 +-8.823236 14.357348 27.924643 +-12.410581 11.438828 27.924643 +-15.077489 7.660679 27.924643 +-16.626169 3.303112 27.924643 +-16.941763 -1.310694 27.924643 +-16.000864 -5.838553 27.924643 +-13.873254 -9.944655 27.924643 +-10.716729 -13.324471 27.924643 +-6.765393 -15.727333 27.924643 +-2.312299 -16.975033 27.924643 +2.312287 -16.975035 27.924643 +6.765382 -15.727339 27.924643 +10.716721 -13.324481 27.924643 +13.873249 -9.944669 27.924643 +16.000862 -5.838568 27.924643 +16.941765 -1.310709 27.924643 +16.626177 3.303097 27.924643 +15.077500 7.660665 27.924643 +12.410595 11.438816 27.924643 +8.823254 14.357340 27.924643 +4.581533 16.199785 27.924643 +0.000001 23.733768 22.307608 +-6.444263 22.848024 22.307608 +-12.410582 20.256485 22.307608 +-17.456465 16.151354 22.307608 +-21.207682 10.837090 22.307608 +-23.386024 4.707827 22.307608 +-23.829931 -1.781856 22.307608 +-22.506481 -8.150649 22.307608 +-19.513830 -13.926207 22.307608 +-15.073928 -18.680185 22.307608 +-9.516062 -22.060001 22.307608 +-3.252433 -23.814991 22.307608 +3.252414 -23.814993 22.307608 +9.516046 -22.060009 22.307608 +15.073915 -18.680199 22.307608 +19.513823 -13.926225 22.307608 +22.506479 -8.150670 22.307608 +23.829933 -1.781878 22.307608 +23.386032 4.707805 22.307608 +21.207697 10.837070 22.307608 +17.456484 16.151339 22.307608 +12.410604 20.256474 22.307608 +6.444288 22.848019 22.307608 +0.000001 28.866545 15.036119 +-7.829070 27.790462 15.036119 +-15.077491 24.642029 15.036119 +-21.207684 19.654747 15.036119 +-25.764999 13.198502 15.036119 +-28.411444 5.752122 15.036119 +-28.950743 -2.132128 15.036119 +-27.342897 -9.869510 15.036119 +-23.707155 -16.886177 15.036119 +-18.313164 -22.661737 15.036119 +-11.560967 -26.767841 15.036119 +-3.951348 -28.899960 15.036119 +3.951325 -28.899963 15.036119 +11.560946 -26.767853 15.036119 +18.313147 -22.661755 15.036119 +23.707144 -16.886200 15.036119 +27.342892 -9.869535 15.036119 +28.950745 -2.132155 15.036119 +28.411453 5.752095 15.036119 +25.765015 13.198478 15.036119 +21.207705 19.654728 15.036119 +15.077518 24.642015 15.036119 +7.829100 27.790457 15.036119 +0.000001 31.847160 6.649471 +-8.633230 30.660549 6.649471 +-16.626171 27.188725 6.649471 +-23.386024 21.689175 6.649471 +-28.411444 14.569778 6.649471 +-31.329718 6.358546 6.649471 +-31.924410 -2.335532 6.649471 +-30.151415 -10.867657 6.649471 +-26.142229 -18.605040 6.649471 +-20.194195 -24.973833 6.649471 +-12.748449 -29.501694 6.649471 +-4.357210 -31.852814 6.649471 +4.357184 -31.852818 6.649471 +12.748425 -29.501707 6.649471 +20.194176 -24.973852 6.649471 +26.142216 -18.605062 6.649471 +30.151409 -10.867684 6.649471 +31.924412 -2.335562 6.649471 +31.329727 6.358517 6.649471 +28.411461 14.569752 6.649471 +23.386047 21.689154 6.649471 +16.626200 27.188709 6.649471 +8.633263 30.660542 6.649471 +0.000000 32.454556 -2.230336 +-8.797104 31.245420 -2.230336 +-16.941763 27.707695 -2.230336 +-23.829931 22.103756 -2.230336 +-28.950741 14.849220 -2.230336 +-31.924408 6.482125 -2.230336 +-32.530390 -2.376982 -2.230336 +-30.723742 -11.071061 -2.230336 +-26.638454 -18.955313 -2.230336 +-20.577515 -25.444996 -2.230336 +-12.990437 -30.058805 -2.230336 +-4.439917 -32.454552 -2.230336 +4.439891 -32.454556 -2.230336 +12.990413 -30.058817 -2.230336 +20.577496 -25.445015 -2.230336 +26.638439 -18.955338 -2.230336 +30.723734 -11.071090 -2.230336 +32.530390 -2.377012 -2.230336 +31.924419 6.482095 -2.230336 +28.950760 14.849194 -2.230336 +23.829956 22.103733 -2.230336 +16.941793 27.707680 -2.230336 +8.797137 31.245413 -2.230336 +0.000001 30.643684 -10.944730 +-8.308537 29.501703 -10.944730 +-16.000864 26.160452 -10.944730 +-22.506481 20.867741 -10.944730 +-27.342896 14.016102 -10.944730 +-30.151413 6.113692 -10.944730 +-30.723740 -2.253404 -10.944730 +-29.017427 -10.464638 -10.944730 +-25.159027 -17.911018 -10.944730 +-19.434696 -24.040283 -10.944730 +-12.268983 -28.397854 -10.944730 +-4.193336 -30.660547 -10.944730 +4.193311 -30.660551 -10.944730 +12.268960 -28.397865 -10.944730 +19.434677 -24.040302 -10.944730 +25.159014 -17.911043 -10.944730 +29.017422 -10.464664 -10.944730 +30.723742 -2.253433 -10.944730 +30.151423 6.113664 -10.944730 +27.342913 14.016076 -10.944730 +22.506504 20.867720 -10.944730 +16.000893 26.160437 -10.944730 +8.308568 29.501694 -10.944730 +0.000001 26.548851 -18.847404 +-7.203763 25.558716 -18.847404 +-13.873254 22.661747 -18.847404 +-19.513830 18.072798 -18.847404 +-23.707153 12.132212 -18.847404 +-26.142227 5.280573 -18.847404 +-26.638453 -1.973964 -18.847404 +-25.159025 -9.093362 -18.847404 +-21.813669 -15.549610 -18.847404 +-16.850494 -20.863876 -18.847404 +-10.637595 -24.642027 -18.847404 +-3.635754 -26.603853 -18.847404 +3.635734 -26.603857 -18.847404 +10.637576 -24.642036 -18.847404 +16.850479 -20.863892 -18.847404 +21.813660 -15.549630 -18.847404 +25.159021 -9.093386 -18.847404 +26.638454 -1.973988 -18.847404 +26.142237 5.280549 -18.847404 +23.707169 12.132190 -18.847404 +19.513849 18.072781 -18.847404 +13.873280 22.661734 -18.847404 +7.203791 25.558710 -18.847404 +0.000001 20.473749 -25.352253 +-5.564720 19.708897 -25.352253 +-10.716728 17.471062 -25.352253 +-15.073927 13.926219 -25.352253 +-18.313160 9.337270 -25.352253 +-20.194193 4.044556 -25.352253 +-20.577513 -1.559385 -25.352253 +-19.434694 -7.058936 -25.352253 +-16.850494 -12.046220 -25.352253 +-13.016569 -16.151353 -25.352253 +-8.217266 -19.069876 -25.352253 +-2.808526 -20.585337 -25.352253 +2.808510 -20.585339 -25.352253 +8.217252 -19.069883 -25.352253 +13.016559 -16.151364 -25.352253 +16.850487 -12.046235 -25.352253 +19.434692 -7.058954 -25.352253 +20.577515 -1.559404 -25.352253 +20.194201 4.044538 -25.352253 +18.313173 9.337253 -25.352253 +15.073943 13.926205 -25.352253 +10.716749 17.471052 -25.352253 +5.564742 19.708891 -25.352253 +0.000001 12.868942 -29.976841 +-3.512967 12.386096 -29.976841 +-6.765392 10.973368 -29.976841 +-9.516060 8.735534 -29.976841 +-11.560966 5.838563 -29.976841 +-12.748446 2.497312 -29.976841 +-12.990435 -1.040416 -29.976841 +-12.268981 -4.512242 -29.976841 +-10.637594 -7.660678 -29.976841 +-8.217265 -10.252219 -29.976841 +-5.187500 -12.094662 -29.976841 +-1.773001 -13.051361 -29.976841 +1.772993 -13.051363 -29.976841 +5.187492 -12.094666 -29.976841 +8.217259 -10.252227 -29.976841 +10.637590 -7.660688 -29.976841 +12.268981 -4.512254 -29.976841 +12.990438 -1.040428 -29.976841 +12.748453 2.497300 -29.976841 +11.560974 5.838552 -29.976841 +9.516072 8.735525 -29.976841 +6.765407 10.973362 -29.976841 +3.512982 12.386093 -29.976841 +0.000002 -0.151848 -32.682594 + + + + + + + + + + + +0.000000 0.000000 1.000000 +0.000000 0.280703 0.959795 +-0.075733 0.270294 0.959795 +0.000000 0.000000 1.000000 +-0.075733 0.270294 0.959795 +-0.145849 0.239838 0.959795 +0.000000 0.000000 1.000000 +-0.145849 0.239838 0.959795 +-0.205148 0.191595 0.959795 +0.000000 0.000000 1.000000 +-0.205148 0.191595 0.959795 +-0.249232 0.129142 0.959795 +0.000000 0.000000 1.000000 +-0.249232 0.129142 0.959795 +-0.274832 0.057111 0.959795 +0.000000 0.000000 1.000000 +-0.274832 0.057111 0.959795 +-0.280049 -0.019156 0.959795 +0.000000 0.000000 1.000000 +-0.280049 -0.019156 0.959795 +-0.264495 -0.094002 0.959795 +0.000000 0.000000 1.000000 +-0.264495 -0.094002 0.959795 +-0.229326 -0.161876 0.959795 +0.000000 0.000000 1.000000 +-0.229326 -0.161876 0.959795 +-0.177148 -0.217744 0.959795 +0.000000 0.000000 1.000000 +-0.177148 -0.217744 0.959795 +-0.111832 -0.257464 0.959795 +0.000000 0.000000 1.000000 +-0.111832 -0.257464 0.959795 +-0.038222 -0.278088 0.959795 +0.000000 0.000000 1.000000 +-0.038222 -0.278088 0.959795 +0.038222 -0.278089 0.959795 +0.000000 0.000000 1.000000 +0.038222 -0.278089 0.959795 +0.111832 -0.257464 0.959795 +0.000000 0.000000 1.000000 +0.111832 -0.257464 0.959795 +0.177148 -0.217745 0.959795 +0.000000 0.000000 1.000000 +0.177148 -0.217745 0.959795 +0.229326 -0.161876 0.959795 +0.000000 0.000000 1.000000 +0.229326 -0.161876 0.959795 +0.264495 -0.094002 0.959795 +0.000000 0.000000 1.000000 +0.264495 -0.094002 0.959795 +0.280049 -0.019156 0.959795 +0.000000 0.000000 1.000000 +0.280049 -0.019156 0.959795 +0.274832 0.057110 0.959795 +0.000000 0.000000 1.000000 +0.274832 0.057110 0.959795 +0.249232 0.129141 0.959795 +0.000000 0.000000 1.000000 +0.249232 0.129141 0.959795 +0.205148 0.191594 0.959795 +0.000000 0.000000 1.000000 +0.205148 0.191594 0.959795 +0.145849 0.239838 0.959795 +0.000000 0.000000 1.000000 +0.145849 0.239838 0.959795 +0.075733 0.270294 0.959795 +0.000000 0.000000 1.000000 +0.075733 0.270294 0.959795 +0.000000 0.280703 0.959795 +0.000000 0.280703 0.959795 +0.000000 0.528116 0.849172 +-0.142484 0.508532 0.849172 +0.000000 0.280703 0.959795 +-0.142484 0.508532 0.849172 +-0.075733 0.270294 0.959795 +-0.075733 0.270294 0.959795 +-0.142484 0.508532 0.849172 +-0.274401 0.451233 0.849172 +-0.075733 0.270294 0.959795 +-0.274401 0.451233 0.849172 +-0.145849 0.239838 0.959795 +-0.145849 0.239838 0.959795 +-0.274401 0.451233 0.849172 +-0.385966 0.360468 0.849172 +-0.145849 0.239838 0.959795 +-0.385966 0.360468 0.849172 +-0.205148 0.191595 0.959795 +-0.205148 0.191595 0.959795 +-0.385966 0.360468 0.849172 +-0.468907 0.242968 0.849172 +-0.205148 0.191595 0.959795 +-0.468907 0.242968 0.849172 +-0.249232 0.129142 0.959795 +-0.249232 0.129142 0.959795 +-0.468907 0.242968 0.849172 +-0.517070 0.107449 0.849172 +-0.249232 0.129142 0.959795 +-0.517070 0.107449 0.849172 +-0.274832 0.057111 0.959795 +-0.274832 0.057111 0.959795 +-0.517070 0.107449 0.849172 +-0.526885 -0.036040 0.849172 +-0.274832 0.057111 0.959795 +-0.526885 -0.036040 0.849172 +-0.280049 -0.019156 0.959795 +-0.280049 -0.019156 0.959795 +-0.526885 -0.036040 0.849172 +-0.497623 -0.176855 0.849172 +-0.280049 -0.019156 0.959795 +-0.497623 -0.176855 0.849172 +-0.264495 -0.094002 0.959795 +-0.264495 -0.094002 0.959795 +-0.497623 -0.176855 0.849172 +-0.431455 -0.304554 0.849172 +-0.264495 -0.094002 0.959795 +-0.431455 -0.304554 0.849172 +-0.229326 -0.161876 0.959795 +-0.229326 -0.161876 0.959795 +-0.431455 -0.304554 0.849172 +-0.333288 -0.409666 0.849172 +-0.229326 -0.161876 0.959795 +-0.333288 -0.409666 0.849172 +-0.177148 -0.217744 0.959795 +-0.177148 -0.217744 0.959795 +-0.333288 -0.409666 0.849172 +-0.210402 -0.484394 0.849172 +-0.177148 -0.217744 0.959795 +-0.210402 -0.484394 0.849172 +-0.111832 -0.257464 0.959795 +-0.111832 -0.257464 0.959795 +-0.210402 -0.484394 0.849172 +-0.071912 -0.523197 0.849172 +-0.111832 -0.257464 0.959795 +-0.071912 -0.523197 0.849172 +-0.038222 -0.278088 0.959795 +-0.038222 -0.278088 0.959795 +-0.071912 -0.523197 0.849172 +0.071912 -0.523197 0.849172 +-0.038222 -0.278088 0.959795 +0.071912 -0.523197 0.849172 +0.038222 -0.278089 0.959795 +0.038222 -0.278089 0.959795 +0.071912 -0.523197 0.849172 +0.210402 -0.484394 0.849172 +0.038222 -0.278089 0.959795 +0.210402 -0.484394 0.849172 +0.111832 -0.257464 0.959795 +0.111832 -0.257464 0.959795 +0.210402 -0.484394 0.849172 +0.333288 -0.409666 0.849172 +0.111832 -0.257464 0.959795 +0.333288 -0.409666 0.849172 +0.177148 -0.217745 0.959795 +0.177148 -0.217745 0.959795 +0.333288 -0.409666 0.849172 +0.431455 -0.304555 0.849172 +0.177148 -0.217745 0.959795 +0.431455 -0.304555 0.849172 +0.229326 -0.161876 0.959795 +0.229326 -0.161876 0.959795 +0.431455 -0.304555 0.849172 +0.497623 -0.176856 0.849172 +0.229326 -0.161876 0.959795 +0.497623 -0.176856 0.849172 +0.264495 -0.094002 0.959795 +0.264495 -0.094002 0.959795 +0.497623 -0.176856 0.849172 +0.526885 -0.036040 0.849172 +0.264495 -0.094002 0.959795 +0.526885 -0.036040 0.849172 +0.280049 -0.019156 0.959795 +0.280049 -0.019156 0.959795 +0.526885 -0.036040 0.849172 +0.517070 0.107448 0.849172 +0.280049 -0.019156 0.959795 +0.517070 0.107448 0.849172 +0.274832 0.057110 0.959795 +0.274832 0.057110 0.959795 +0.517070 0.107448 0.849172 +0.468907 0.242967 0.849172 +0.274832 0.057110 0.959795 +0.468907 0.242967 0.849172 +0.249232 0.129141 0.959795 +0.249232 0.129141 0.959795 +0.468907 0.242967 0.849172 +0.385967 0.360467 0.849172 +0.249232 0.129141 0.959795 +0.385967 0.360467 0.849172 +0.205148 0.191594 0.959795 +0.205148 0.191594 0.959795 +0.385967 0.360467 0.849172 +0.274401 0.451233 0.849172 +0.205148 0.191594 0.959795 +0.274401 0.451233 0.849172 +0.145849 0.239838 0.959795 +0.145849 0.239838 0.959795 +0.274401 0.451233 0.849172 +0.142485 0.508532 0.849172 +0.145849 0.239838 0.959795 +0.142485 0.508532 0.849172 +0.075733 0.270294 0.959795 +0.075733 0.270294 0.959795 +0.142485 0.508532 0.849172 +0.000000 0.528116 0.849172 +0.075733 0.270294 0.959795 +0.000000 0.528116 0.849172 +0.000000 0.280703 0.959795 +0.000000 0.528116 0.849172 +0.000000 0.736251 0.676709 +-0.198638 0.708948 0.676709 +0.000000 0.528116 0.849172 +-0.198638 0.708948 0.676709 +-0.142484 0.508532 0.849172 +-0.142484 0.508532 0.849172 +-0.198638 0.708948 0.676709 +-0.382544 0.629067 0.676709 +-0.142484 0.508532 0.849172 +-0.382544 0.629067 0.676709 +-0.274401 0.451233 0.849172 +-0.274401 0.451233 0.849172 +-0.382544 0.629067 0.676709 +-0.538078 0.502530 0.676709 +-0.274401 0.451233 0.849172 +-0.538078 0.502530 0.676709 +-0.385966 0.360468 0.849172 +-0.385966 0.360468 0.849172 +-0.538078 0.502530 0.676709 +-0.653706 0.338723 0.676709 +-0.385966 0.360468 0.849172 +-0.653706 0.338723 0.676709 +-0.468907 0.242968 0.849172 +-0.468907 0.242968 0.849172 +-0.653706 0.338723 0.676709 +-0.720851 0.149795 0.676709 +-0.468907 0.242968 0.849172 +-0.720851 0.149795 0.676709 +-0.517070 0.107449 0.849172 +-0.517070 0.107449 0.849172 +-0.720851 0.149795 0.676709 +-0.734534 -0.050243 0.676709 +-0.517070 0.107449 0.849172 +-0.734534 -0.050243 0.676709 +-0.526885 -0.036040 0.849172 +-0.526885 -0.036040 0.849172 +-0.734534 -0.050243 0.676709 +-0.693740 -0.246555 0.676709 +-0.526885 -0.036040 0.849172 +-0.693740 -0.246555 0.676709 +-0.497623 -0.176855 0.849172 +-0.497623 -0.176855 0.849172 +-0.693740 -0.246555 0.676709 +-0.601495 -0.424581 0.676709 +-0.497623 -0.176855 0.849172 +-0.601495 -0.424581 0.676709 +-0.431455 -0.304554 0.849172 +-0.431455 -0.304554 0.849172 +-0.601495 -0.424581 0.676709 +-0.464639 -0.571118 0.676709 +-0.431455 -0.304554 0.849172 +-0.464639 -0.571118 0.676709 +-0.333288 -0.409666 0.849172 +-0.333288 -0.409666 0.849172 +-0.464639 -0.571118 0.676709 +-0.293323 -0.675297 0.676709 +-0.333288 -0.409666 0.849172 +-0.293323 -0.675297 0.676709 +-0.210402 -0.484394 0.849172 +-0.210402 -0.484394 0.849172 +-0.293323 -0.675297 0.676709 +-0.100253 -0.729393 0.676709 +-0.210402 -0.484394 0.849172 +-0.100253 -0.729393 0.676709 +-0.071912 -0.523197 0.849172 +-0.071912 -0.523197 0.849172 +-0.100253 -0.729393 0.676709 +0.100252 -0.729393 0.676709 +-0.071912 -0.523197 0.849172 +0.100252 -0.729393 0.676709 +0.071912 -0.523197 0.849172 +0.071912 -0.523197 0.849172 +0.100252 -0.729393 0.676709 +0.293323 -0.675297 0.676709 +0.071912 -0.523197 0.849172 +0.293323 -0.675297 0.676709 +0.210402 -0.484394 0.849172 +0.210402 -0.484394 0.849172 +0.293323 -0.675297 0.676709 +0.464638 -0.571118 0.676709 +0.210402 -0.484394 0.849172 +0.464638 -0.571118 0.676709 +0.333288 -0.409666 0.849172 +0.333288 -0.409666 0.849172 +0.464638 -0.571118 0.676709 +0.601494 -0.424582 0.676709 +0.333288 -0.409666 0.849172 +0.601494 -0.424582 0.676709 +0.431455 -0.304555 0.849172 +0.431455 -0.304555 0.849172 +0.601494 -0.424582 0.676709 +0.693740 -0.246556 0.676709 +0.431455 -0.304555 0.849172 +0.693740 -0.246556 0.676709 +0.497623 -0.176856 0.849172 +0.497623 -0.176856 0.849172 +0.693740 -0.246556 0.676709 +0.734534 -0.050244 0.676709 +0.497623 -0.176856 0.849172 +0.734534 -0.050244 0.676709 +0.526885 -0.036040 0.849172 +0.526885 -0.036040 0.849172 +0.734534 -0.050244 0.676709 +0.720851 0.149794 0.676709 +0.526885 -0.036040 0.849172 +0.720851 0.149794 0.676709 +0.517070 0.107448 0.849172 +0.517070 0.107448 0.849172 +0.720851 0.149794 0.676709 +0.653706 0.338723 0.676709 +0.517070 0.107448 0.849172 +0.653706 0.338723 0.676709 +0.468907 0.242967 0.849172 +0.468907 0.242967 0.849172 +0.653706 0.338723 0.676709 +0.538079 0.502530 0.676709 +0.468907 0.242967 0.849172 +0.538079 0.502530 0.676709 +0.385967 0.360467 0.849172 +0.385967 0.360467 0.849172 +0.538079 0.502530 0.676709 +0.382545 0.629066 0.676709 +0.385967 0.360467 0.849172 +0.382545 0.629066 0.676709 +0.274401 0.451233 0.849172 +0.274401 0.451233 0.849172 +0.382545 0.629066 0.676709 +0.198639 0.708948 0.676709 +0.274401 0.451233 0.849172 +0.198639 0.708948 0.676709 +0.142485 0.508532 0.849172 +0.142485 0.508532 0.849172 +0.198639 0.708948 0.676709 +0.000000 0.736251 0.676709 +0.142485 0.508532 0.849172 +0.000000 0.736251 0.676709 +0.000000 0.528116 0.849172 +0.000000 0.736251 0.676709 +0.000000 0.890335 0.455307 +-0.240210 0.857319 0.455307 +0.000000 0.736251 0.676709 +-0.240210 0.857319 0.455307 +-0.198638 0.708948 0.676709 +-0.198638 0.708948 0.676709 +-0.240210 0.857319 0.455307 +-0.462604 0.760719 0.455307 +-0.198638 0.708948 0.676709 +-0.462604 0.760719 0.455307 +-0.382544 0.629067 0.676709 +-0.382544 0.629067 0.676709 +-0.462604 0.760719 0.455307 +-0.650689 0.607701 0.455307 +-0.382544 0.629067 0.676709 +-0.650689 0.607701 0.455307 +-0.538078 0.502530 0.676709 +-0.538078 0.502530 0.676709 +-0.650689 0.607701 0.455307 +-0.790515 0.409612 0.455307 +-0.538078 0.502530 0.676709 +-0.790515 0.409612 0.455307 +-0.653706 0.338723 0.676709 +-0.653706 0.338723 0.676709 +-0.790515 0.409612 0.455307 +-0.871712 0.181144 0.455307 +-0.653706 0.338723 0.676709 +-0.871712 0.181144 0.455307 +-0.720851 0.149795 0.676709 +-0.720851 0.149795 0.676709 +-0.871712 0.181144 0.455307 +-0.888259 -0.060758 0.455307 +-0.720851 0.149795 0.676709 +-0.888259 -0.060758 0.455307 +-0.734534 -0.050243 0.676709 +-0.734534 -0.050243 0.676709 +-0.888259 -0.060758 0.455307 +-0.838928 -0.298155 0.455307 +-0.734534 -0.050243 0.676709 +-0.838928 -0.298155 0.455307 +-0.693740 -0.246555 0.676709 +-0.693740 -0.246555 0.676709 +-0.838928 -0.298155 0.455307 +-0.727377 -0.513438 0.455307 +-0.693740 -0.246555 0.676709 +-0.727377 -0.513438 0.455307 +-0.601495 -0.424581 0.676709 +-0.601495 -0.424581 0.676709 +-0.727377 -0.513438 0.455307 +-0.561880 -0.690642 0.455307 +-0.601495 -0.424581 0.676709 +-0.561880 -0.690642 0.455307 +-0.464639 -0.571118 0.676709 +-0.464639 -0.571118 0.676709 +-0.561880 -0.690642 0.455307 +-0.354711 -0.816625 0.455307 +-0.464639 -0.571118 0.676709 +-0.354711 -0.816625 0.455307 +-0.293323 -0.675297 0.676709 +-0.293323 -0.675297 0.676709 +-0.354711 -0.816625 0.455307 +-0.121234 -0.882042 0.455307 +-0.293323 -0.675297 0.676709 +-0.121234 -0.882042 0.455307 +-0.100253 -0.729393 0.676709 +-0.100253 -0.729393 0.676709 +-0.121234 -0.882042 0.455307 +0.121233 -0.882042 0.455307 +-0.100253 -0.729393 0.676709 +0.121233 -0.882042 0.455307 +0.100252 -0.729393 0.676709 +0.100252 -0.729393 0.676709 +0.121233 -0.882042 0.455307 +0.354710 -0.816625 0.455307 +0.100252 -0.729393 0.676709 +0.354710 -0.816625 0.455307 +0.293323 -0.675297 0.676709 +0.293323 -0.675297 0.676709 +0.354710 -0.816625 0.455307 +0.561879 -0.690643 0.455307 +0.293323 -0.675297 0.676709 +0.561879 -0.690643 0.455307 +0.464638 -0.571118 0.676709 +0.464638 -0.571118 0.676709 +0.561879 -0.690643 0.455307 +0.727376 -0.513439 0.455307 +0.464638 -0.571118 0.676709 +0.727376 -0.513439 0.455307 +0.601494 -0.424582 0.676709 +0.601494 -0.424582 0.676709 +0.727376 -0.513439 0.455307 +0.838927 -0.298156 0.455307 +0.601494 -0.424582 0.676709 +0.838927 -0.298156 0.455307 +0.693740 -0.246556 0.676709 +0.693740 -0.246556 0.676709 +0.838927 -0.298156 0.455307 +0.888259 -0.060759 0.455307 +0.693740 -0.246556 0.676709 +0.888259 -0.060759 0.455307 +0.734534 -0.050244 0.676709 +0.734534 -0.050244 0.676709 +0.888259 -0.060759 0.455307 +0.871713 0.181143 0.455307 +0.734534 -0.050244 0.676709 +0.871713 0.181143 0.455307 +0.720851 0.149794 0.676709 +0.720851 0.149794 0.676709 +0.871713 0.181143 0.455307 +0.790515 0.409611 0.455307 +0.720851 0.149794 0.676709 +0.790515 0.409611 0.455307 +0.653706 0.338723 0.676709 +0.653706 0.338723 0.676709 +0.790515 0.409611 0.455307 +0.650689 0.607700 0.455307 +0.653706 0.338723 0.676709 +0.650689 0.607700 0.455307 +0.538079 0.502530 0.676709 +0.538079 0.502530 0.676709 +0.650689 0.607700 0.455307 +0.462604 0.760719 0.455307 +0.538079 0.502530 0.676709 +0.462604 0.760719 0.455307 +0.382545 0.629066 0.676709 +0.382545 0.629066 0.676709 +0.462604 0.760719 0.455307 +0.240210 0.857318 0.455307 +0.382545 0.629066 0.676709 +0.240210 0.857318 0.455307 +0.198639 0.708948 0.676709 +0.198639 0.708948 0.676709 +0.240210 0.857318 0.455307 +0.000000 0.890335 0.455307 +0.198639 0.708948 0.676709 +0.000000 0.890335 0.455307 +0.000000 0.736251 0.676709 +0.000000 0.890335 0.455307 +0.000000 0.979562 0.201143 +-0.264283 0.943237 0.201143 +0.000000 0.890335 0.455307 +-0.264283 0.943237 0.201143 +-0.240210 0.857319 0.455307 +-0.240210 0.857319 0.455307 +-0.264283 0.943237 0.201143 +-0.508965 0.836957 0.201143 +-0.240210 0.857319 0.455307 +-0.508965 0.836957 0.201143 +-0.462604 0.760719 0.455307 +-0.462604 0.760719 0.455307 +-0.508965 0.836957 0.201143 +-0.715899 0.668603 0.201143 +-0.462604 0.760719 0.455307 +-0.715899 0.668603 0.201143 +-0.650689 0.607701 0.455307 +-0.650689 0.607701 0.455307 +-0.715899 0.668603 0.201143 +-0.869738 0.450662 0.201143 +-0.650689 0.607701 0.455307 +-0.869738 0.450662 0.201143 +-0.790515 0.409612 0.455307 +-0.790515 0.409612 0.455307 +-0.869738 0.450662 0.201143 +-0.959073 0.199298 0.201143 +-0.790515 0.409612 0.455307 +-0.959073 0.199298 0.201143 +-0.871712 0.181144 0.455307 +-0.871712 0.181144 0.455307 +-0.959073 0.199298 0.201143 +-0.977278 -0.066848 0.201143 +-0.871712 0.181144 0.455307 +-0.977278 -0.066848 0.201143 +-0.888259 -0.060758 0.455307 +-0.888259 -0.060758 0.455307 +-0.977278 -0.066848 0.201143 +-0.923003 -0.328035 0.201143 +-0.888259 -0.060758 0.455307 +-0.923003 -0.328035 0.201143 +-0.838928 -0.298155 0.455307 +-0.838928 -0.298155 0.455307 +-0.923003 -0.328035 0.201143 +-0.800273 -0.564894 0.201143 +-0.838928 -0.298155 0.455307 +-0.800273 -0.564894 0.201143 +-0.727377 -0.513438 0.455307 +-0.727377 -0.513438 0.455307 +-0.800273 -0.564894 0.201143 +-0.618190 -0.759857 0.201143 +-0.727377 -0.513438 0.455307 +-0.618190 -0.759857 0.201143 +-0.561880 -0.690642 0.455307 +-0.561880 -0.690642 0.455307 +-0.618190 -0.759857 0.201143 +-0.390259 -0.898465 0.201143 +-0.561880 -0.690642 0.455307 +-0.390259 -0.898465 0.201143 +-0.354711 -0.816625 0.455307 +-0.354711 -0.816625 0.455307 +-0.390259 -0.898465 0.201143 +-0.133384 -0.970438 0.201143 +-0.354711 -0.816625 0.455307 +-0.133384 -0.970438 0.201143 +-0.121234 -0.882042 0.455307 +-0.121234 -0.882042 0.455307 +-0.133384 -0.970438 0.201143 +0.133383 -0.970438 0.201143 +-0.121234 -0.882042 0.455307 +0.133383 -0.970438 0.201143 +0.121233 -0.882042 0.455307 +0.121233 -0.882042 0.455307 +0.133383 -0.970438 0.201143 +0.390258 -0.898465 0.201143 +0.121233 -0.882042 0.455307 +0.390258 -0.898465 0.201143 +0.354710 -0.816625 0.455307 +0.354710 -0.816625 0.455307 +0.390258 -0.898465 0.201143 +0.618189 -0.759858 0.201143 +0.354710 -0.816625 0.455307 +0.618189 -0.759858 0.201143 +0.561879 -0.690643 0.455307 +0.561879 -0.690643 0.455307 +0.618189 -0.759858 0.201143 +0.800272 -0.564895 0.201143 +0.561879 -0.690643 0.455307 +0.800272 -0.564895 0.201143 +0.727376 -0.513439 0.455307 +0.727376 -0.513439 0.455307 +0.800272 -0.564895 0.201143 +0.923003 -0.328036 0.201143 +0.727376 -0.513439 0.455307 +0.923003 -0.328036 0.201143 +0.838927 -0.298156 0.455307 +0.838927 -0.298156 0.455307 +0.923003 -0.328036 0.201143 +0.977278 -0.066848 0.201143 +0.838927 -0.298156 0.455307 +0.977278 -0.066848 0.201143 +0.888259 -0.060759 0.455307 +0.888259 -0.060759 0.455307 +0.977278 -0.066848 0.201143 +0.959074 0.199297 0.201143 +0.888259 -0.060759 0.455307 +0.959074 0.199297 0.201143 +0.871713 0.181143 0.455307 +0.871713 0.181143 0.455307 +0.959074 0.199297 0.201143 +0.869739 0.450661 0.201143 +0.871713 0.181143 0.455307 +0.869739 0.450661 0.201143 +0.790515 0.409611 0.455307 +0.790515 0.409611 0.455307 +0.869739 0.450661 0.201143 +0.715900 0.668602 0.201143 +0.790515 0.409611 0.455307 +0.715900 0.668602 0.201143 +0.650689 0.607700 0.455307 +0.650689 0.607700 0.455307 +0.715900 0.668602 0.201143 +0.508965 0.836956 0.201143 +0.650689 0.607700 0.455307 +0.508965 0.836956 0.201143 +0.462604 0.760719 0.455307 +0.462604 0.760719 0.455307 +0.508965 0.836956 0.201143 +0.264283 0.943237 0.201143 +0.462604 0.760719 0.455307 +0.264283 0.943237 0.201143 +0.240210 0.857318 0.455307 +0.240210 0.857318 0.455307 +0.264283 0.943237 0.201143 +0.000000 0.979562 0.201143 +0.240210 0.857318 0.455307 +0.000000 0.979562 0.201143 +0.000000 0.890335 0.455307 +0.000000 0.979562 0.201143 +0.000000 0.997723 -0.067452 +-0.269182 0.960724 -0.067452 +0.000000 0.979562 0.201143 +-0.269182 0.960724 -0.067452 +-0.264283 0.943237 0.201143 +-0.264283 0.943237 0.201143 +-0.269182 0.960724 -0.067452 +-0.518401 0.852473 -0.067452 +-0.264283 0.943237 0.201143 +-0.518401 0.852473 -0.067452 +-0.508965 0.836957 0.201143 +-0.508965 0.836957 0.201143 +-0.518401 0.852473 -0.067452 +-0.729171 0.680999 -0.067452 +-0.508965 0.836957 0.201143 +-0.729171 0.680999 -0.067452 +-0.715899 0.668603 0.201143 +-0.715899 0.668603 0.201143 +-0.729171 0.680999 -0.067452 +-0.885863 0.459017 -0.067452 +-0.715899 0.668603 0.201143 +-0.885863 0.459017 -0.067452 +-0.869738 0.450662 0.201143 +-0.869738 0.450662 0.201143 +-0.885863 0.459017 -0.067452 +-0.976854 0.202993 -0.067452 +-0.869738 0.450662 0.201143 +-0.976854 0.202993 -0.067452 +-0.959073 0.199298 0.201143 +-0.959073 0.199298 0.201143 +-0.976854 0.202993 -0.067452 +-0.995397 -0.068087 -0.067452 +-0.959073 0.199298 0.201143 +-0.995397 -0.068087 -0.067452 +-0.977278 -0.066848 0.201143 +-0.977278 -0.066848 0.201143 +-0.995397 -0.068087 -0.067452 +-0.940115 -0.334117 -0.067452 +-0.977278 -0.066848 0.201143 +-0.940115 -0.334117 -0.067452 +-0.923003 -0.328035 0.201143 +-0.923003 -0.328035 0.201143 +-0.940115 -0.334117 -0.067452 +-0.815109 -0.575367 -0.067452 +-0.923003 -0.328035 0.201143 +-0.815109 -0.575367 -0.067452 +-0.800273 -0.564894 0.201143 +-0.800273 -0.564894 0.201143 +-0.815109 -0.575367 -0.067452 +-0.629651 -0.773944 -0.067452 +-0.800273 -0.564894 0.201143 +-0.629651 -0.773944 -0.067452 +-0.618190 -0.759857 0.201143 +-0.618190 -0.759857 0.201143 +-0.629651 -0.773944 -0.067452 +-0.397494 -0.915122 -0.067452 +-0.618190 -0.759857 0.201143 +-0.397494 -0.915122 -0.067452 +-0.390259 -0.898465 0.201143 +-0.390259 -0.898465 0.201143 +-0.397494 -0.915122 -0.067452 +-0.135857 -0.988430 -0.067452 +-0.390259 -0.898465 0.201143 +-0.135857 -0.988430 -0.067452 +-0.133384 -0.970438 0.201143 +-0.133384 -0.970438 0.201143 +-0.135857 -0.988430 -0.067452 +0.135856 -0.988430 -0.067452 +-0.133384 -0.970438 0.201143 +0.135856 -0.988430 -0.067452 +0.133383 -0.970438 0.201143 +0.133383 -0.970438 0.201143 +0.135856 -0.988430 -0.067452 +0.397493 -0.915123 -0.067452 +0.133383 -0.970438 0.201143 +0.397493 -0.915123 -0.067452 +0.390258 -0.898465 0.201143 +0.390258 -0.898465 0.201143 +0.397493 -0.915123 -0.067452 +0.629650 -0.773945 -0.067452 +0.390258 -0.898465 0.201143 +0.629650 -0.773945 -0.067452 +0.618189 -0.759858 0.201143 +0.618189 -0.759858 0.201143 +0.629650 -0.773945 -0.067452 +0.815109 -0.575367 -0.067452 +0.618189 -0.759858 0.201143 +0.815109 -0.575367 -0.067452 +0.800272 -0.564895 0.201143 +0.800272 -0.564895 0.201143 +0.815109 -0.575367 -0.067452 +0.940115 -0.334118 -0.067452 +0.800272 -0.564895 0.201143 +0.940115 -0.334118 -0.067452 +0.923003 -0.328036 0.201143 +0.923003 -0.328036 0.201143 +0.940115 -0.334118 -0.067452 +0.995396 -0.068088 -0.067452 +0.923003 -0.328036 0.201143 +0.995396 -0.068088 -0.067452 +0.977278 -0.066848 0.201143 +0.977278 -0.066848 0.201143 +0.995396 -0.068088 -0.067452 +0.976854 0.202992 -0.067452 +0.977278 -0.066848 0.201143 +0.976854 0.202992 -0.067452 +0.959074 0.199297 0.201143 +0.959074 0.199297 0.201143 +0.976854 0.202992 -0.067452 +0.885863 0.459016 -0.067452 +0.959074 0.199297 0.201143 +0.885863 0.459016 -0.067452 +0.869739 0.450661 0.201143 +0.869739 0.450661 0.201143 +0.885863 0.459016 -0.067452 +0.729172 0.680998 -0.067452 +0.869739 0.450661 0.201143 +0.729172 0.680998 -0.067452 +0.715900 0.668602 0.201143 +0.715900 0.668602 0.201143 +0.729172 0.680998 -0.067452 +0.518401 0.852473 -0.067452 +0.715900 0.668602 0.201143 +0.518401 0.852473 -0.067452 +0.508965 0.836956 0.201143 +0.508965 0.836956 0.201143 +0.518401 0.852473 -0.067452 +0.269183 0.960724 -0.067452 +0.508965 0.836956 0.201143 +0.269183 0.960724 -0.067452 +0.264283 0.943237 0.201143 +0.264283 0.943237 0.201143 +0.269183 0.960724 -0.067452 +0.000000 0.997723 -0.067452 +0.264283 0.943237 0.201143 +0.000000 0.997723 -0.067452 +0.000000 0.979562 0.201143 +0.000000 0.997723 -0.067452 +0.000000 0.943557 -0.331211 +-0.254569 0.908567 -0.331211 +0.000000 0.997723 -0.067452 +-0.254569 0.908567 -0.331211 +-0.269182 0.960724 -0.067452 +-0.269182 0.960724 -0.067452 +-0.254569 0.908567 -0.331211 +-0.490257 0.806193 -0.331211 +-0.269182 0.960724 -0.067452 +-0.490257 0.806193 -0.331211 +-0.518401 0.852473 -0.067452 +-0.518401 0.852473 -0.067452 +-0.490257 0.806193 -0.331211 +-0.689585 0.644028 -0.331211 +-0.518401 0.852473 -0.067452 +-0.689585 0.644028 -0.331211 +-0.729171 0.680999 -0.067452 +-0.729171 0.680999 -0.067452 +-0.689585 0.644028 -0.331211 +-0.837770 0.434097 -0.331211 +-0.729171 0.680999 -0.067452 +-0.837770 0.434097 -0.331211 +-0.885863 0.459017 -0.067452 +-0.885863 0.459017 -0.067452 +-0.837770 0.434097 -0.331211 +-0.923821 0.191972 -0.331211 +-0.885863 0.459017 -0.067452 +-0.923821 0.191972 -0.331211 +-0.976854 0.202993 -0.067452 +-0.976854 0.202993 -0.067452 +-0.923821 0.191972 -0.331211 +-0.941357 -0.064390 -0.331211 +-0.976854 0.202993 -0.067452 +-0.941357 -0.064390 -0.331211 +-0.995397 -0.068087 -0.067452 +-0.995397 -0.068087 -0.067452 +-0.941357 -0.064390 -0.331211 +-0.889077 -0.315978 -0.331211 +-0.995397 -0.068087 -0.067452 +-0.889077 -0.315978 -0.331211 +-0.940115 -0.334117 -0.067452 +-0.940115 -0.334117 -0.067452 +-0.889077 -0.315978 -0.331211 +-0.770858 -0.544130 -0.331211 +-0.940115 -0.334117 -0.067452 +-0.770858 -0.544130 -0.331211 +-0.815109 -0.575367 -0.067452 +-0.815109 -0.575367 -0.067452 +-0.770858 -0.544130 -0.331211 +-0.595468 -0.731927 -0.331211 +-0.815109 -0.575367 -0.067452 +-0.595468 -0.731927 -0.331211 +-0.629651 -0.773944 -0.067452 +-0.629651 -0.773944 -0.067452 +-0.595468 -0.731927 -0.331211 +-0.375914 -0.865441 -0.331211 +-0.629651 -0.773944 -0.067452 +-0.375914 -0.865441 -0.331211 +-0.397494 -0.915122 -0.067452 +-0.397494 -0.915122 -0.067452 +-0.375914 -0.865441 -0.331211 +-0.128481 -0.934768 -0.331211 +-0.397494 -0.915122 -0.067452 +-0.128481 -0.934768 -0.331211 +-0.135857 -0.988430 -0.067452 +-0.135857 -0.988430 -0.067452 +-0.128481 -0.934768 -0.331211 +0.128480 -0.934768 -0.331211 +-0.135857 -0.988430 -0.067452 +0.128480 -0.934768 -0.331211 +0.135856 -0.988430 -0.067452 +0.135856 -0.988430 -0.067452 +0.128480 -0.934768 -0.331211 +0.375914 -0.865441 -0.331211 +0.135856 -0.988430 -0.067452 +0.375914 -0.865441 -0.331211 +0.397493 -0.915123 -0.067452 +0.397493 -0.915123 -0.067452 +0.375914 -0.865441 -0.331211 +0.595467 -0.731928 -0.331211 +0.397493 -0.915123 -0.067452 +0.595467 -0.731928 -0.331211 +0.629650 -0.773945 -0.067452 +0.629650 -0.773945 -0.067452 +0.595467 -0.731928 -0.331211 +0.770857 -0.544131 -0.331211 +0.629650 -0.773945 -0.067452 +0.770857 -0.544131 -0.331211 +0.815109 -0.575367 -0.067452 +0.815109 -0.575367 -0.067452 +0.770857 -0.544131 -0.331211 +0.889076 -0.315978 -0.331211 +0.815109 -0.575367 -0.067452 +0.889076 -0.315978 -0.331211 +0.940115 -0.334118 -0.067452 +0.940115 -0.334118 -0.067452 +0.889076 -0.315978 -0.331211 +0.941357 -0.064391 -0.331211 +0.940115 -0.334118 -0.067452 +0.941357 -0.064391 -0.331211 +0.995396 -0.068088 -0.067452 +0.995396 -0.068088 -0.067452 +0.941357 -0.064391 -0.331211 +0.923822 0.191972 -0.331211 +0.995396 -0.068088 -0.067452 +0.923822 0.191972 -0.331211 +0.976854 0.202992 -0.067452 +0.976854 0.202992 -0.067452 +0.923822 0.191972 -0.331211 +0.837770 0.434097 -0.331211 +0.976854 0.202992 -0.067452 +0.837770 0.434097 -0.331211 +0.885863 0.459016 -0.067452 +0.885863 0.459016 -0.067452 +0.837770 0.434097 -0.331211 +0.689586 0.644027 -0.331211 +0.885863 0.459016 -0.067452 +0.689586 0.644027 -0.331211 +0.729172 0.680998 -0.067452 +0.729172 0.680998 -0.067452 +0.689586 0.644027 -0.331211 +0.490258 0.806193 -0.331211 +0.729172 0.680998 -0.067452 +0.490258 0.806193 -0.331211 +0.518401 0.852473 -0.067452 +0.518401 0.852473 -0.067452 +0.490258 0.806193 -0.331211 +0.254569 0.908567 -0.331211 +0.518401 0.852473 -0.067452 +0.254569 0.908567 -0.331211 +0.269183 0.960724 -0.067452 +0.269183 0.960724 -0.067452 +0.254569 0.908567 -0.331211 +0.000000 0.943557 -0.331211 +0.269183 0.960724 -0.067452 +0.000000 0.943557 -0.331211 +0.000000 0.997723 -0.067452 +0.000000 0.943557 -0.331211 +0.000000 0.820826 -0.571178 +-0.221456 0.790388 -0.571178 +0.000000 0.943557 -0.331211 +-0.221456 0.790388 -0.571178 +-0.254569 0.908567 -0.331211 +-0.254569 0.908567 -0.331211 +-0.221456 0.790388 -0.571178 +-0.426488 0.701330 -0.571178 +-0.254569 0.908567 -0.331211 +-0.426488 0.701330 -0.571178 +-0.490257 0.806193 -0.331211 +-0.490257 0.806193 -0.331211 +-0.426488 0.701330 -0.571178 +-0.599889 0.560257 -0.571178 +-0.490257 0.806193 -0.331211 +-0.599889 0.560257 -0.571178 +-0.689585 0.644028 -0.331211 +-0.689585 0.644028 -0.331211 +-0.599889 0.560257 -0.571178 +-0.728799 0.377633 -0.571178 +-0.689585 0.644028 -0.331211 +-0.728799 0.377633 -0.571178 +-0.837770 0.434097 -0.331211 +-0.837770 0.434097 -0.331211 +-0.728799 0.377633 -0.571178 +-0.803658 0.167002 -0.571178 +-0.837770 0.434097 -0.331211 +-0.803658 0.167002 -0.571178 +-0.923821 0.191972 -0.331211 +-0.923821 0.191972 -0.331211 +-0.803658 0.167002 -0.571178 +-0.818912 -0.056015 -0.571178 +-0.923821 0.191972 -0.331211 +-0.818912 -0.056015 -0.571178 +-0.941357 -0.064390 -0.331211 +-0.941357 -0.064390 -0.331211 +-0.818912 -0.056015 -0.571178 +-0.773432 -0.274878 -0.571178 +-0.941357 -0.064390 -0.331211 +-0.773432 -0.274878 -0.571178 +-0.889077 -0.315978 -0.331211 +-0.889077 -0.315978 -0.331211 +-0.773432 -0.274878 -0.571178 +-0.670590 -0.473354 -0.571178 +-0.889077 -0.315978 -0.331211 +-0.670590 -0.473354 -0.571178 +-0.770858 -0.544130 -0.331211 +-0.770858 -0.544130 -0.331211 +-0.670590 -0.473354 -0.571178 +-0.518014 -0.636724 -0.571178 +-0.770858 -0.544130 -0.331211 +-0.518014 -0.636724 -0.571178 +-0.595468 -0.731927 -0.331211 +-0.595468 -0.731927 -0.331211 +-0.518014 -0.636724 -0.571178 +-0.327018 -0.752871 -0.571178 +-0.595468 -0.731927 -0.331211 +-0.327018 -0.752871 -0.571178 +-0.375914 -0.865441 -0.331211 +-0.375914 -0.865441 -0.331211 +-0.327018 -0.752871 -0.571178 +-0.111769 -0.813181 -0.571178 +-0.375914 -0.865441 -0.331211 +-0.111769 -0.813181 -0.571178 +-0.128481 -0.934768 -0.331211 +-0.128481 -0.934768 -0.331211 +-0.111769 -0.813181 -0.571178 +0.111769 -0.813181 -0.571178 +-0.128481 -0.934768 -0.331211 +0.111769 -0.813181 -0.571178 +0.128480 -0.934768 -0.331211 +0.128480 -0.934768 -0.331211 +0.111769 -0.813181 -0.571178 +0.327018 -0.752871 -0.571178 +0.128480 -0.934768 -0.331211 +0.327018 -0.752871 -0.571178 +0.375914 -0.865441 -0.331211 +0.375914 -0.865441 -0.331211 +0.327018 -0.752871 -0.571178 +0.518013 -0.636724 -0.571178 +0.375914 -0.865441 -0.331211 +0.518013 -0.636724 -0.571178 +0.595467 -0.731928 -0.331211 +0.595467 -0.731928 -0.331211 +0.518013 -0.636724 -0.571178 +0.670590 -0.473355 -0.571178 +0.595467 -0.731928 -0.331211 +0.670590 -0.473355 -0.571178 +0.770857 -0.544131 -0.331211 +0.770857 -0.544131 -0.331211 +0.670590 -0.473355 -0.571178 +0.773432 -0.274878 -0.571178 +0.770857 -0.544131 -0.331211 +0.773432 -0.274878 -0.571178 +0.889076 -0.315978 -0.331211 +0.889076 -0.315978 -0.331211 +0.773432 -0.274878 -0.571178 +0.818912 -0.056016 -0.571178 +0.889076 -0.315978 -0.331211 +0.818912 -0.056016 -0.571178 +0.941357 -0.064391 -0.331211 +0.941357 -0.064391 -0.331211 +0.818912 -0.056016 -0.571178 +0.803658 0.167001 -0.571178 +0.941357 -0.064391 -0.331211 +0.803658 0.167001 -0.571178 +0.923822 0.191972 -0.331211 +0.923822 0.191972 -0.331211 +0.803658 0.167001 -0.571178 +0.728800 0.377633 -0.571178 +0.923822 0.191972 -0.331211 +0.728800 0.377633 -0.571178 +0.837770 0.434097 -0.331211 +0.837770 0.434097 -0.331211 +0.728800 0.377633 -0.571178 +0.599890 0.560257 -0.571178 +0.837770 0.434097 -0.331211 +0.599890 0.560257 -0.571178 +0.689586 0.644027 -0.331211 +0.689586 0.644027 -0.331211 +0.599890 0.560257 -0.571178 +0.426489 0.701329 -0.571178 +0.689586 0.644027 -0.331211 +0.426489 0.701329 -0.571178 +0.490258 0.806193 -0.331211 +0.490258 0.806193 -0.331211 +0.426489 0.701329 -0.571178 +0.221457 0.790387 -0.571178 +0.490258 0.806193 -0.331211 +0.221457 0.790387 -0.571178 +0.254569 0.908567 -0.331211 +0.254569 0.908567 -0.331211 +0.221457 0.790387 -0.571178 +0.000000 0.820826 -0.571178 +0.254569 0.908567 -0.331211 +0.000000 0.820826 -0.571178 +0.000000 0.943557 -0.331211 +0.000000 0.820826 -0.571178 +0.000000 0.638100 -0.769953 +-0.172157 0.614438 -0.769953 +0.000000 0.820826 -0.571178 +-0.172157 0.614438 -0.769953 +-0.221456 0.790388 -0.571178 +-0.221456 0.790388 -0.571178 +-0.172157 0.614438 -0.769953 +-0.331547 0.545205 -0.769953 +-0.221456 0.790388 -0.571178 +-0.331547 0.545205 -0.769953 +-0.426488 0.701330 -0.571178 +-0.426488 0.701330 -0.571178 +-0.331547 0.545205 -0.769953 +-0.466347 0.435537 -0.769953 +-0.426488 0.701330 -0.571178 +-0.466347 0.435537 -0.769953 +-0.599889 0.560257 -0.571178 +-0.599889 0.560257 -0.571178 +-0.466347 0.435537 -0.769953 +-0.566560 0.293568 -0.769953 +-0.599889 0.560257 -0.571178 +-0.566560 0.293568 -0.769953 +-0.728799 0.377633 -0.571178 +-0.728799 0.377633 -0.571178 +-0.566560 0.293568 -0.769953 +-0.624754 0.129825 -0.769953 +-0.728799 0.377633 -0.571178 +-0.624754 0.129825 -0.769953 +-0.803658 0.167002 -0.571178 +-0.803658 0.167002 -0.571178 +-0.624754 0.129825 -0.769953 +-0.636613 -0.043545 -0.769953 +-0.803658 0.167002 -0.571178 +-0.636613 -0.043545 -0.769953 +-0.818912 -0.056015 -0.571178 +-0.818912 -0.056015 -0.571178 +-0.636613 -0.043545 -0.769953 +-0.601257 -0.213687 -0.769953 +-0.818912 -0.056015 -0.571178 +-0.601257 -0.213687 -0.769953 +-0.773432 -0.274878 -0.571178 +-0.773432 -0.274878 -0.571178 +-0.601257 -0.213687 -0.769953 +-0.521309 -0.367980 -0.769953 +-0.773432 -0.274878 -0.571178 +-0.521309 -0.367980 -0.769953 +-0.670590 -0.473354 -0.571178 +-0.670590 -0.473354 -0.571178 +-0.521309 -0.367980 -0.769953 +-0.402698 -0.494982 -0.769953 +-0.670590 -0.473354 -0.571178 +-0.402698 -0.494982 -0.769953 +-0.518014 -0.636724 -0.571178 +-0.518014 -0.636724 -0.571178 +-0.402698 -0.494982 -0.769953 +-0.254220 -0.585273 -0.769953 +-0.518014 -0.636724 -0.571178 +-0.254220 -0.585273 -0.769953 +-0.327018 -0.752871 -0.571178 +-0.327018 -0.752871 -0.571178 +-0.254220 -0.585273 -0.769953 +-0.086888 -0.632157 -0.769953 +-0.327018 -0.752871 -0.571178 +-0.086888 -0.632157 -0.769953 +-0.111769 -0.813181 -0.571178 +-0.111769 -0.813181 -0.571178 +-0.086888 -0.632157 -0.769953 +0.086888 -0.632157 -0.769953 +-0.111769 -0.813181 -0.571178 +0.086888 -0.632157 -0.769953 +0.111769 -0.813181 -0.571178 +0.111769 -0.813181 -0.571178 +0.086888 -0.632157 -0.769953 +0.254220 -0.585273 -0.769953 +0.111769 -0.813181 -0.571178 +0.254220 -0.585273 -0.769953 +0.327018 -0.752871 -0.571178 +0.327018 -0.752871 -0.571178 +0.254220 -0.585273 -0.769953 +0.402697 -0.494982 -0.769953 +0.327018 -0.752871 -0.571178 +0.402697 -0.494982 -0.769953 +0.518013 -0.636724 -0.571178 +0.518013 -0.636724 -0.571178 +0.402697 -0.494982 -0.769953 +0.521309 -0.367980 -0.769953 +0.518013 -0.636724 -0.571178 +0.521309 -0.367980 -0.769953 +0.670590 -0.473355 -0.571178 +0.670590 -0.473355 -0.571178 +0.521309 -0.367980 -0.769953 +0.601257 -0.213687 -0.769953 +0.670590 -0.473355 -0.571178 +0.601257 -0.213687 -0.769953 +0.773432 -0.274878 -0.571178 +0.773432 -0.274878 -0.571178 +0.601257 -0.213687 -0.769953 +0.636613 -0.043546 -0.769953 +0.773432 -0.274878 -0.571178 +0.636613 -0.043546 -0.769953 +0.818912 -0.056016 -0.571178 +0.818912 -0.056016 -0.571178 +0.636613 -0.043546 -0.769953 +0.624754 0.129825 -0.769953 +0.818912 -0.056016 -0.571178 +0.624754 0.129825 -0.769953 +0.803658 0.167001 -0.571178 +0.803658 0.167001 -0.571178 +0.624754 0.129825 -0.769953 +0.566560 0.293567 -0.769953 +0.803658 0.167001 -0.571178 +0.566560 0.293567 -0.769953 +0.728800 0.377633 -0.571178 +0.728800 0.377633 -0.571178 +0.566560 0.293567 -0.769953 +0.466347 0.435537 -0.769953 +0.728800 0.377633 -0.571178 +0.466347 0.435537 -0.769953 +0.599890 0.560257 -0.571178 +0.599890 0.560257 -0.571178 +0.466347 0.435537 -0.769953 +0.331547 0.545205 -0.769953 +0.599890 0.560257 -0.571178 +0.331547 0.545205 -0.769953 +0.426489 0.701329 -0.571178 +0.426489 0.701329 -0.571178 +0.331547 0.545205 -0.769953 +0.172158 0.614438 -0.769953 +0.426489 0.701329 -0.571178 +0.172158 0.614438 -0.769953 +0.221457 0.790387 -0.571178 +0.221457 0.790387 -0.571178 +0.172158 0.614438 -0.769953 +0.000000 0.638100 -0.769953 +0.221457 0.790387 -0.571178 +0.000000 0.638100 -0.769953 +0.000000 0.820826 -0.571178 +0.000000 0.638100 -0.769953 +0.000000 0.379498 -0.925193 +-0.102387 0.365425 -0.925193 +0.000000 0.638100 -0.769953 +-0.102387 0.365425 -0.925193 +-0.172157 0.614438 -0.769953 +-0.172157 0.614438 -0.769953 +-0.102387 0.365425 -0.925193 +-0.197181 0.324250 -0.925193 +-0.172157 0.614438 -0.769953 +-0.197181 0.324250 -0.925193 +-0.331547 0.545205 -0.769953 +-0.331547 0.545205 -0.769953 +-0.197181 0.324250 -0.925193 +-0.277351 0.259028 -0.925193 +-0.331547 0.545205 -0.769953 +-0.277351 0.259028 -0.925193 +-0.466347 0.435537 -0.769953 +-0.466347 0.435537 -0.769953 +-0.277351 0.259028 -0.925193 +-0.336951 0.174594 -0.925193 +-0.466347 0.435537 -0.769953 +-0.336951 0.174594 -0.925193 +-0.566560 0.293568 -0.769953 +-0.566560 0.293568 -0.769953 +-0.336951 0.174594 -0.925193 +-0.371560 0.077211 -0.925193 +-0.566560 0.293568 -0.769953 +-0.371560 0.077211 -0.925193 +-0.624754 0.129825 -0.769953 +-0.624754 0.129825 -0.769953 +-0.371560 0.077211 -0.925193 +-0.378613 -0.025898 -0.925193 +-0.624754 0.129825 -0.769953 +-0.378613 -0.025898 -0.925193 +-0.636613 -0.043545 -0.769953 +-0.636613 -0.043545 -0.769953 +-0.378613 -0.025898 -0.925193 +-0.357586 -0.127086 -0.925192 +-0.636613 -0.043545 -0.769953 +-0.357586 -0.127086 -0.925192 +-0.601257 -0.213687 -0.769953 +-0.601257 -0.213687 -0.769953 +-0.357586 -0.127086 -0.925192 +-0.310039 -0.218849 -0.925193 +-0.601257 -0.213687 -0.769953 +-0.310039 -0.218849 -0.925193 +-0.521309 -0.367980 -0.769953 +-0.521309 -0.367980 -0.769953 +-0.310039 -0.218849 -0.925193 +-0.239497 -0.294381 -0.925193 +-0.521309 -0.367980 -0.769953 +-0.239497 -0.294381 -0.925193 +-0.402698 -0.494982 -0.769953 +-0.402698 -0.494982 -0.769953 +-0.239497 -0.294381 -0.925193 +-0.151193 -0.348080 -0.925193 +-0.402698 -0.494982 -0.769953 +-0.151193 -0.348080 -0.925193 +-0.254220 -0.585273 -0.769953 +-0.254220 -0.585273 -0.769953 +-0.151193 -0.348080 -0.925193 +-0.051675 -0.375963 -0.925193 +-0.254220 -0.585273 -0.769953 +-0.051675 -0.375963 -0.925193 +-0.086888 -0.632157 -0.769953 +-0.086888 -0.632157 -0.769953 +-0.051675 -0.375963 -0.925193 +0.051675 -0.375963 -0.925193 +-0.086888 -0.632157 -0.769953 +0.051675 -0.375963 -0.925193 +0.086888 -0.632157 -0.769953 +0.086888 -0.632157 -0.769953 +0.051675 -0.375963 -0.925193 +0.151192 -0.348080 -0.925193 +0.086888 -0.632157 -0.769953 +0.151192 -0.348080 -0.925193 +0.254220 -0.585273 -0.769953 +0.254220 -0.585273 -0.769953 +0.151192 -0.348080 -0.925193 +0.239496 -0.294381 -0.925193 +0.254220 -0.585273 -0.769953 +0.239496 -0.294381 -0.925193 +0.402697 -0.494982 -0.769953 +0.402697 -0.494982 -0.769953 +0.239496 -0.294381 -0.925193 +0.310038 -0.218849 -0.925193 +0.402697 -0.494982 -0.769953 +0.310038 -0.218849 -0.925193 +0.521309 -0.367980 -0.769953 +0.521309 -0.367980 -0.769953 +0.310038 -0.218849 -0.925193 +0.357586 -0.127086 -0.925193 +0.521309 -0.367980 -0.769953 +0.357586 -0.127086 -0.925193 +0.601257 -0.213687 -0.769953 +0.601257 -0.213687 -0.769953 +0.357586 -0.127086 -0.925193 +0.378613 -0.025898 -0.925193 +0.601257 -0.213687 -0.769953 +0.378613 -0.025898 -0.925193 +0.636613 -0.043546 -0.769953 +0.636613 -0.043546 -0.769953 +0.378613 -0.025898 -0.925193 +0.371561 0.077211 -0.925193 +0.636613 -0.043546 -0.769953 +0.371561 0.077211 -0.925193 +0.624754 0.129825 -0.769953 +0.624754 0.129825 -0.769953 +0.371561 0.077211 -0.925193 +0.336951 0.174593 -0.925193 +0.624754 0.129825 -0.769953 +0.336951 0.174593 -0.925193 +0.566560 0.293567 -0.769953 +0.566560 0.293567 -0.769953 +0.336951 0.174593 -0.925193 +0.277351 0.259027 -0.925193 +0.566560 0.293567 -0.769953 +0.277351 0.259027 -0.925193 +0.466347 0.435537 -0.769953 +0.466347 0.435537 -0.769953 +0.277351 0.259027 -0.925193 +0.197181 0.324250 -0.925193 +0.466347 0.435537 -0.769953 +0.197181 0.324250 -0.925193 +0.331547 0.545205 -0.769953 +0.331547 0.545205 -0.769953 +0.197181 0.324250 -0.925193 +0.102388 0.365425 -0.925192 +0.331547 0.545205 -0.769953 +0.102388 0.365425 -0.925192 +0.172158 0.614438 -0.769953 +0.172158 0.614438 -0.769953 +0.102388 0.365425 -0.925192 +0.000000 0.379498 -0.925193 +0.172158 0.614438 -0.769953 +0.000000 0.379498 -0.925193 +0.000000 0.638100 -0.769953 +0.000000 0.000000 -1.000000 +-0.102387 0.365425 -0.925193 +0.000000 0.379498 -0.925193 +0.000000 0.000000 -1.000000 +-0.197181 0.324250 -0.925193 +-0.102387 0.365425 -0.925193 +0.000000 0.000000 -1.000000 +-0.277351 0.259028 -0.925193 +-0.197181 0.324250 -0.925193 +0.000000 0.000000 -1.000000 +-0.336951 0.174594 -0.925193 +-0.277351 0.259028 -0.925193 +0.000000 0.000000 -1.000000 +-0.371560 0.077211 -0.925193 +-0.336951 0.174594 -0.925193 +0.000000 0.000000 -1.000000 +-0.378613 -0.025898 -0.925193 +-0.371560 0.077211 -0.925193 +0.000000 0.000000 -1.000000 +-0.357586 -0.127086 -0.925192 +-0.378613 -0.025898 -0.925193 +0.000000 0.000000 -1.000000 +-0.310039 -0.218849 -0.925193 +-0.357586 -0.127086 -0.925192 +0.000000 0.000000 -1.000000 +-0.239497 -0.294381 -0.925193 +-0.310039 -0.218849 -0.925193 +0.000000 0.000000 -1.000000 +-0.151193 -0.348080 -0.925193 +-0.239497 -0.294381 -0.925193 +0.000000 0.000000 -1.000000 +-0.051675 -0.375963 -0.925193 +-0.151193 -0.348080 -0.925193 +0.000000 0.000000 -1.000000 +0.051675 -0.375963 -0.925193 +-0.051675 -0.375963 -0.925193 +0.000000 0.000000 -1.000000 +0.151192 -0.348080 -0.925193 +0.051675 -0.375963 -0.925193 +0.000000 0.000000 -1.000000 +0.239496 -0.294381 -0.925193 +0.151192 -0.348080 -0.925193 +0.000000 0.000000 -1.000000 +0.310038 -0.218849 -0.925193 +0.239496 -0.294381 -0.925193 +0.000000 0.000000 -1.000000 +0.357586 -0.127086 -0.925193 +0.310038 -0.218849 -0.925193 +0.000000 0.000000 -1.000000 +0.378613 -0.025898 -0.925193 +0.357586 -0.127086 -0.925193 +0.000000 0.000000 -1.000000 +0.371561 0.077211 -0.925193 +0.378613 -0.025898 -0.925193 +0.000000 0.000000 -1.000000 +0.336951 0.174593 -0.925193 +0.371561 0.077211 -0.925193 +0.000000 0.000000 -1.000000 +0.277351 0.259027 -0.925193 +0.336951 0.174593 -0.925193 +0.000000 0.000000 -1.000000 +0.197181 0.324250 -0.925193 +0.277351 0.259027 -0.925193 +0.000000 0.000000 -1.000000 +0.102388 0.365425 -0.925192 +0.197181 0.324250 -0.925193 +0.000000 0.000000 -1.000000 +0.000000 0.379498 -0.925193 +0.102388 0.365425 -0.925192 + + + + + + + + + + + +0.000000 1.000000 +0.043478 1.000000 +0.086957 1.000000 +0.130435 1.000000 +0.173913 1.000000 +0.217391 1.000000 +0.260870 1.000000 +0.304348 1.000000 +0.347826 1.000000 +0.391304 1.000000 +0.434783 1.000000 +0.478261 1.000000 +0.521739 1.000000 +0.565217 1.000000 +0.608696 1.000000 +0.652174 1.000000 +0.695652 1.000000 +0.739130 1.000000 +0.782609 1.000000 +0.826087 1.000000 +0.869565 1.000000 +0.913043 1.000000 +0.956522 1.000000 +1.000000 1.000000 +0.000000 0.913043 +0.043478 0.913043 +0.086957 0.913043 +0.130435 0.913043 +0.173913 0.913043 +0.217391 0.913043 +0.260870 0.913043 +0.304348 0.913043 +0.347826 0.913043 +0.391304 0.913043 +0.434783 0.913043 +0.478261 0.913043 +0.521739 0.913043 +0.565217 0.913043 +0.608696 0.913043 +0.652174 0.913043 +0.695652 0.913043 +0.739130 0.913043 +0.782609 0.913043 +0.826087 0.913043 +0.869565 0.913043 +0.913043 0.913043 +0.956522 0.913043 +1.000000 0.913043 +0.000000 0.826087 +0.043478 0.826087 +0.086957 0.826087 +0.130435 0.826087 +0.173913 0.826087 +0.217391 0.826087 +0.260870 0.826087 +0.304348 0.826087 +0.347826 0.826087 +0.391304 0.826087 +0.434783 0.826087 +0.478261 0.826087 +0.521739 0.826087 +0.565217 0.826087 +0.608696 0.826087 +0.652174 0.826087 +0.695652 0.826087 +0.739130 0.826087 +0.782609 0.826087 +0.826087 0.826087 +0.869565 0.826087 +0.913043 0.826087 +0.956522 0.826087 +1.000000 0.826087 +0.000000 0.739130 +0.043478 0.739130 +0.086957 0.739130 +0.130435 0.739130 +0.173913 0.739130 +0.217391 0.739130 +0.260870 0.739130 +0.304348 0.739130 +0.347826 0.739130 +0.391304 0.739130 +0.434783 0.739130 +0.478261 0.739130 +0.521739 0.739130 +0.565217 0.739130 +0.608696 0.739130 +0.652174 0.739130 +0.695652 0.739130 +0.739130 0.739130 +0.782609 0.739130 +0.826087 0.739130 +0.869565 0.739130 +0.913043 0.739130 +0.956522 0.739130 +1.000000 0.739130 +0.000000 0.652174 +0.043478 0.652174 +0.086957 0.652174 +0.130435 0.652174 +0.173913 0.652174 +0.217391 0.652174 +0.260870 0.652174 +0.304348 0.652174 +0.347826 0.652174 +0.391304 0.652174 +0.434783 0.652174 +0.478261 0.652174 +0.521739 0.652174 +0.565217 0.652174 +0.608696 0.652174 +0.652174 0.652174 +0.695652 0.652174 +0.739130 0.652174 +0.782609 0.652174 +0.826087 0.652174 +0.869565 0.652174 +0.913043 0.652174 +0.956522 0.652174 +1.000000 0.652174 +0.000000 0.565217 +0.043478 0.565217 +0.086957 0.565217 +0.130435 0.565217 +0.173913 0.565217 +0.217391 0.565217 +0.260870 0.565217 +0.304348 0.565217 +0.347826 0.565217 +0.391304 0.565217 +0.434783 0.565217 +0.478261 0.565217 +0.521739 0.565217 +0.565217 0.565217 +0.608696 0.565217 +0.652174 0.565217 +0.695652 0.565217 +0.739130 0.565217 +0.782609 0.565217 +0.826087 0.565217 +0.869565 0.565217 +0.913043 0.565217 +0.956522 0.565217 +1.000000 0.565217 +0.000000 0.478261 +0.043478 0.478261 +0.086957 0.478261 +0.130435 0.478261 +0.173913 0.478261 +0.217391 0.478261 +0.260870 0.478261 +0.304348 0.478261 +0.347826 0.478261 +0.391304 0.478261 +0.434783 0.478261 +0.478261 0.478261 +0.521739 0.478261 +0.565217 0.478261 +0.608696 0.478261 +0.652174 0.478261 +0.695652 0.478261 +0.739130 0.478261 +0.782609 0.478261 +0.826087 0.478261 +0.869565 0.478261 +0.913043 0.478261 +0.956522 0.478261 +1.000000 0.478261 +0.000000 0.391304 +0.043478 0.391304 +0.086957 0.391304 +0.130435 0.391304 +0.173913 0.391304 +0.217391 0.391304 +0.260870 0.391304 +0.304348 0.391304 +0.347826 0.391304 +0.391304 0.391304 +0.434783 0.391304 +0.478261 0.391304 +0.521739 0.391304 +0.565217 0.391304 +0.608696 0.391304 +0.652174 0.391304 +0.695652 0.391304 +0.739130 0.391304 +0.782609 0.391304 +0.826087 0.391304 +0.869565 0.391304 +0.913043 0.391304 +0.956522 0.391304 +1.000000 0.391304 +0.000000 0.304348 +0.043478 0.304348 +0.086957 0.304348 +0.130435 0.304348 +0.173913 0.304348 +0.217391 0.304348 +0.260870 0.304348 +0.304348 0.304348 +0.347826 0.304348 +0.391304 0.304348 +0.434783 0.304348 +0.478261 0.304348 +0.521739 0.304348 +0.565217 0.304348 +0.608696 0.304348 +0.652174 0.304348 +0.695652 0.304348 +0.739130 0.304348 +0.782609 0.304348 +0.826087 0.304348 +0.869565 0.304348 +0.913043 0.304348 +0.956522 0.304348 +1.000000 0.304348 +0.000000 0.217391 +0.043478 0.217391 +0.086957 0.217391 +0.130435 0.217391 +0.173913 0.217391 +0.217391 0.217391 +0.260870 0.217391 +0.304348 0.217391 +0.347826 0.217391 +0.391304 0.217391 +0.434783 0.217391 +0.478261 0.217391 +0.521739 0.217391 +0.565217 0.217391 +0.608696 0.217391 +0.652174 0.217391 +0.695652 0.217391 +0.739130 0.217391 +0.782609 0.217391 +0.826087 0.217391 +0.869565 0.217391 +0.913043 0.217391 +0.956522 0.217391 +1.000000 0.217391 +0.000000 0.130435 +0.043478 0.130435 +0.086957 0.130435 +0.130435 0.130435 +0.173913 0.130435 +0.217391 0.130435 +0.260870 0.130435 +0.304348 0.130435 +0.347826 0.130435 +0.391304 0.130435 +0.434783 0.130435 +0.478261 0.130435 +0.521739 0.130435 +0.565217 0.130435 +0.608696 0.130435 +0.652174 0.130435 +0.695652 0.130435 +0.739130 0.130435 +0.782609 0.130435 +0.826087 0.130435 +0.869565 0.130435 +0.913043 0.130435 +0.956522 0.130435 +1.000000 0.130435 +0.000000 0.043478 +0.043478 0.043478 +0.086957 0.043478 +0.130435 0.043478 +0.173913 0.043478 +0.217391 0.043478 +0.260870 0.043478 +0.304348 0.043478 +0.347826 0.043478 +0.391304 0.043478 +0.434783 0.043478 +0.478261 0.043478 +0.521739 0.043478 +0.565217 0.043478 +0.608696 0.043478 +0.652174 0.043478 +0.695652 0.043478 +0.739130 0.043478 +0.782609 0.043478 +0.826087 0.043478 +0.869565 0.043478 +0.913043 0.043478 +0.956522 0.043478 +1.000000 0.043478 + + + + + + + + + + + + + + + +

0 0 0 1 1 24 2 2 25

+

0 3 1 2 4 25 3 5 26

+

0 6 2 3 7 26 4 8 27

+

0 9 3 4 10 27 5 11 28

+

0 12 4 5 13 28 6 14 29

+

0 15 5 6 16 29 7 17 30

+

0 18 6 7 19 30 8 20 31

+

0 21 7 8 22 31 9 23 32

+

0 24 8 9 25 32 10 26 33

+

0 27 9 10 28 33 11 29 34

+

0 30 10 11 31 34 12 32 35

+

0 33 11 12 34 35 13 35 36

+

0 36 12 13 37 36 14 38 37

+

0 39 13 14 40 37 15 41 38

+

0 42 14 15 43 38 16 44 39

+

0 45 15 16 46 39 17 47 40

+

0 48 16 17 49 40 18 50 41

+

0 51 17 18 52 41 19 53 42

+

0 54 18 19 55 42 20 56 43

+

0 57 19 20 58 43 21 59 44

+

0 60 20 21 61 44 22 62 45

+

0 63 21 22 64 45 23 65 46

+

0 66 22 23 67 46 1 68 47

+

1 69 24 24 70 48 25 71 49

+

1 72 24 25 73 49 2 74 25

+

2 75 25 25 76 49 26 77 50

+

2 78 25 26 79 50 3 80 26

+

3 81 26 26 82 50 27 83 51

+

3 84 26 27 85 51 4 86 27

+

4 87 27 27 88 51 28 89 52

+

4 90 27 28 91 52 5 92 28

+

5 93 28 28 94 52 29 95 53

+

5 96 28 29 97 53 6 98 29

+

6 99 29 29 100 53 30 101 54

+

6 102 29 30 103 54 7 104 30

+

7 105 30 30 106 54 31 107 55

+

7 108 30 31 109 55 8 110 31

+

8 111 31 31 112 55 32 113 56

+

8 114 31 32 115 56 9 116 32

+

9 117 32 32 118 56 33 119 57

+

9 120 32 33 121 57 10 122 33

+

10 123 33 33 124 57 34 125 58

+

10 126 33 34 127 58 11 128 34

+

11 129 34 34 130 58 35 131 59

+

11 132 34 35 133 59 12 134 35

+

12 135 35 35 136 59 36 137 60

+

12 138 35 36 139 60 13 140 36

+

13 141 36 36 142 60 37 143 61

+

13 144 36 37 145 61 14 146 37

+

14 147 37 37 148 61 38 149 62

+

14 150 37 38 151 62 15 152 38

+

15 153 38 38 154 62 39 155 63

+

15 156 38 39 157 63 16 158 39

+

16 159 39 39 160 63 40 161 64

+

16 162 39 40 163 64 17 164 40

+

17 165 40 40 166 64 41 167 65

+

17 168 40 41 169 65 18 170 41

+

18 171 41 41 172 65 42 173 66

+

18 174 41 42 175 66 19 176 42

+

19 177 42 42 178 66 43 179 67

+

19 180 42 43 181 67 20 182 43

+

20 183 43 43 184 67 44 185 68

+

20 186 43 44 187 68 21 188 44

+

21 189 44 44 190 68 45 191 69

+

21 192 44 45 193 69 22 194 45

+

22 195 45 45 196 69 46 197 70

+

22 198 45 46 199 70 23 200 46

+

23 201 46 46 202 70 24 203 71

+

23 204 46 24 205 71 1 206 47

+

24 207 48 47 208 72 48 209 73

+

24 210 48 48 211 73 25 212 49

+

25 213 49 48 214 73 49 215 74

+

25 216 49 49 217 74 26 218 50

+

26 219 50 49 220 74 50 221 75

+

26 222 50 50 223 75 27 224 51

+

27 225 51 50 226 75 51 227 76

+

27 228 51 51 229 76 28 230 52

+

28 231 52 51 232 76 52 233 77

+

28 234 52 52 235 77 29 236 53

+

29 237 53 52 238 77 53 239 78

+

29 240 53 53 241 78 30 242 54

+

30 243 54 53 244 78 54 245 79

+

30 246 54 54 247 79 31 248 55

+

31 249 55 54 250 79 55 251 80

+

31 252 55 55 253 80 32 254 56

+

32 255 56 55 256 80 56 257 81

+

32 258 56 56 259 81 33 260 57

+

33 261 57 56 262 81 57 263 82

+

33 264 57 57 265 82 34 266 58

+

34 267 58 57 268 82 58 269 83

+

34 270 58 58 271 83 35 272 59

+

35 273 59 58 274 83 59 275 84

+

35 276 59 59 277 84 36 278 60

+

36 279 60 59 280 84 60 281 85

+

36 282 60 60 283 85 37 284 61

+

37 285 61 60 286 85 61 287 86

+

37 288 61 61 289 86 38 290 62

+

38 291 62 61 292 86 62 293 87

+

38 294 62 62 295 87 39 296 63

+

39 297 63 62 298 87 63 299 88

+

39 300 63 63 301 88 40 302 64

+

40 303 64 63 304 88 64 305 89

+

40 306 64 64 307 89 41 308 65

+

41 309 65 64 310 89 65 311 90

+

41 312 65 65 313 90 42 314 66

+

42 315 66 65 316 90 66 317 91

+

42 318 66 66 319 91 43 320 67

+

43 321 67 66 322 91 67 323 92

+

43 324 67 67 325 92 44 326 68

+

44 327 68 67 328 92 68 329 93

+

44 330 68 68 331 93 45 332 69

+

45 333 69 68 334 93 69 335 94

+

45 336 69 69 337 94 46 338 70

+

46 339 70 69 340 94 47 341 95

+

46 342 70 47 343 95 24 344 71

+

47 345 72 70 346 96 71 347 97

+

47 348 72 71 349 97 48 350 73

+

48 351 73 71 352 97 72 353 98

+

48 354 73 72 355 98 49 356 74

+

49 357 74 72 358 98 73 359 99

+

49 360 74 73 361 99 50 362 75

+

50 363 75 73 364 99 74 365 100

+

50 366 75 74 367 100 51 368 76

+

51 369 76 74 370 100 75 371 101

+

51 372 76 75 373 101 52 374 77

+

52 375 77 75 376 101 76 377 102

+

52 378 77 76 379 102 53 380 78

+

53 381 78 76 382 102 77 383 103

+

53 384 78 77 385 103 54 386 79

+

54 387 79 77 388 103 78 389 104

+

54 390 79 78 391 104 55 392 80

+

55 393 80 78 394 104 79 395 105

+

55 396 80 79 397 105 56 398 81

+

56 399 81 79 400 105 80 401 106

+

56 402 81 80 403 106 57 404 82

+

57 405 82 80 406 106 81 407 107

+

57 408 82 81 409 107 58 410 83

+

58 411 83 81 412 107 82 413 108

+

58 414 83 82 415 108 59 416 84

+

59 417 84 82 418 108 83 419 109

+

59 420 84 83 421 109 60 422 85

+

60 423 85 83 424 109 84 425 110

+

60 426 85 84 427 110 61 428 86

+

61 429 86 84 430 110 85 431 111

+

61 432 86 85 433 111 62 434 87

+

62 435 87 85 436 111 86 437 112

+

62 438 87 86 439 112 63 440 88

+

63 441 88 86 442 112 87 443 113

+

63 444 88 87 445 113 64 446 89

+

64 447 89 87 448 113 88 449 114

+

64 450 89 88 451 114 65 452 90

+

65 453 90 88 454 114 89 455 115

+

65 456 90 89 457 115 66 458 91

+

66 459 91 89 460 115 90 461 116

+

66 462 91 90 463 116 67 464 92

+

67 465 92 90 466 116 91 467 117

+

67 468 92 91 469 117 68 470 93

+

68 471 93 91 472 117 92 473 118

+

68 474 93 92 475 118 69 476 94

+

69 477 94 92 478 118 70 479 119

+

69 480 94 70 481 119 47 482 95

+

70 483 96 93 484 120 94 485 121

+

70 486 96 94 487 121 71 488 97

+

71 489 97 94 490 121 95 491 122

+

71 492 97 95 493 122 72 494 98

+

72 495 98 95 496 122 96 497 123

+

72 498 98 96 499 123 73 500 99

+

73 501 99 96 502 123 97 503 124

+

73 504 99 97 505 124 74 506 100

+

74 507 100 97 508 124 98 509 125

+

74 510 100 98 511 125 75 512 101

+

75 513 101 98 514 125 99 515 126

+

75 516 101 99 517 126 76 518 102

+

76 519 102 99 520 126 100 521 127

+

76 522 102 100 523 127 77 524 103

+

77 525 103 100 526 127 101 527 128

+

77 528 103 101 529 128 78 530 104

+

78 531 104 101 532 128 102 533 129

+

78 534 104 102 535 129 79 536 105

+

79 537 105 102 538 129 103 539 130

+

79 540 105 103 541 130 80 542 106

+

80 543 106 103 544 130 104 545 131

+

80 546 106 104 547 131 81 548 107

+

81 549 107 104 550 131 105 551 132

+

81 552 107 105 553 132 82 554 108

+

82 555 108 105 556 132 106 557 133

+

82 558 108 106 559 133 83 560 109

+

83 561 109 106 562 133 107 563 134

+

83 564 109 107 565 134 84 566 110

+

84 567 110 107 568 134 108 569 135

+

84 570 110 108 571 135 85 572 111

+

85 573 111 108 574 135 109 575 136

+

85 576 111 109 577 136 86 578 112

+

86 579 112 109 580 136 110 581 137

+

86 582 112 110 583 137 87 584 113

+

87 585 113 110 586 137 111 587 138

+

87 588 113 111 589 138 88 590 114

+

88 591 114 111 592 138 112 593 139

+

88 594 114 112 595 139 89 596 115

+

89 597 115 112 598 139 113 599 140

+

89 600 115 113 601 140 90 602 116

+

90 603 116 113 604 140 114 605 141

+

90 606 116 114 607 141 91 608 117

+

91 609 117 114 610 141 115 611 142

+

91 612 117 115 613 142 92 614 118

+

92 615 118 115 616 142 93 617 143

+

92 618 118 93 619 143 70 620 119

+

93 621 120 116 622 144 117 623 145

+

93 624 120 117 625 145 94 626 121

+

94 627 121 117 628 145 118 629 146

+

94 630 121 118 631 146 95 632 122

+

95 633 122 118 634 146 119 635 147

+

95 636 122 119 637 147 96 638 123

+

96 639 123 119 640 147 120 641 148

+

96 642 123 120 643 148 97 644 124

+

97 645 124 120 646 148 121 647 149

+

97 648 124 121 649 149 98 650 125

+

98 651 125 121 652 149 122 653 150

+

98 654 125 122 655 150 99 656 126

+

99 657 126 122 658 150 123 659 151

+

99 660 126 123 661 151 100 662 127

+

100 663 127 123 664 151 124 665 152

+

100 666 127 124 667 152 101 668 128

+

101 669 128 124 670 152 125 671 153

+

101 672 128 125 673 153 102 674 129

+

102 675 129 125 676 153 126 677 154

+

102 678 129 126 679 154 103 680 130

+

103 681 130 126 682 154 127 683 155

+

103 684 130 127 685 155 104 686 131

+

104 687 131 127 688 155 128 689 156

+

104 690 131 128 691 156 105 692 132

+

105 693 132 128 694 156 129 695 157

+

105 696 132 129 697 157 106 698 133

+

106 699 133 129 700 157 130 701 158

+

106 702 133 130 703 158 107 704 134

+

107 705 134 130 706 158 131 707 159

+

107 708 134 131 709 159 108 710 135

+

108 711 135 131 712 159 132 713 160

+

108 714 135 132 715 160 109 716 136

+

109 717 136 132 718 160 133 719 161

+

109 720 136 133 721 161 110 722 137

+

110 723 137 133 724 161 134 725 162

+

110 726 137 134 727 162 111 728 138

+

111 729 138 134 730 162 135 731 163

+

111 732 138 135 733 163 112 734 139

+

112 735 139 135 736 163 136 737 164

+

112 738 139 136 739 164 113 740 140

+

113 741 140 136 742 164 137 743 165

+

113 744 140 137 745 165 114 746 141

+

114 747 141 137 748 165 138 749 166

+

114 750 141 138 751 166 115 752 142

+

115 753 142 138 754 166 116 755 167

+

115 756 142 116 757 167 93 758 143

+

116 759 144 139 760 168 140 761 169

+

116 762 144 140 763 169 117 764 145

+

117 765 145 140 766 169 141 767 170

+

117 768 145 141 769 170 118 770 146

+

118 771 146 141 772 170 142 773 171

+

118 774 146 142 775 171 119 776 147

+

119 777 147 142 778 171 143 779 172

+

119 780 147 143 781 172 120 782 148

+

120 783 148 143 784 172 144 785 173

+

120 786 148 144 787 173 121 788 149

+

121 789 149 144 790 173 145 791 174

+

121 792 149 145 793 174 122 794 150

+

122 795 150 145 796 174 146 797 175

+

122 798 150 146 799 175 123 800 151

+

123 801 151 146 802 175 147 803 176

+

123 804 151 147 805 176 124 806 152

+

124 807 152 147 808 176 148 809 177

+

124 810 152 148 811 177 125 812 153

+

125 813 153 148 814 177 149 815 178

+

125 816 153 149 817 178 126 818 154

+

126 819 154 149 820 178 150 821 179

+

126 822 154 150 823 179 127 824 155

+

127 825 155 150 826 179 151 827 180

+

127 828 155 151 829 180 128 830 156

+

128 831 156 151 832 180 152 833 181

+

128 834 156 152 835 181 129 836 157

+

129 837 157 152 838 181 153 839 182

+

129 840 157 153 841 182 130 842 158

+

130 843 158 153 844 182 154 845 183

+

130 846 158 154 847 183 131 848 159

+

131 849 159 154 850 183 155 851 184

+

131 852 159 155 853 184 132 854 160

+

132 855 160 155 856 184 156 857 185

+

132 858 160 156 859 185 133 860 161

+

133 861 161 156 862 185 157 863 186

+

133 864 161 157 865 186 134 866 162

+

134 867 162 157 868 186 158 869 187

+

134 870 162 158 871 187 135 872 163

+

135 873 163 158 874 187 159 875 188

+

135 876 163 159 877 188 136 878 164

+

136 879 164 159 880 188 160 881 189

+

136 882 164 160 883 189 137 884 165

+

137 885 165 160 886 189 161 887 190

+

137 888 165 161 889 190 138 890 166

+

138 891 166 161 892 190 139 893 191

+

138 894 166 139 895 191 116 896 167

+

139 897 168 162 898 192 163 899 193

+

139 900 168 163 901 193 140 902 169

+

140 903 169 163 904 193 164 905 194

+

140 906 169 164 907 194 141 908 170

+

141 909 170 164 910 194 165 911 195

+

141 912 170 165 913 195 142 914 171

+

142 915 171 165 916 195 166 917 196

+

142 918 171 166 919 196 143 920 172

+

143 921 172 166 922 196 167 923 197

+

143 924 172 167 925 197 144 926 173

+

144 927 173 167 928 197 168 929 198

+

144 930 173 168 931 198 145 932 174

+

145 933 174 168 934 198 169 935 199

+

145 936 174 169 937 199 146 938 175

+

146 939 175 169 940 199 170 941 200

+

146 942 175 170 943 200 147 944 176

+

147 945 176 170 946 200 171 947 201

+

147 948 176 171 949 201 148 950 177

+

148 951 177 171 952 201 172 953 202

+

148 954 177 172 955 202 149 956 178

+

149 957 178 172 958 202 173 959 203

+

149 960 178 173 961 203 150 962 179

+

150 963 179 173 964 203 174 965 204

+

150 966 179 174 967 204 151 968 180

+

151 969 180 174 970 204 175 971 205

+

151 972 180 175 973 205 152 974 181

+

152 975 181 175 976 205 176 977 206

+

152 978 181 176 979 206 153 980 182

+

153 981 182 176 982 206 177 983 207

+

153 984 182 177 985 207 154 986 183

+

154 987 183 177 988 207 178 989 208

+

154 990 183 178 991 208 155 992 184

+

155 993 184 178 994 208 179 995 209

+

155 996 184 179 997 209 156 998 185

+

156 999 185 179 1000 209 180 1001 210

+

156 1002 185 180 1003 210 157 1004 186

+

157 1005 186 180 1006 210 181 1007 211

+

157 1008 186 181 1009 211 158 1010 187

+

158 1011 187 181 1012 211 182 1013 212

+

158 1014 187 182 1015 212 159 1016 188

+

159 1017 188 182 1018 212 183 1019 213

+

159 1020 188 183 1021 213 160 1022 189

+

160 1023 189 183 1024 213 184 1025 214

+

160 1026 189 184 1027 214 161 1028 190

+

161 1029 190 184 1030 214 162 1031 215

+

161 1032 190 162 1033 215 139 1034 191

+

162 1035 192 185 1036 216 186 1037 217

+

162 1038 192 186 1039 217 163 1040 193

+

163 1041 193 186 1042 217 187 1043 218

+

163 1044 193 187 1045 218 164 1046 194

+

164 1047 194 187 1048 218 188 1049 219

+

164 1050 194 188 1051 219 165 1052 195

+

165 1053 195 188 1054 219 189 1055 220

+

165 1056 195 189 1057 220 166 1058 196

+

166 1059 196 189 1060 220 190 1061 221

+

166 1062 196 190 1063 221 167 1064 197

+

167 1065 197 190 1066 221 191 1067 222

+

167 1068 197 191 1069 222 168 1070 198

+

168 1071 198 191 1072 222 192 1073 223

+

168 1074 198 192 1075 223 169 1076 199

+

169 1077 199 192 1078 223 193 1079 224

+

169 1080 199 193 1081 224 170 1082 200

+

170 1083 200 193 1084 224 194 1085 225

+

170 1086 200 194 1087 225 171 1088 201

+

171 1089 201 194 1090 225 195 1091 226

+

171 1092 201 195 1093 226 172 1094 202

+

172 1095 202 195 1096 226 196 1097 227

+

172 1098 202 196 1099 227 173 1100 203

+

173 1101 203 196 1102 227 197 1103 228

+

173 1104 203 197 1105 228 174 1106 204

+

174 1107 204 197 1108 228 198 1109 229

+

174 1110 204 198 1111 229 175 1112 205

+

175 1113 205 198 1114 229 199 1115 230

+

175 1116 205 199 1117 230 176 1118 206

+

176 1119 206 199 1120 230 200 1121 231

+

176 1122 206 200 1123 231 177 1124 207

+

177 1125 207 200 1126 231 201 1127 232

+

177 1128 207 201 1129 232 178 1130 208

+

178 1131 208 201 1132 232 202 1133 233

+

178 1134 208 202 1135 233 179 1136 209

+

179 1137 209 202 1138 233 203 1139 234

+

179 1140 209 203 1141 234 180 1142 210

+

180 1143 210 203 1144 234 204 1145 235

+

180 1146 210 204 1147 235 181 1148 211

+

181 1149 211 204 1150 235 205 1151 236

+

181 1152 211 205 1153 236 182 1154 212

+

182 1155 212 205 1156 236 206 1157 237

+

182 1158 212 206 1159 237 183 1160 213

+

183 1161 213 206 1162 237 207 1163 238

+

183 1164 213 207 1165 238 184 1166 214

+

184 1167 214 207 1168 238 185 1169 239

+

184 1170 214 185 1171 239 162 1172 215

+

185 1173 216 208 1174 240 209 1175 241

+

185 1176 216 209 1177 241 186 1178 217

+

186 1179 217 209 1180 241 210 1181 242

+

186 1182 217 210 1183 242 187 1184 218

+

187 1185 218 210 1186 242 211 1187 243

+

187 1188 218 211 1189 243 188 1190 219

+

188 1191 219 211 1192 243 212 1193 244

+

188 1194 219 212 1195 244 189 1196 220

+

189 1197 220 212 1198 244 213 1199 245

+

189 1200 220 213 1201 245 190 1202 221

+

190 1203 221 213 1204 245 214 1205 246

+

190 1206 221 214 1207 246 191 1208 222

+

191 1209 222 214 1210 246 215 1211 247

+

191 1212 222 215 1213 247 192 1214 223

+

192 1215 223 215 1216 247 216 1217 248

+

192 1218 223 216 1219 248 193 1220 224

+

193 1221 224 216 1222 248 217 1223 249

+

193 1224 224 217 1225 249 194 1226 225

+

194 1227 225 217 1228 249 218 1229 250

+

194 1230 225 218 1231 250 195 1232 226

+

195 1233 226 218 1234 250 219 1235 251

+

195 1236 226 219 1237 251 196 1238 227

+

196 1239 227 219 1240 251 220 1241 252

+

196 1242 227 220 1243 252 197 1244 228

+

197 1245 228 220 1246 252 221 1247 253

+

197 1248 228 221 1249 253 198 1250 229

+

198 1251 229 221 1252 253 222 1253 254

+

198 1254 229 222 1255 254 199 1256 230

+

199 1257 230 222 1258 254 223 1259 255

+

199 1260 230 223 1261 255 200 1262 231

+

200 1263 231 223 1264 255 224 1265 256

+

200 1266 231 224 1267 256 201 1268 232

+

201 1269 232 224 1270 256 225 1271 257

+

201 1272 232 225 1273 257 202 1274 233

+

202 1275 233 225 1276 257 226 1277 258

+

202 1278 233 226 1279 258 203 1280 234

+

203 1281 234 226 1282 258 227 1283 259

+

203 1284 234 227 1285 259 204 1286 235

+

204 1287 235 227 1288 259 228 1289 260

+

204 1290 235 228 1291 260 205 1292 236

+

205 1293 236 228 1294 260 229 1295 261

+

205 1296 236 229 1297 261 206 1298 237

+

206 1299 237 229 1300 261 230 1301 262

+

206 1302 237 230 1303 262 207 1304 238

+

207 1305 238 230 1306 262 208 1307 263

+

207 1308 238 208 1309 263 185 1310 239

+

231 1311 264 209 1312 241 208 1313 240

+

231 1314 265 210 1315 242 209 1316 241

+

231 1317 266 211 1318 243 210 1319 242

+

231 1320 267 212 1321 244 211 1322 243

+

231 1323 268 213 1324 245 212 1325 244

+

231 1326 269 214 1327 246 213 1328 245

+

231 1329 270 215 1330 247 214 1331 246

+

231 1332 271 216 1333 248 215 1334 247

+

231 1335 272 217 1336 249 216 1337 248

+

231 1338 273 218 1339 250 217 1340 249

+

231 1341 274 219 1342 251 218 1343 250

+

231 1344 275 220 1345 252 219 1346 251

+

231 1347 276 221 1348 253 220 1349 252

+

231 1350 277 222 1351 254 221 1352 253

+

231 1353 278 223 1354 255 222 1355 254

+

231 1356 279 224 1357 256 223 1358 255

+

231 1359 280 225 1360 257 224 1361 256

+

231 1362 281 226 1363 258 225 1364 257

+

231 1365 282 227 1366 259 226 1367 258

+

231 1368 283 228 1369 260 227 1370 259

+

231 1371 284 229 1372 261 228 1373 260

+

231 1374 285 230 1375 262 229 1376 261

+

231 1377 286 208 1378 263 230 1379 262

+
+
+
+
+ + + + 1.000000 0.000000 0.000000 2.651176 0.000000 1.000000 -0.000000 2.259136 0.000000 0.000000 1.000000 0.000000 0.000000 0.000000 0.000000 1.000000 + + + + + + + + + + + + + +
+ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars1.DAE.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars1.DAE.meta new file mode 100644 index 00000000..3131932d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars1.DAE.meta @@ -0,0 +1,107 @@ +fileFormatVersion: 2 +guid: 729994df3d65fea10a3e168d5469e639 +ModelImporter: + serializedVersion: 22200 + internalIDToNameTable: [] + externalObjects: {} + materials: + materialImportMode: 2 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + removeConstantScaleCurves: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 0 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importPhysicalCameras: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + nodeNameCollisionStrategy: 1 + fileIdsGeneration: 2 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + optimizeBones: 1 + meshOptimizationFlags: -1 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 1 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 1 + strictVertexDataChecks: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + importBlendShapeDeformPercent: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars_1k_color.jpg b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars_1k_color.jpg new file mode 100755 index 00000000..0b0545c3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars_1k_color.jpg differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars_1k_color.jpg.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars_1k_color.jpg.meta new file mode 100644 index 00000000..d434262e --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/mars_1k_color.jpg.meta @@ -0,0 +1,148 @@ +fileFormatVersion: 2 +guid: dc626d003e253c1ee9c1df60b962837e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/phobos.prefab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/phobos.prefab new file mode 100644 index 00000000..833fb174 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/phobos.prefab @@ -0,0 +1,108 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8158671706834929829 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8158671706834769029} + - component: {fileID: 8158671706833999013} + - component: {fileID: 8158671706833000037} + - component: {fileID: 8925433147447589720} + m_Layer: 0 + m_Name: phobos + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8158671706834769029 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8158671706834929829} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 41.2} + m_LocalScale: {x: 0.01, y: 0.01, z: 0.01} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8158671706833999013 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8158671706834929829} + m_Mesh: {fileID: 4300000, guid: 303c89b8ca5b749a98272a094ed66020, type: 3} +--- !u!23 &8158671706833000037 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8158671706834929829} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_StaticShadowCaster: 0 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 303c89b8ca5b749a98272a094ed66020, type: 3} + - {fileID: 2100002, guid: 303c89b8ca5b749a98272a094ed66020, type: 3} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 0 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!135 &8925433147447589720 +SphereCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8158671706834929829} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 0 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Radius: 199.27469 + m_Center: {x: -54.89251, y: -2.5775375, z: 10.134506} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/phobos.prefab.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/phobos.prefab.meta new file mode 100644 index 00000000..18c00aa4 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/phobos.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 18b7cfdb18fd74b40a6a893bf804f7a4 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/phobos2.dae b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/phobos2.dae new file mode 100755 index 00000000..c27de600 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/phobos2.dae @@ -0,0 +1,172 @@ + + + + + Google SketchUp 5 + + 2008-12-19T03:14:13Z + 2008-12-19T03:14:13Z + + Z_UP + + + + fobos.jpg + + + + + + + + + + + + + + + + fobos-image + + + + + fobos-image-surface + + + + + + 0.000000 0.000000 0.000000 1 + + + 0.000000 0.000000 0.000000 1 + + + + + + 0.330000 0.330000 0.330000 1 + + + 20.000000 + + + 0.100000 + + + 1 1 1 1 + + + 0.000000 + + + + + + + + + + + 0.000000 0.000000 0.000000 1 + + + 0.000000 0.000000 0.000000 1 + + + 0.501961 0.501961 0.784314 1 + + + 0.330000 0.330000 0.330000 1 + + + 20.000000 + + + 0.100000 + + + 1 1 1 1 + + + 0.000000 + + + + + + + + + + + 25.203589 73.067459 131.020983 51.438600 106.978185 106.978185 14.336691 103.332992 106.978185 51.438600 75.645000 131.020983 51.438600 121.410983 75.645000 5.998227 123.406552 75.645000 51.438600 136.524918 39.156733 0.756450 138.005492 39.156733 51.438600 136.370000 -0.000000 103.908623 116.613605 0.000000 51.438600 140.424918 -39.156733 95.750750 126.556552 -39.156733 149.348995 126.556552 -30.647847 152.802900 121.449670 6.551049 139.222659 113.467500 -65.311701 96.878973 126.556552 -39.156733 123.113984 92.645826 -84.631136 152.802900 75.645000 -60.568227 123.113984 53.489092 -85.600983 102.120750 65.510492 -71.145844 88.540509 27.687992 -76.529724 77.673611 33.910726 -110.431449 51.438600 -0.000000 -121.474658 96.878973 19.578367 -78.367042 102.120750 10.134508 -82.303222 103.908623 0.000000 -107.833017 102.120750 -10.134508 -107.696988 96.878973 -19.578367 -125.068603 88.540509 -27.687992 -117.048603 77.673611 -33.910726 -130.494342 65.018841 -37.822500 -127.174342 51.438600 -39.156733 -125.144918 37.858359 -37.822500 -125.870797 25.203589 -33.910726 -110.304918 16.706450 -51.334603 -118.510983 34.453589 -73.067459 -125.520983 56.582372 -75.645000 -131.020983 14.336691 -103.332992 -106.978185 -4.286784 -78.469937 -106.978185 5.998227 -127.956614 -75.645000 51.438600 -118.237366 -75.645000 51.438600 -133.351301 -39.156733 0.756450 -142.555554 -39.156733 -36.345459 -114.867563 -75.645000 -46.471795 -127.956614 -39.156733 -38.995700 -75.645000 -97.408185 -72.706807 -92.645826 -75.645000 -89.677850 -65.510492 -56.272473 -113.807179 -65.117459 -39.156733 -137.709759 -15.842500 -39.156733 -102.272190 -39.156733 0.000000 -119.789518 -66.181027 0.000000 -82.687609 -103.332992 -39.156733 -87.572168 -106.978185 0.000000 -50.645700 -131.020983 0.000000 0.898577 -146.134918 0.000000 54.088600 -151.290000 -0.000000 103.908623 -143.554918 6.551049 102.120750 -138.575492 43.749946 102.120750 -128.371875 -30.647847 96.878973 -113.772934 -75.645000 51.438600 -106.978185 -106.978185 88.540509 -103.332992 -106.978185 77.673611 -73.067459 -123.400407 102.120750 -65.510492 -123.000983 123.113984 -92.645826 -95.078227 139.222659 -113.467500 -65.311701 123.113984 -53.489092 -110.332570 152.802900 -75.645000 -95.078227 175.584007 -92.645826 -65.311701 175.584007 -53.489092 -95.078227 203.485050 -65.510492 -65.311701 189.904809 -27.687992 -95.078227 221.024379 -33.910726 -65.311701 194.789368 0.000000 -73.338227 227.006718 0.000000 -43.571701 247.259390 0.000000 -30.647847 240.586959 -37.822500 -30.647847 254.167200 -0.000000 6.551049 237.714620 -39.156733 6.551049 221.024379 -72.957459 -30.647847 219.936718 -75.535000 6.551049 213.954379 -73.067459 43.749946 194.789368 -106.868185 6.551049 189.904809 -103.222992 -30.647847 149.348995 -126.556552 -30.647847 152.802900 -128.440983 6.551049 149.348995 -123.976552 43.749946 139.222659 -111.617500 78.413799 96.878973 -124.706552 75.645000 123.113984 -90.795826 108.180325 54.088600 -146.134918 39.156733 2.686450 -141.155492 39.156733 51.438600 -125.750983 75.645000 5.998227 -121.286552 75.645000 -47.191795 -126.556552 39.156733 -87.027609 -103.332992 39.156733 -118.147179 -56.337459 39.156733 -71.786807 -92.645826 75.645000 -35.425459 -113.467500 75.645000 14.336691 -98.062992 106.978185 -19.316784 -92.645826 106.978185 -49.005700 -75.645000 106.978185 -20.236784 -53.489092 131.020983 0.756450 -65.510492 131.020983 -36.345459 -37.822500 131.020983 5.998227 -19.578367 146.134918 14.336691 -27.687992 146.134918 0.756450 -10.134508 146.134918 -46.471795 -19.578367 131.020983 -1.031423 -0.000000 146.134918 -49.925700 -0.000000 131.020983 -46.471795 19.578367 131.020983 0.756450 10.134508 146.134918 -83.317609 27.687992 106.978185 -88.202168 -0.000000 106.978185 -114.437179 33.910726 75.645000 -120.419518 0.000000 75.645000 -118.342190 0.000000 39.156733 -118.147179 -33.910726 75.645000 -111.669759 -37.822500 39.156733 -117.390000 -0.000000 0.000000 -137.709759 37.822500 39.156733 -144.382190 0.000000 -39.156733 -100.607850 -65.510492 75.645000 -72.706807 -53.489092 106.978185 -87.027609 -27.687992 106.978185 -96.249518 0.000000 -64.478383 -104.407179 -33.910726 -56.828383 -73.287609 -27.687992 -84.108185 -63.466807 -53.489092 -86.918985 -4.286784 -49.549092 -108.770983 14.336691 -27.687992 -101.414918 -32.715459 -37.822500 -101.780983 -39.861795 -19.578367 -96.960983 -16.785700 10.410935 -93.089606 14.246450 -10.134508 -118.370661 9.628227 -19.578367 -112.825281 -1.031423 -0.000000 -107.680661 16.446450 10.134508 -110.377025 -28.211795 19.578367 -101.480983 -70.973668 27.687992 -90.998185 5.998227 19.578367 -110.364918 -22.861518 37.822500 -109.180983 -59.222866 53.489092 -90.098185 -100.607850 65.510492 -75.645000 -104.007179 33.910726 -75.645000 -77.772168 -0.000000 -84.908185 -137.709759 37.822500 -39.156733 -118.147179 73.067459 -39.156733 -59.906807 89.365826 -75.645000 -49.925700 75.645000 -84.548185 -20.236784 53.489092 -100.660983 14.336691 27.687992 -114.854918 25.203589 33.910726 -116.624918 -1.253550 65.510492 -97.620983 -20.236784 92.645826 -90.878185 -23.545459 110.187500 -75.645000 -74.227609 100.052992 -39.156733 -33.671795 123.276552 -39.156733 -81.382168 106.978185 0.000000 -39.395700 131.020983 0.000000 -76.497609 103.332992 39.156733 -35.941795 123.406552 39.156733 -1.031423 146.134918 0.000000 0.756450 135.445492 -39.156733 5.998227 120.846552 -69.135000 12.326691 103.332992 -82.358185 19.233589 73.067459 -95.360983 37.858359 37.822500 -111.524918 49.639654 97.495000 -91.235387 51.438600 39.156733 -111.459433 65.018841 37.822500 -108.821223 51.438600 106.978185 -85.728185 88.540509 120.712992 -67.658185 77.673611 73.067459 -97.343052 51.438600 123.240983 -75.645000 -36.345459 110.317500 75.645000 -20.236784 92.645826 106.978185 0.756450 65.510492 131.020983 25.203589 33.910726 146.134918 37.858359 37.822500 146.134918 51.438600 0.000000 151.290000 51.438600 39.156733 146.134918 77.673611 73.067459 131.020983 89.420509 103.332992 106.978185 97.758973 126.556552 75.645000 102.120750 141.155492 39.156733 149.348995 116.985238 43.749946 185.799368 106.978185 6.551049 189.904809 103.332992 -30.647847 194.406186 69.196299 -30.647847 176.866857 61.639331 -53.141701 213.968766 33.951339 -30.647847 247.259390 39.156733 6.551049 247.259390 0.000000 43.749946 240.586959 37.822500 43.749946 233.516959 -37.822500 43.749946 219.484379 -33.910726 78.413799 201.945050 -65.510492 78.413799 189.904809 -103.332992 43.749946 175.584007 -92.645826 78.413799 152.802900 -75.645000 108.180325 123.113984 -53.489092 131.020983 102.120750 -65.510492 131.020983 88.540509 -101.482992 106.978185 77.673611 -73.067459 131.020983 77.673611 -33.910726 146.134918 65.018841 -37.822500 146.134918 51.438600 -39.156733 146.134918 37.858359 -37.822500 146.134918 25.203589 -33.910726 146.134918 5.998227 19.578367 146.134918 14.336691 27.687992 146.134918 65.018841 37.822500 146.134918 77.673611 33.910726 146.134918 102.120750 65.510492 131.020983 88.540509 27.687992 146.134918 123.113984 53.489092 131.020983 96.878973 19.578367 146.134918 139.222659 37.822500 131.020983 102.120750 10.134508 146.134918 149.348995 19.578367 131.020983 103.908623 0.000000 146.134918 152.802900 0.000000 131.020983 149.348995 -19.578367 131.020983 102.120750 -10.134508 146.134918 96.878973 -19.578367 146.134918 88.540509 -27.687992 146.134918 139.222659 -37.822500 131.020983 174.044007 -53.489092 108.180325 188.364809 -27.687992 108.180325 200.754416 -10.746940 108.180325 189.479857 16.941052 108.180325 169.194007 53.489092 108.180325 147.062796 77.419350 108.180325 118.253880 94.420176 106.978185 169.843903 94.420176 78.413799 134.362555 115.241850 78.413799 180.914809 103.332992 43.749946 218.016718 75.645000 6.551049 212.034379 73.067459 43.749946 220.599427 23.163786 78.413799 197.095050 65.510492 78.413799 232.971766 -10.746940 78.413799 51.438600 -75.645000 131.020983 25.203589 -73.067459 131.020983 -36.345459 37.822500 131.020983 -66.076807 53.489092 106.978185 -93.977850 65.510492 75.645000 -66.076807 92.645826 75.645000 -43.295700 75.645000 106.978185 -20.236784 53.489092 131.020983 -118.147179 73.067459 39.156733 -124.129518 75.645000 0.000000 -144.382190 39.156733 0.000000 51.438600 -101.708185 106.978185 221.024379 33.910726 -43.571701 189.904809 27.687992 -73.338227 152.802900 0.000000 -103.878885 149.348995 19.578367 -75.162480 149.348995 -19.578367 -107.698885 139.222659 -37.822500 -110.332496 139.222659 37.822500 -80.777985 175.584007 53.489092 -60.568227 175.584007 92.645826 -53.141701 + + + + + + + + + + -0.097160 0.484825 0.869198 -0.009428 0.757034 0.653307 -0.109001 0.762409 0.637849 0.000000 0.499938 0.866061 0.109001 -0.762409 -0.637849 0.009428 -0.757034 -0.653307 0.097160 -0.484825 -0.869198 -0.009428 0.757034 0.653307 -0.049989 0.907878 0.416243 0.049989 -0.907878 -0.416243 0.009428 -0.757034 -0.653307 -0.109001 0.762409 0.637849 -0.049989 0.907878 0.416243 -0.083279 0.886427 0.455316 0.083279 -0.886427 -0.455316 0.049989 -0.907878 -0.416243 0.109001 -0.762409 -0.637849 0.051534 0.993042 0.105888 -0.083279 0.886427 0.455316 0.083279 -0.886427 -0.455316 -0.051534 -0.993042 -0.105888 0.051534 0.993042 0.105888 -0.129027 0.958968 0.252451 0.129027 -0.958968 -0.252451 -0.051534 -0.993042 -0.105888 0.051534 0.993042 0.105888 0.169251 0.985316 0.022489 0.146502 0.988780 -0.029168 -0.169251 -0.985316 -0.022489 -0.146502 -0.988780 0.029168 0.111232 0.993652 0.016828 0.146502 0.988780 -0.029168 0.125890 0.782583 0.609684 0.111232 0.993652 0.016828 0.146502 0.988780 -0.029168 0.249809 0.953407 -0.169147 0.222131 0.970945 0.089015 0.249809 0.953407 -0.169147 -0.146502 -0.988780 0.029168 -0.249809 -0.953407 0.169147 -0.222131 -0.970945 -0.089015 -0.125890 -0.782583 -0.609684 -0.249809 -0.953407 0.169147 -0.146502 -0.988780 0.029168 0.249809 0.953407 -0.169147 0.413889 0.473793 -0.777314 -0.413889 -0.473793 0.777314 -0.249809 -0.953407 0.169147 0.413889 0.473793 -0.777314 0.273675 0.959880 -0.061088 -0.273675 -0.959880 0.061088 -0.413889 -0.473793 0.777314 0.413889 0.473793 -0.777314 0.132041 0.369695 -0.919723 -0.132041 -0.369695 0.919723 -0.413889 -0.473793 0.777314 0.452654 0.163721 -0.876527 0.132041 0.369695 -0.919723 -0.132041 -0.369695 0.919723 -0.452654 -0.163721 0.876527 0.452654 0.163721 -0.876527 0.030258 0.062993 -0.997555 -0.030258 -0.062993 0.997555 -0.452654 -0.163721 0.876527 0.030258 0.062993 -0.997555 0.204328 0.172187 -0.963640 -0.204328 -0.172187 0.963640 -0.030258 -0.062993 0.997555 0.030258 0.062993 -0.997555 0.347555 -0.024913 -0.937329 0.204328 0.172187 -0.963640 -0.204328 -0.172187 0.963640 -0.347555 0.024913 0.937329 -0.030258 -0.062993 0.997555 0.347555 -0.024913 -0.937329 0.615680 0.093576 -0.782420 -0.615680 -0.093576 0.782420 -0.347555 0.024913 0.937329 0.615680 0.093576 -0.782420 0.014985 0.156489 -0.987566 -0.014985 -0.156489 0.987566 -0.615680 -0.093576 0.782420 0.153365 0.412187 -0.898098 0.014985 0.156489 -0.987566 0.098885 0.593034 -0.799083 0.014985 0.156489 -0.987566 0.098885 0.593034 -0.799083 0.066865 0.547159 -0.834354 -0.066865 -0.547159 0.834354 -0.098885 -0.593034 0.799083 0.239494 0.351023 -0.905221 0.014985 0.156489 -0.987566 -0.014985 -0.156489 0.987566 -0.239494 -0.351023 0.905221 0.239494 0.351023 -0.905221 0.132209 0.057528 -0.989551 0.014985 0.156489 -0.987566 -0.014985 -0.156489 0.987566 -0.132209 -0.057528 0.989551 -0.239494 -0.351023 0.905221 0.132209 0.057528 -0.989551 0.249566 0.031268 -0.967853 -0.249566 -0.031268 0.967853 -0.132209 -0.057528 0.989551 0.249566 0.031268 -0.967853 0.172155 0.137065 -0.975487 0.014985 0.156489 -0.987566 -0.014985 -0.156489 0.987566 -0.172155 -0.137065 0.975487 -0.249566 -0.031268 0.967853 0.172155 0.137065 -0.975487 -0.190107 -0.046811 -0.980647 0.014985 0.156489 -0.987566 -0.014985 -0.156489 0.987566 0.190107 0.046811 0.980647 -0.172155 -0.137065 0.975487 0.031954 0.080827 -0.996216 0.014985 0.156489 -0.987566 -0.014985 -0.156489 0.987566 -0.031954 -0.080827 0.996216 0.031954 0.080827 -0.996216 -0.308860 0.213524 -0.926830 0.308860 -0.213524 0.926830 -0.031954 -0.080827 0.996216 -0.308860 0.213524 -0.926830 -0.507613 0.435599 -0.743359 0.507613 -0.435599 0.743359 0.308860 -0.213524 0.926830 -0.308860 0.213524 -0.926830 -0.435050 0.124011 -0.891826 -0.308860 0.213524 -0.926830 -0.297404 -0.247918 -0.922002 -0.435050 0.124011 -0.891826 0.054502 -0.209432 -0.976303 -0.308860 0.213524 -0.926830 0.308860 -0.213524 0.926830 0.297404 0.247918 0.922002 -0.054502 0.209432 0.976303 0.435050 -0.124011 0.891826 0.308860 -0.213524 0.926830 -0.266011 -0.577161 -0.772090 -0.435050 0.124011 -0.891826 0.435050 -0.124011 0.891826 0.266011 0.577161 0.772090 -0.435050 0.124011 -0.891826 -0.266011 -0.577161 -0.772090 -0.358969 -0.321143 -0.876361 0.358969 0.321143 0.876361 0.266011 0.577161 0.772090 0.435050 -0.124011 0.891826 -0.358969 -0.321143 -0.876361 -0.266011 -0.577161 -0.772090 -0.103445 -0.824405 -0.556467 0.103445 0.824405 0.556467 0.266011 0.577161 0.772090 0.358969 0.321143 0.876361 0.102686 -0.914541 -0.391243 -0.103445 -0.824405 -0.556467 0.103445 0.824405 0.556467 -0.102686 0.914541 0.391243 0.170623 -0.906337 -0.386576 -0.170623 0.906337 0.386576 -0.068686 -0.958864 -0.275432 0.068686 0.958864 0.275432 -0.308611 -0.660994 -0.683993 -0.408793 -0.876974 -0.252595 0.308611 0.660994 0.683993 -0.358969 -0.321143 -0.876361 0.358969 0.321143 0.876361 -0.423214 -0.202122 -0.883197 0.423214 0.202122 0.883197 -0.603836 -0.420983 -0.676872 0.603836 0.420983 0.676872 0.408793 0.876974 0.252595 -0.423214 -0.202122 -0.883197 -0.619041 -0.147319 -0.771418 0.619041 0.147319 0.771418 0.423214 0.202122 0.883197 -0.900889 -0.235775 -0.364430 -0.619041 -0.147319 -0.771418 0.619041 0.147319 0.771418 0.900889 0.235775 0.364430 -0.619041 -0.147319 -0.771418 -0.900889 -0.235775 -0.364430 -0.868979 -0.358564 -0.341039 0.868979 0.358564 0.341039 0.900889 0.235775 0.364430 0.619041 0.147319 0.771418 -0.994872 0.071352 0.071680 0.994872 -0.071352 -0.071680 -0.994872 0.071352 0.071680 -0.900889 -0.235775 -0.364430 -0.979060 -0.188133 -0.077766 0.979060 0.188133 0.077766 0.900889 0.235775 0.364430 0.994872 -0.071352 -0.071680 -0.900889 -0.235775 -0.364430 -0.658819 -0.719611 -0.219357 0.658819 0.719611 0.219357 0.900889 0.235775 0.364430 -0.658819 -0.719611 -0.219357 -0.677857 -0.734553 0.030694 0.677857 0.734553 -0.030694 0.658819 0.719611 0.219357 -0.420777 -0.907143 0.006144 0.420777 0.907143 -0.006144 -0.658819 -0.719611 -0.219357 0.658819 0.719611 0.219357 -0.603836 -0.420983 -0.676872 -0.408793 -0.876974 -0.252595 0.408793 0.876974 0.252595 0.603836 0.420983 0.676872 -0.603836 -0.420983 -0.676872 0.603836 0.420983 0.676872 -0.408793 -0.876974 -0.252595 -0.211164 -0.977444 -0.003468 0.211164 0.977444 0.003468 0.408793 0.876974 0.252595 -0.211164 -0.977444 -0.003468 0.211164 0.977444 0.003468 -0.211164 -0.977444 -0.003468 -0.068686 -0.958864 -0.275432 0.076300 -0.992788 -0.092466 -0.076300 0.992788 0.092466 0.068686 0.958864 0.275432 0.211164 0.977444 0.003468 0.076300 -0.992788 -0.092466 -0.068686 -0.958864 -0.275432 0.068686 0.958864 0.275432 -0.076300 0.992788 0.092466 0.217445 -0.958185 -0.186011 0.200355 -0.940197 0.275479 -0.217445 0.958185 0.186011 -0.200355 0.940197 -0.275479 0.125996 -0.943686 -0.305911 -0.125996 0.943686 0.305911 0.170623 -0.906337 -0.386576 -0.170623 0.906337 0.386576 0.081767 -0.938335 -0.335919 -0.081767 0.938335 0.335919 -0.052755 -0.750542 -0.658714 0.102686 -0.914541 -0.391243 0.240222 -0.663561 -0.708505 -0.240222 0.663561 0.708505 0.052755 0.750542 0.658714 -0.052755 -0.750542 -0.658714 0.054502 -0.209432 -0.976303 -0.054502 0.209432 0.976303 0.052755 0.750542 0.658714 -0.297404 -0.247918 -0.922002 0.297404 0.247918 0.922002 -0.052755 -0.750542 -0.658714 -0.102686 0.914541 0.391243 0.052755 0.750542 0.658714 0.054502 -0.209432 -0.976303 0.096843 -0.188793 -0.977230 -0.096843 0.188793 0.977230 -0.054502 0.209432 0.976303 0.031954 0.080827 -0.996216 -0.031954 -0.080827 0.996216 -0.190107 -0.046811 -0.980647 0.190107 0.046811 0.980647 0.412459 -0.137903 -0.900478 0.412459 -0.137903 -0.900478 -0.412459 0.137903 0.900478 0.413917 -0.490199 -0.767058 0.412459 -0.137903 -0.900478 0.322777 -0.806615 -0.495165 0.413917 -0.490199 -0.767058 -0.413917 0.490199 0.767058 -0.322777 0.806615 0.495165 -0.412459 0.137903 0.900478 -0.413917 0.490199 0.767058 0.259294 -0.257441 -0.930855 -0.412459 0.137903 0.900478 -0.259294 0.257441 0.930855 0.346955 -0.463065 -0.815594 -0.346955 0.463065 0.815594 0.346955 -0.463065 -0.815594 0.322777 -0.806615 -0.495165 0.495852 -0.660016 -0.564367 -0.322777 0.806615 0.495165 -0.346955 0.463065 0.815594 -0.495852 0.660016 0.564367 0.391064 -0.278600 -0.877184 0.346955 -0.463065 -0.815594 0.666284 -0.478754 -0.571717 -0.346955 0.463065 0.815594 -0.391064 0.278600 0.877184 -0.666284 0.478754 0.571717 0.524643 0.117793 -0.843133 0.666284 -0.478754 -0.571717 0.729557 0.035607 -0.682992 -0.666284 0.478754 0.571717 -0.524643 -0.117793 0.843133 -0.729557 -0.035607 0.682992 0.599692 0.260194 -0.756749 0.729557 0.035607 -0.682992 -0.729557 -0.035607 0.682992 -0.599692 -0.260194 0.756749 0.738687 0.346433 -0.578209 -0.738687 -0.346433 0.578209 0.801370 0.237939 -0.548809 0.738687 0.346433 -0.578209 0.895682 -0.356013 -0.266474 0.801370 0.237939 -0.548809 0.986198 -0.163022 0.028945 0.895682 -0.356013 -0.266474 -0.895682 0.356013 0.266474 -0.986198 0.163022 -0.028945 -0.801370 -0.237939 0.548809 0.986198 -0.163022 0.028945 0.895807 -0.436312 0.084633 -0.895807 0.436312 -0.084633 -0.986198 0.163022 -0.028945 0.895682 -0.356013 -0.266474 0.895807 -0.436312 0.084633 0.803399 -0.564096 -0.190644 -0.803399 0.564096 0.190644 -0.895807 0.436312 -0.084633 -0.895682 0.356013 0.266474 0.817968 -0.574551 0.028633 0.803399 -0.564096 -0.190644 0.895807 -0.436312 0.084633 0.813489 -0.534141 0.230062 0.817968 -0.574551 0.028633 -0.817968 0.574551 -0.028633 -0.813489 0.534141 -0.230062 -0.895807 0.436312 -0.084633 0.813489 -0.534141 0.230062 0.638633 -0.769417 0.012053 -0.817968 0.574551 -0.028633 -0.638633 0.769417 -0.012053 -0.813489 0.534141 -0.230062 0.817968 -0.574551 0.028633 0.638633 -0.769417 0.012053 0.595536 -0.752475 -0.281280 -0.595536 0.752475 0.281280 -0.638633 0.769417 -0.012053 -0.817968 0.574551 -0.028633 0.271476 -0.931319 -0.242787 0.595536 -0.752475 -0.281280 -0.595536 0.752475 0.281280 -0.271476 0.931319 0.242787 0.271476 -0.931319 -0.242787 0.322777 -0.806615 -0.495165 0.271476 -0.931319 -0.242787 0.081767 -0.938335 -0.335919 -0.081767 0.938335 0.335919 -0.271476 0.931319 0.242787 0.081767 -0.938335 -0.335919 -0.271476 0.931319 0.242787 -0.081767 0.938335 0.335919 0.337004 -0.941390 -0.014575 0.125996 -0.943686 -0.305911 0.271476 -0.931319 -0.242787 -0.271476 0.931319 0.242787 -0.125996 0.943686 0.305911 -0.337004 0.941390 0.014575 0.125996 -0.943686 -0.305911 -0.125996 0.943686 0.305911 0.373867 -0.875507 0.306122 0.217445 -0.958185 -0.186011 0.337004 -0.941390 -0.014575 0.200355 -0.940197 0.275479 -0.337004 0.941390 0.014575 -0.217445 0.958185 0.186011 -0.373867 0.875507 -0.306122 -0.200355 0.940197 -0.275479 0.307781 -0.787201 0.534402 0.373867 -0.875507 0.306122 -0.373867 0.875507 -0.306122 -0.307781 0.787201 -0.534402 0.307781 -0.787201 0.534402 0.132764 -0.835608 0.533041 0.243742 -0.636668 0.731604 0.132764 -0.835608 0.533041 -0.307781 0.787201 -0.534402 -0.132764 0.835608 -0.533041 -0.243742 0.636668 -0.731604 -0.132764 0.835608 -0.533041 0.017395 -0.942221 0.334541 -0.017395 0.942221 -0.334541 0.017395 -0.942221 0.334541 0.076300 -0.992788 -0.092466 -0.182045 -0.932013 0.313388 -0.076300 0.992788 0.092466 -0.017395 0.942221 -0.334541 0.182045 0.932013 -0.313388 -0.034230 -0.836760 0.546498 0.017395 -0.942221 0.334541 -0.017395 0.942221 -0.334541 0.034230 0.836760 -0.546498 -0.146540 -0.843579 0.516625 -0.034230 -0.836760 0.546498 -0.374561 -0.883288 0.281967 0.374561 0.883288 -0.281967 0.146540 0.843579 -0.516625 -0.374561 -0.883288 0.281967 -0.420777 -0.907143 0.006144 -0.677857 -0.734553 0.030694 0.420777 0.907143 -0.006144 0.677857 0.734553 -0.030694 0.374561 0.883288 -0.281967 -0.621202 -0.723099 0.302054 0.621202 0.723099 -0.302054 -0.963030 -0.209269 0.169646 -0.621202 -0.723099 0.302054 -0.979060 -0.188133 -0.077766 -0.994872 0.071352 0.071680 -0.979060 -0.188133 -0.077766 0.963030 0.209269 -0.169646 0.979060 0.188133 0.077766 0.994872 -0.071352 -0.071680 0.979060 0.188133 0.077766 0.621202 0.723099 -0.302054 -0.563677 -0.646334 0.514316 0.563677 0.646334 -0.514316 -0.563677 -0.646334 0.514316 -0.294460 -0.800483 0.522034 0.294460 0.800483 -0.522034 0.563677 0.646334 -0.514316 -0.294460 -0.800483 0.522034 0.294460 0.800483 -0.522034 -0.119787 -0.719703 0.683871 -0.294460 -0.800483 0.522034 -0.146540 -0.843579 0.516625 0.146540 0.843579 -0.516625 0.294460 0.800483 -0.522034 0.119787 0.719703 -0.683871 -0.228492 -0.657072 0.718365 -0.228492 -0.657072 0.718365 -0.563677 -0.646334 0.514316 -0.393554 -0.509643 0.765101 0.563677 0.646334 -0.514316 0.228492 0.657072 -0.718365 0.393554 0.509643 -0.765101 -0.228492 -0.657072 0.718365 -0.274601 -0.366999 0.888766 -0.393554 -0.509643 0.765101 -0.177097 -0.491958 0.852416 0.393554 0.509643 -0.765101 0.274601 0.366999 -0.888766 0.228492 0.657072 -0.718365 -0.348728 -0.292076 0.890550 -0.274601 -0.366999 0.888766 -0.170101 -0.131478 0.976616 -0.348728 -0.292076 0.890550 -0.138136 -0.184935 0.972994 0.348728 0.292076 -0.890550 0.170101 0.131478 -0.976616 0.274601 0.366999 -0.888766 -0.190486 -0.068331 0.979309 -0.348728 -0.292076 0.890550 -0.383099 -0.137204 0.913461 0.383099 0.137204 -0.913461 0.190486 0.068331 -0.979309 0.348728 0.292076 -0.890550 -0.197498 0.000000 0.980303 -0.433434 -0.003325 0.901179 0.433434 0.003325 -0.901179 0.197498 -0.000000 -0.980303 -0.197498 0.000000 0.980303 -0.420850 0.181086 0.888872 -0.433434 -0.003325 0.901179 -0.190486 0.068331 0.979309 0.433434 0.003325 -0.901179 0.420850 -0.181086 -0.888872 0.197498 -0.000000 -0.980303 -0.589115 0.269206 0.761887 -0.420850 0.181086 0.888872 -0.636288 0.023451 0.771095 0.636288 -0.023451 -0.771095 0.589115 -0.269206 -0.761887 -0.842165 0.167175 0.512650 -0.636288 0.023451 0.771095 -0.589115 0.269206 0.761887 -0.930338 0.050308 0.363236 0.930338 -0.050308 -0.363236 0.842165 -0.167175 -0.512650 0.636288 -0.023451 -0.771095 -0.842165 0.167175 0.512650 -0.981068 -0.191934 0.025842 0.981068 0.191934 -0.025842 0.842165 -0.167175 -0.512650 -0.981068 -0.191934 0.025842 -0.915682 -0.215635 0.339159 -0.993697 -0.102850 -0.044592 -0.915682 -0.215635 0.339159 -0.917951 -0.350414 0.185943 -0.993697 -0.102850 -0.044592 -0.936670 -0.014854 0.349899 -0.917951 -0.350414 0.185943 0.981068 0.191934 -0.025842 0.917951 0.350414 -0.185943 0.936670 0.014854 -0.349899 0.993697 0.102850 0.044592 0.917951 0.350414 -0.185943 -0.994872 0.071352 0.071680 -0.917951 -0.350414 0.185943 -0.868979 -0.358564 -0.341039 -0.994872 0.071352 0.071680 -0.914700 -0.176641 -0.363485 -0.917951 -0.350414 0.185943 0.917951 0.350414 -0.185943 0.914700 0.176641 0.363485 0.994872 -0.071352 -0.071680 0.868979 0.358564 0.341039 0.917951 0.350414 -0.185943 0.994872 -0.071352 -0.071680 -0.993697 -0.102850 -0.044592 -0.994872 0.071352 0.071680 0.994872 -0.071352 -0.071680 0.993697 0.102850 0.044592 -0.993697 -0.102850 -0.044592 -0.963030 -0.209269 0.169646 -0.804195 -0.412342 0.428071 0.804195 0.412342 -0.428071 0.963030 0.209269 -0.169646 0.993697 0.102850 0.044592 -0.563677 -0.646334 0.514316 -0.503442 -0.424586 0.752511 0.503442 0.424586 -0.752511 0.563677 0.646334 -0.514316 -0.572529 -0.150749 0.805906 -0.915682 -0.215635 0.339159 0.915682 0.215635 -0.339159 0.572529 0.150749 -0.805906 -0.930338 0.050308 0.363236 0.915682 0.215635 -0.339159 0.930338 -0.050308 -0.363236 0.915682 0.215635 -0.339159 0.993697 0.102850 0.044592 -0.804195 -0.412342 0.428071 0.804195 0.412342 -0.428071 -0.433434 -0.003325 0.901179 -0.636288 0.023451 0.771095 0.636288 -0.023451 -0.771095 0.433434 0.003325 -0.901179 -0.503442 -0.424586 0.752511 0.503442 0.424586 -0.752511 -0.393554 -0.509643 0.765101 0.393554 0.509643 -0.765101 -0.393554 -0.509643 0.765101 0.393554 0.509643 -0.765101 0.348728 0.292076 -0.890550 -0.591001 -0.195878 -0.782528 0.591001 0.195878 0.782528 -0.585197 -0.165210 -0.793883 0.585197 0.165210 0.793883 -0.619041 -0.147319 -0.771418 -0.585197 -0.165210 -0.793883 0.585197 0.165210 0.793883 0.619041 0.147319 0.771418 -0.540053 -0.044438 -0.840457 -0.619041 -0.147319 -0.771418 -0.585197 -0.165210 -0.793883 0.585197 0.165210 0.793883 0.619041 0.147319 0.771418 0.540053 0.044438 0.840457 -0.540053 -0.044438 -0.840457 -0.484109 -0.123985 -0.866179 -0.619041 -0.147319 -0.771418 0.619041 0.147319 0.771418 0.484109 0.123985 0.866179 0.540053 0.044438 0.840457 -0.423214 -0.202122 -0.883197 0.423214 0.202122 0.883197 -0.313865 0.172337 -0.933696 0.313865 -0.172337 0.933696 -0.313865 0.172337 -0.933696 0.313865 -0.172337 0.933696 -0.507613 0.435599 -0.743359 0.435050 -0.124011 0.891826 0.507613 -0.435599 0.743359 0.308860 -0.213524 0.926830 -0.507613 0.435599 -0.743359 -0.149638 -0.113959 -0.982152 0.149638 0.113959 0.982152 0.507613 -0.435599 0.743359 -0.313865 0.172337 -0.933696 -0.222774 -0.100550 -0.969671 0.222774 0.100550 0.969671 0.313865 -0.172337 0.933696 -0.484109 -0.123985 -0.866179 0.484109 0.123985 0.866179 -0.222774 -0.100550 -0.969671 -0.484109 -0.123985 -0.866179 -0.383203 0.105714 -0.917595 0.383203 -0.105714 0.917595 0.484109 0.123985 0.866179 0.222774 0.100550 0.969671 -0.540053 -0.044438 -0.840457 0.540053 0.044438 0.840457 -0.414824 -0.224969 -0.881652 -0.540053 -0.044438 -0.840457 0.540053 0.044438 0.840457 0.414824 0.224969 0.881652 -0.369340 -0.212854 -0.904589 -0.383203 0.105714 -0.917595 -0.414824 -0.224969 -0.881652 0.414824 0.224969 0.881652 0.383203 -0.105714 0.917595 0.369340 0.212854 0.904589 -0.026114 -0.506589 -0.861792 0.014985 0.156489 -0.987566 -0.026114 -0.506589 -0.861792 0.026114 0.506589 0.861792 -0.014985 -0.156489 0.987566 0.026114 0.506589 0.861792 -0.026114 -0.506589 -0.861792 0.026114 0.506589 0.861792 0.014985 0.156489 -0.987566 -0.014985 -0.156489 0.987566 0.014985 0.156489 -0.987566 -0.482681 0.125252 -0.866793 0.482681 -0.125252 0.866793 -0.014985 -0.156489 0.987566 -0.482681 0.125252 -0.866793 -0.354786 -0.192170 -0.914985 -0.414824 -0.224969 -0.881652 0.014985 0.156489 -0.987566 -0.354786 -0.192170 -0.914985 0.354786 0.192170 0.914985 -0.014985 -0.156489 0.987566 0.414824 0.224969 0.881652 0.354786 0.192170 0.914985 0.482681 -0.125252 0.866793 -0.277963 -0.531341 -0.800258 -0.334219 -0.151507 -0.930238 -0.277963 -0.531341 -0.800258 0.277963 0.531341 0.800258 0.334219 0.151507 0.930238 0.277963 0.531341 0.800258 -0.354786 -0.192170 -0.914985 -0.280675 -0.299751 -0.911795 0.280675 0.299751 0.911795 0.354786 0.192170 0.914985 -0.280675 -0.299751 -0.911795 -0.243927 0.048674 -0.968571 0.243927 -0.048674 0.968571 0.280675 0.299751 0.911795 -0.243927 0.048674 -0.968571 0.243927 -0.048674 0.968571 -0.243927 0.048674 -0.968571 -0.334219 -0.151507 -0.930238 -0.278940 0.320318 -0.905312 0.278940 -0.320318 0.905312 0.334219 0.151507 0.930238 0.243927 -0.048674 0.968571 -0.278940 0.320318 -0.905312 -0.334219 -0.151507 -0.930238 -0.523610 0.340463 -0.780972 0.523610 -0.340463 0.780972 0.334219 0.151507 0.930238 0.278940 -0.320318 0.905312 -0.592666 -0.099435 -0.799287 -0.441149 -0.176293 -0.879948 -0.592666 -0.099435 -0.799287 0.592666 0.099435 0.799287 0.441149 0.176293 0.879948 -0.441149 -0.176293 -0.879948 0.441149 0.176293 0.879948 0.592666 0.099435 0.799287 -0.414824 -0.224969 -0.881652 0.414824 0.224969 0.881652 -0.414824 -0.224969 -0.881652 0.414824 0.224969 0.881652 -0.941215 0.138619 -0.308057 0.941215 -0.138619 0.308057 -0.941215 0.138619 -0.308057 0.941215 -0.138619 0.308057 -0.644892 0.691641 -0.325187 -0.644892 0.691641 -0.325187 -0.380462 0.616586 -0.689253 0.380462 -0.616586 0.689253 0.644892 -0.691641 0.325187 -0.317411 0.373919 -0.871456 0.317411 -0.373919 0.871456 -0.151503 0.364522 -0.918788 0.151503 -0.364522 0.918788 -0.151503 0.364522 -0.918788 -0.243927 0.048674 -0.968571 0.243927 -0.048674 0.968571 0.151503 -0.364522 0.918788 -0.194259 0.117828 -0.973848 -0.243927 0.048674 -0.968571 0.243927 -0.048674 0.968571 0.194259 -0.117828 0.973848 -0.194259 0.117828 -0.973848 -0.243927 0.048674 -0.968571 0.014985 0.156489 -0.987566 -0.280675 -0.299751 -0.911795 -0.194259 0.117828 -0.973848 0.194259 -0.117828 0.973848 0.280675 0.299751 0.911795 -0.014985 -0.156489 0.987566 0.243927 -0.048674 0.968571 0.194259 -0.117828 0.973848 -0.020825 0.330558 -0.943556 0.020825 -0.330558 0.943556 -0.020825 0.330558 -0.943556 -0.194259 0.117828 -0.973848 -0.064409 0.352503 -0.933592 0.064409 -0.352503 0.933592 0.194259 -0.117828 0.973848 0.020825 -0.330558 0.943556 -0.064409 0.352503 -0.933592 0.064409 -0.352503 0.933592 -0.064409 0.352503 -0.933592 -0.138545 0.415964 -0.898765 0.138545 -0.415964 0.898765 0.064409 -0.352503 0.933592 -0.317411 0.373919 -0.871456 -0.250750 0.677107 -0.691846 0.250750 -0.677107 0.691846 0.317411 -0.373919 0.871456 -0.250750 0.677107 -0.691846 0.250750 -0.677107 0.691846 -0.504589 0.813221 -0.289933 -0.362207 0.864836 -0.347657 0.504589 -0.813221 0.289933 0.362207 -0.864836 0.347657 -0.553653 0.832685 -0.010220 -0.418460 0.907775 -0.028912 0.553653 -0.832685 0.010220 0.418460 -0.907775 0.028912 -0.520993 0.802124 0.291829 -0.553653 0.832685 -0.010220 0.553653 -0.832685 0.010220 0.520993 -0.802124 -0.291829 -0.402740 0.875934 0.265594 -0.520993 0.802124 0.291829 0.520993 -0.802124 -0.291829 0.402740 -0.875934 -0.265594 -0.402740 0.875934 0.265594 -0.152973 0.988031 0.019833 -0.418460 0.907775 -0.028912 0.418460 -0.907775 0.028912 0.152973 -0.988031 -0.019833 0.402740 -0.875934 -0.265594 -0.152973 0.988031 0.019833 -0.169788 0.948449 -0.267612 -0.418460 0.907775 -0.028912 -0.152973 0.988031 0.019833 -0.169788 0.948449 -0.267612 0.169788 -0.948449 0.267612 0.152973 -0.988031 -0.019833 -0.111232 -0.993652 -0.016828 -0.153515 0.770683 -0.618451 0.169788 -0.948449 0.267612 0.153515 -0.770683 0.618451 -0.153515 0.770683 -0.618451 0.153515 -0.770683 0.618451 -0.052809 0.493017 -0.868415 -0.052809 0.493017 -0.868415 0.052809 -0.493017 0.868415 -0.064409 0.352503 -0.933592 -0.048345 0.413704 -0.909127 -0.064409 0.352503 -0.933592 0.052809 -0.493017 0.868415 0.064409 -0.352503 0.933592 0.048345 -0.413704 0.909127 0.064409 -0.352503 0.933592 0.051740 0.354057 -0.933792 -0.020825 0.330558 -0.943556 0.014985 0.156489 -0.987566 -0.020825 0.330558 -0.943556 0.051740 0.354057 -0.933792 -0.051740 -0.354057 0.933792 0.020825 -0.330558 0.943556 -0.014985 -0.156489 0.987566 0.020825 -0.330558 0.943556 -0.051740 -0.354057 0.933792 0.035250 0.393295 -0.918736 0.093667 0.287934 -0.953058 0.051740 0.354057 -0.933792 0.093667 0.287934 -0.953058 0.051740 0.354057 -0.933792 -0.051740 -0.354057 0.933792 -0.093667 -0.287934 0.953058 0.233460 0.334118 -0.913160 0.014985 0.156489 -0.987566 0.615680 0.093576 -0.782420 0.014985 0.156489 -0.987566 -0.233460 -0.334118 0.913160 -0.014985 -0.156489 0.987566 -0.615680 -0.093576 0.782420 -0.014985 -0.156489 0.987566 0.035250 0.393295 -0.918736 -0.035250 -0.393295 0.918736 -0.093667 -0.287934 0.953058 -0.035250 -0.393295 0.918736 -0.051740 -0.354057 0.933792 0.035250 0.393295 -0.918736 -0.048345 0.413704 -0.909127 -0.052809 0.493017 -0.868415 0.052809 -0.493017 0.868415 0.048345 -0.413704 0.909127 -0.035250 -0.393295 0.918736 0.014739 0.523020 -0.852193 -0.014739 -0.523020 0.852193 0.266755 0.571203 -0.776253 0.035250 0.393295 -0.918736 0.014739 0.523020 -0.852193 -0.014739 -0.523020 0.852193 -0.035250 -0.393295 0.918736 -0.266755 -0.571203 0.776253 0.266755 0.571203 -0.776253 0.471961 0.258284 -0.842937 0.035250 0.393295 -0.918736 -0.035250 -0.393295 0.918736 -0.471961 -0.258284 0.842937 -0.266755 -0.571203 0.776253 0.471961 0.258284 -0.842937 0.233460 0.334118 -0.913160 -0.233460 -0.334118 0.913160 -0.471961 -0.258284 0.842937 0.615680 0.093576 -0.782420 0.233460 0.334118 -0.913160 -0.233460 -0.334118 0.913160 -0.615680 -0.093576 0.782420 0.132041 0.369695 -0.919723 0.266755 0.571203 -0.776253 -0.266755 -0.571203 0.776253 -0.132041 -0.369695 0.919723 0.273675 0.959880 -0.061088 -0.273675 -0.959880 0.061088 0.273675 0.959880 -0.061088 0.266755 0.571203 -0.776253 0.072687 0.807331 -0.585605 -0.072687 -0.807331 0.585605 -0.266755 -0.571203 0.776253 -0.273675 -0.959880 0.061088 -0.153515 0.770683 -0.618451 0.153515 -0.770683 0.618451 0.111232 0.993652 0.016828 0.072687 0.807331 -0.585605 0.273675 0.959880 -0.061088 0.111232 0.993652 0.016828 -0.111232 -0.993652 -0.016828 -0.273675 -0.959880 0.061088 -0.072687 -0.807331 0.585605 -0.111232 -0.993652 -0.016828 0.111232 0.993652 0.016828 -0.111232 -0.993652 -0.016828 -0.111232 -0.993652 -0.016828 -0.052809 0.493017 -0.868415 0.052809 -0.493017 0.868415 0.418460 -0.907775 0.028912 0.152973 -0.988031 -0.019833 -0.129027 0.958968 0.252451 -0.152973 0.988031 0.019833 0.152973 -0.988031 -0.019833 0.129027 -0.958968 -0.252451 -0.051534 -0.993042 -0.105888 -0.402740 0.875934 0.265594 0.402740 -0.875934 -0.265594 -0.377127 0.793730 0.477251 -0.129027 0.958968 0.252451 0.129027 -0.958968 -0.252451 0.377127 -0.793730 -0.477251 -0.377127 0.793730 0.477251 0.377127 -0.793730 -0.477251 -0.313247 0.608171 0.729387 -0.377127 0.793730 0.477251 -0.109001 0.762409 0.637849 0.377127 -0.793730 -0.477251 0.313247 -0.608171 -0.729387 0.109001 -0.762409 -0.637849 -0.189791 0.439502 0.877962 -0.097160 0.484825 0.869198 0.189791 -0.439502 -0.877962 0.097160 -0.484825 -0.869198 -0.097155 0.225293 0.969435 -0.097160 0.484825 0.869198 -0.189791 0.439502 0.877962 -0.050097 0.250313 0.966868 0.189791 -0.439502 -0.877962 0.097160 -0.484825 -0.869198 0.097155 -0.225293 -0.969435 0.050097 -0.250313 -0.966868 0.000000 0.000000 1.000000 -0.050097 0.250313 0.966868 0.000000 0.258779 0.965936 -0.000000 0.000000 1.000000 0.000000 0.499938 0.866061 -0.097160 0.484825 0.869198 0.097160 -0.484825 -0.869198 -0.000000 -0.499938 -0.866061 0.050097 -0.250313 -0.966868 -0.000000 -0.499938 -0.866061 0.089287 0.509732 0.855687 -0.009428 0.757034 0.653307 0.009428 -0.757034 -0.653307 -0.089287 -0.509732 -0.855687 0.146085 0.697792 0.701246 -0.009428 0.757034 0.653307 0.146085 0.697792 0.701246 0.126142 0.889744 0.438683 -0.126142 -0.889744 -0.438683 -0.146085 -0.697792 -0.701246 -0.009428 0.757034 0.653307 0.009428 -0.757034 -0.653307 0.130546 0.991008 0.029346 -0.130546 -0.991008 -0.029346 -0.049989 0.907878 0.416243 0.130546 0.991008 0.029346 -0.130546 -0.991008 -0.029346 0.049989 -0.907878 -0.416243 0.130546 0.991008 0.029346 0.146502 0.988780 -0.029168 0.051534 0.993042 0.105888 -0.051534 -0.993042 -0.105888 -0.146502 -0.988780 0.029168 -0.130546 -0.991008 -0.029346 0.326916 0.939273 0.104371 -0.326916 -0.939273 -0.104371 0.326916 0.939273 0.104371 -0.326916 -0.939273 -0.104371 0.326916 0.939273 0.104371 0.638088 0.769963 0.000680 0.222131 0.970945 0.089015 -0.222131 -0.970945 -0.089015 -0.638088 -0.769963 -0.000680 -0.326916 -0.939273 -0.104371 0.222131 0.970945 0.089015 0.638088 0.769963 0.000680 0.771857 0.545386 -0.326790 -0.771857 -0.545386 0.326790 -0.638088 -0.769963 -0.000680 -0.222131 -0.970945 -0.089015 0.638088 0.769963 0.000680 0.775669 0.378813 -0.504815 0.771857 0.545386 -0.326790 -0.771857 -0.545386 0.326790 -0.775669 -0.378813 0.504815 -0.638088 -0.769963 -0.000680 0.775669 0.378813 -0.504815 0.754161 0.413873 -0.509854 -0.754161 -0.413873 0.509854 -0.775669 -0.378813 0.504815 0.742862 0.551548 -0.379409 0.775669 0.378813 -0.504815 0.847740 0.480110 -0.225458 0.742862 0.551548 -0.379409 -0.742862 -0.551548 0.379409 -0.847740 -0.480110 0.225458 -0.775669 -0.378813 0.504815 0.986198 -0.163022 0.028945 0.847740 0.480110 -0.225458 0.935967 -0.092221 0.339795 0.829603 0.396736 0.392887 -0.986198 0.163022 -0.028945 -0.935967 0.092221 -0.339795 -0.847740 -0.480110 0.225458 0.935967 -0.092221 0.339795 0.886576 -0.397663 0.236319 0.746459 -0.410257 0.523917 -0.886576 0.397663 -0.236319 -0.746459 0.410257 -0.523917 0.675352 -0.508837 0.533839 -0.675352 0.508837 -0.533839 0.591638 -0.751504 0.291901 -0.591638 0.751504 -0.291901 0.813489 -0.534141 0.230062 0.591638 -0.751504 0.291901 -0.591638 0.751504 -0.291901 -0.813489 0.534141 -0.230062 0.591638 -0.751504 0.291901 0.638633 -0.769417 0.012053 -0.638633 0.769417 -0.012053 -0.591638 0.751504 -0.291901 0.487570 -0.666286 0.564215 -0.487570 0.666286 -0.564215 0.487570 -0.666286 0.564215 -0.487570 0.666286 -0.564215 0.377355 -0.524575 0.763167 -0.377355 0.524575 -0.763167 0.377355 -0.524575 0.763167 0.267116 -0.390257 0.881106 0.243742 -0.636668 0.731604 -0.243742 0.636668 -0.731604 -0.267116 0.390257 -0.881106 -0.377355 0.524575 -0.763167 0.267116 -0.390257 0.881106 0.184407 -0.475024 0.860433 0.243742 -0.636668 0.731604 -0.243742 0.636668 -0.731604 -0.184407 0.475024 -0.860433 -0.267116 0.390257 -0.881106 0.184407 -0.475024 0.860433 0.092345 -0.699088 0.709047 -0.092345 0.699088 -0.709047 -0.184407 0.475024 -0.860433 0.099551 -0.496893 0.862083 0.092345 -0.699088 0.709047 0.097155 -0.225293 0.969435 0.099551 -0.496893 0.862083 0.050097 -0.250313 0.966868 -0.050097 0.250313 -0.966868 -0.097155 0.225293 -0.969435 -0.099551 0.496893 -0.862083 0.097155 -0.225293 0.969435 -0.000000 -0.000000 1.000000 0.050097 -0.250313 0.966868 -0.050097 0.250313 -0.966868 0.000000 0.000000 -1.000000 -0.097155 0.225293 -0.969435 0.050097 -0.250313 0.966868 -0.000000 -0.000000 1.000000 -0.000000 -0.258779 0.965936 0.000000 0.258779 -0.965936 0.000000 0.000000 -1.000000 -0.050097 0.250313 -0.966868 -0.000000 -0.258779 0.965936 -0.000000 -0.000000 1.000000 -0.050097 -0.250313 0.966868 0.050097 0.250313 -0.966868 0.000000 0.000000 -1.000000 0.000000 0.258779 -0.965936 -0.000000 0.000000 1.000000 -0.097155 -0.225293 0.969435 -0.000000 -0.000000 1.000000 -0.138136 -0.184935 0.972994 -0.000000 -0.000000 1.000000 -0.170101 -0.131478 0.976616 -0.000000 0.000000 1.000000 -0.170101 -0.131478 0.976616 -0.000000 0.000000 1.000000 -0.000000 0.000000 1.000000 -0.190486 0.068331 0.979309 -0.197498 0.000000 0.980303 -0.000000 -0.000000 1.000000 -0.170101 0.131478 0.976616 -0.190486 0.068331 0.979309 -0.000000 -0.000000 1.000000 -0.138136 0.184935 0.972994 -0.170101 0.131478 0.976616 -0.000000 -0.000000 1.000000 -0.138136 0.184935 0.972994 -0.000000 -0.000000 -1.000000 0.000000 -0.000000 -1.000000 -0.000000 -0.258779 -0.965936 0.050097 0.250313 0.966868 0.089287 0.509732 0.855687 -0.050097 -0.250313 -0.966868 -0.089287 -0.509732 -0.855687 0.097155 0.225293 0.969435 0.050097 0.250313 0.966868 0.190868 0.441065 0.876944 -0.050097 -0.250313 -0.966868 -0.097155 -0.225293 -0.969435 -0.190868 -0.441065 -0.876944 0.138136 0.184935 0.972994 0.097155 0.225293 0.969435 0.274803 0.398360 0.875096 -0.097155 -0.225293 -0.969435 -0.138136 -0.184935 -0.972994 -0.274803 -0.398360 -0.875096 0.170101 0.131478 0.976616 0.365321 0.293838 0.883289 -0.170101 -0.131478 -0.976616 -0.365321 -0.293838 -0.883289 0.190486 0.068331 0.979309 0.365321 0.293838 0.883289 0.170101 0.131478 0.976616 0.392902 0.142311 0.908502 -0.170101 -0.131478 -0.976616 -0.365321 -0.293838 -0.883289 -0.190486 -0.068331 -0.979309 -0.392902 -0.142311 -0.908502 0.197498 -0.000000 0.980303 0.392902 0.142311 0.908502 0.190486 0.068331 0.979309 0.405749 -0.013523 0.913885 -0.190486 -0.068331 -0.979309 -0.392902 -0.142311 -0.908502 -0.197498 0.000000 -0.980303 -0.405749 0.013523 -0.913885 0.197498 -0.000000 0.980303 0.380265 -0.136153 0.914801 0.405749 -0.013523 0.913885 0.190486 -0.068331 0.979309 -0.190486 0.068331 -0.979309 -0.197498 0.000000 -0.980303 -0.380265 0.136153 -0.914801 0.197498 -0.000000 0.980303 -0.000000 -0.000000 1.000000 0.190486 -0.068331 0.979309 -0.190486 0.068331 -0.979309 0.000000 0.000000 -1.000000 -0.197498 0.000000 -0.980303 -0.000000 -0.000000 1.000000 0.170101 -0.131478 0.976616 -0.170101 0.131478 -0.976616 0.000000 0.000000 -1.000000 0.170101 -0.131478 0.976616 -0.000000 -0.000000 1.000000 0.138136 -0.184935 0.972994 -0.138136 0.184935 -0.972994 0.000000 0.000000 -1.000000 -0.170101 0.131478 -0.976616 -0.000000 -0.000000 1.000000 0.000000 0.000000 -1.000000 0.267116 -0.390257 0.881106 -0.267116 0.390257 -0.881106 0.345320 -0.280616 0.895550 -0.345320 0.280616 -0.895550 0.504048 -0.397791 0.766614 0.345320 -0.280616 0.895550 -0.345320 0.280616 -0.895550 -0.504048 0.397791 -0.766614 0.504048 -0.397791 0.766614 0.380265 -0.136153 0.914801 0.345320 -0.280616 0.895550 0.506740 -0.277439 0.816236 -0.345320 0.280616 -0.895550 -0.380265 0.136153 -0.914801 -0.504048 0.397791 -0.766614 -0.506740 0.277439 -0.816236 0.675352 -0.508837 0.533839 0.746459 -0.410257 0.523917 -0.675352 0.508837 -0.533839 -0.746459 0.410257 -0.523917 0.746459 -0.410257 0.523917 0.587179 -0.065608 0.806794 -0.587179 0.065608 -0.806794 -0.746459 0.410257 -0.523917 0.587179 -0.065608 0.806794 0.405749 -0.013523 0.913885 0.506740 -0.277439 0.816236 -0.506740 0.277439 -0.816236 -0.405749 0.013523 -0.913885 -0.587179 0.065608 -0.806794 -0.405749 0.013523 -0.913885 0.587179 -0.065608 0.806794 0.543932 0.231243 0.806638 -0.543932 -0.231243 -0.806638 -0.587179 0.065608 -0.806794 0.543932 0.231243 0.806638 -0.543932 -0.231243 -0.806638 0.520285 0.400855 0.754068 -0.520285 -0.400855 -0.754068 0.520285 0.400855 0.754068 0.399329 0.496757 0.770564 0.365321 0.293838 0.883289 -0.365321 -0.293838 -0.883289 -0.399329 -0.496757 -0.770564 -0.520285 -0.400855 -0.754068 0.285078 0.607192 0.741652 0.274803 0.398360 0.875096 0.399329 0.496757 0.770564 0.521836 0.639343 0.564737 0.285078 0.607192 0.741652 0.521836 0.639343 0.564737 -0.521836 -0.639343 -0.564737 -0.285078 -0.607192 -0.741652 -0.521836 -0.639343 -0.564737 -0.399329 -0.496757 -0.770564 0.331971 0.822145 0.462464 0.526928 0.811013 0.254175 0.331971 0.822145 0.462464 -0.331971 -0.822145 -0.462464 -0.526928 -0.811013 -0.254175 0.331971 0.822145 0.462464 0.526928 0.811013 0.254175 0.326916 0.939273 0.104371 -0.326916 -0.939273 -0.104371 -0.526928 -0.811013 -0.254175 -0.331971 -0.822145 -0.462464 0.638088 0.769963 0.000680 0.326916 0.939273 0.104371 -0.326916 -0.939273 -0.104371 -0.638088 -0.769963 -0.000680 0.727639 0.661352 -0.182086 0.712564 0.639835 0.287861 -0.727639 -0.661352 0.182086 0.727639 0.661352 -0.182086 0.775669 0.378813 -0.504815 0.638088 0.769963 0.000680 0.727639 0.661352 -0.182086 0.847740 0.480110 -0.225458 0.712564 0.639835 0.287861 -0.847740 -0.480110 0.225458 -0.712564 -0.639835 -0.287861 -0.727639 -0.661352 0.182086 0.829603 0.396736 0.392887 -0.829603 -0.396736 -0.392887 -0.712564 -0.639835 -0.287861 -0.829603 -0.396736 -0.392887 0.829603 0.396736 0.392887 0.725405 0.285465 0.626336 0.935967 -0.092221 0.339795 0.653254 0.492373 0.575177 0.653254 0.492373 0.575177 0.725405 0.285465 0.626336 -0.653254 -0.492373 -0.575177 0.653254 0.492373 0.575177 0.520285 0.400855 0.754068 0.653254 0.492373 0.575177 -0.653254 -0.492373 -0.575177 -0.725405 -0.285465 -0.626336 -0.653254 -0.492373 -0.575177 -0.935967 0.092221 -0.339795 -0.829603 -0.396736 -0.392887 0.822709 -0.086470 0.561848 -0.822709 0.086470 -0.561848 0.746459 -0.410257 0.523917 -0.746459 0.410257 -0.523917 0.587179 -0.065608 0.806794 -0.587179 0.065608 -0.806794 -0.725405 -0.285465 -0.626336 0.543932 0.231243 0.806638 0.587179 -0.065608 0.806794 -0.587179 0.065608 -0.806794 -0.543932 -0.231243 -0.806638 -0.520285 -0.400855 -0.754068 -0.653254 -0.492373 -0.575177 -0.727639 -0.661352 0.182086 -0.638088 -0.769963 -0.000680 -0.775669 -0.378813 0.504815 0.126142 0.889744 0.438683 -0.126142 -0.889744 -0.438683 0.331971 0.822145 0.462464 0.126142 0.889744 0.438683 -0.126142 -0.889744 -0.438683 -0.331971 -0.822145 -0.462464 -0.146085 -0.697792 -0.701246 0.331971 0.822145 0.462464 -0.285078 -0.607192 -0.741652 -0.331971 -0.822145 -0.462464 -0.331971 -0.822145 -0.462464 0.009428 -0.757034 -0.653307 -0.274803 -0.398360 -0.875096 -0.092345 0.699088 -0.709047 -0.099551 0.496893 -0.862083 0.092345 -0.699088 0.709047 -0.000078 -0.558152 0.829739 0.000078 0.558152 -0.829739 -0.092345 0.699088 -0.709047 -0.000000 -0.258779 0.965936 -0.000078 -0.558152 0.829739 0.000078 0.558152 -0.829739 0.000000 0.258779 -0.965936 -0.050097 -0.250313 0.966868 -0.000000 -0.258779 0.965936 -0.104400 -0.521367 0.846922 0.104400 0.521367 -0.846922 0.050097 0.250313 -0.966868 -0.104400 -0.521367 0.846922 -0.177097 -0.491958 0.852416 0.177097 0.491958 -0.852416 0.097155 0.225293 -0.969435 0.104400 0.521367 -0.846922 -0.177097 -0.491958 0.852416 -0.097155 -0.225293 0.969435 0.138136 0.184935 -0.972994 0.177097 0.491958 -0.852416 0.170101 0.131478 -0.976616 0.000000 0.000000 -1.000000 0.170101 0.131478 -0.976616 0.000000 -0.000000 -1.000000 0.000000 -0.000000 -1.000000 0.197498 -0.000000 -0.980303 0.190486 -0.068331 -0.979309 0.000000 -0.000000 -1.000000 0.190486 -0.068331 -0.979309 -0.363685 0.280099 0.888413 0.420850 -0.181086 -0.888872 0.363685 -0.280099 -0.888413 0.190486 -0.068331 -0.979309 -0.507785 0.395816 0.765169 0.507785 -0.395816 -0.765169 0.589115 -0.269206 -0.761887 -0.507785 0.395816 0.765169 -0.629817 0.518655 0.578210 -0.507785 0.395816 0.765169 -0.503197 0.719253 0.479029 -0.629817 0.518655 0.578210 -0.436348 0.555476 0.707847 0.629817 -0.518655 -0.578210 0.503197 -0.719253 -0.479029 0.507785 -0.395816 -0.765169 -0.503197 0.719253 0.479029 -0.629817 0.518655 0.578210 0.503197 -0.719253 -0.479029 -0.377127 0.793730 0.477251 0.377127 -0.793730 -0.477251 -0.436348 0.555476 0.707847 -0.377127 0.793730 0.477251 0.377127 -0.793730 -0.477251 0.436348 -0.555476 -0.707847 -0.313247 0.608171 0.729387 -0.436348 0.555476 0.707847 0.436348 -0.555476 -0.707847 0.313247 -0.608171 -0.729387 -0.313247 0.608171 0.729387 -0.436348 0.555476 0.707847 -0.298670 0.398435 0.867206 0.298670 -0.398435 -0.867206 0.436348 -0.555476 -0.707847 0.313247 -0.608171 -0.729387 -0.298670 0.398435 0.867206 -0.507785 0.395816 0.765169 0.507785 -0.395816 -0.765169 0.436348 -0.555476 -0.707847 0.298670 -0.398435 -0.867206 0.170101 -0.131478 -0.976616 0.138136 -0.184935 -0.972994 0.000000 0.000000 -1.000000 0.138136 -0.184935 -0.972994 0.000000 0.000000 -1.000000 -0.189791 0.439502 0.877962 -0.138136 0.184935 0.972994 -0.097155 0.225293 0.969435 0.189791 -0.439502 -0.877962 0.138136 -0.184935 -0.972994 -0.313247 0.608171 0.729387 0.313247 -0.608171 -0.729387 0.097155 -0.225293 -0.969435 0.170101 -0.131478 -0.976616 0.000000 0.000000 -1.000000 0.629817 -0.518655 -0.578210 -0.680019 0.663254 0.312521 0.680019 -0.663254 -0.312521 -0.680019 0.663254 0.312521 0.680019 -0.663254 -0.312521 -0.708337 0.704162 -0.049131 0.708337 -0.704162 0.049131 -0.708337 0.704162 -0.049131 0.708337 -0.704162 0.049131 -0.644892 0.691641 -0.325187 0.644892 -0.691641 0.325187 -0.504589 0.813221 -0.289933 0.504589 -0.813221 0.289933 -0.644892 0.691641 -0.325187 -0.998733 -0.050330 -0.000000 0.644892 -0.691641 0.325187 0.998733 0.050330 0.000000 0.644892 -0.691641 0.325187 -0.998733 -0.050330 -0.000000 -0.936670 -0.014854 0.349899 0.936670 0.014854 -0.349899 0.998733 0.050330 0.000000 -0.998733 -0.050330 -0.000000 -0.936670 -0.014854 0.349899 -0.941215 0.138619 -0.308057 -0.917951 -0.350414 0.185943 0.917951 0.350414 -0.185943 0.941215 -0.138619 0.308057 0.998733 0.050330 0.000000 0.936670 0.014854 -0.349899 -0.936670 -0.014854 0.349899 0.936670 0.014854 -0.349899 -0.936670 -0.014854 0.349899 -0.842165 0.167175 0.512650 0.842165 -0.167175 -0.512650 0.936670 0.014854 -0.349899 0.629817 -0.518655 -0.578210 -0.936670 -0.014854 0.349899 0.936670 0.014854 -0.349899 0.507785 -0.395816 -0.765169 0.138136 0.184935 -0.972994 0.000000 0.000000 -1.000000 0.097155 0.225293 -0.969435 0.000000 -0.000000 -1.000000 0.177097 0.491958 -0.852416 0.228492 0.657072 -0.718365 -0.033961 -0.737964 0.673985 -0.000078 -0.558152 0.829739 0.033961 0.737964 -0.673985 0.000078 0.558152 -0.829739 0.092345 -0.699088 0.709047 -0.000078 -0.558152 0.829739 -0.033961 -0.737964 0.673985 0.033961 0.737964 -0.673985 0.000078 0.558152 -0.829739 -0.092345 0.699088 -0.709047 -0.033961 -0.737964 0.673985 -0.034230 -0.836760 0.546498 -0.119787 -0.719703 0.683871 0.034230 0.836760 -0.546498 0.034230 0.836760 -0.546498 0.119787 0.719703 -0.683871 0.033961 0.737964 -0.673985 0.092345 -0.699088 0.709047 -0.034230 -0.836760 0.546498 0.034230 0.836760 -0.546498 -0.092345 0.699088 -0.709047 0.243742 -0.636668 0.731604 0.092345 -0.699088 0.709047 -0.092345 0.699088 -0.709047 -0.243742 0.636668 -0.731604 0.000000 0.258779 -0.965936 0.197498 -0.000000 0.980303 0.190486 0.068331 0.979309 -0.000000 -0.000000 1.000000 0.000000 0.000000 -1.000000 -0.190486 -0.068331 -0.979309 -0.197498 0.000000 -0.980303 -0.000000 -0.000000 1.000000 0.000000 0.000000 -1.000000 -0.000000 -0.000000 1.000000 0.000000 0.000000 -1.000000 0.000000 -0.000000 1.000000 -0.000000 0.000000 -1.000000 -0.000000 -0.000000 1.000000 0.000000 0.000000 -1.000000 0.050097 0.250313 0.966868 0.000000 0.258779 0.965936 -0.000000 -0.000000 1.000000 0.000000 0.000000 -1.000000 -0.000000 -0.258779 -0.965936 -0.050097 -0.250313 -0.966868 -0.935967 0.092221 -0.339795 -0.742862 -0.551548 0.379409 0.742862 0.551548 -0.379409 -0.738687 -0.346433 0.578209 -0.801370 -0.237939 0.548809 -0.895682 0.356013 0.266474 0.666284 -0.478754 -0.571717 -0.666284 0.478754 0.571717 0.803399 -0.564096 -0.190644 -0.803399 0.564096 0.190644 0.817968 -0.574551 0.028633 -0.803399 0.564096 0.190644 -0.817968 0.574551 -0.028633 0.595536 -0.752475 -0.281280 -0.595536 0.752475 0.281280 -0.322777 0.806615 0.495165 -0.742862 -0.551548 0.379409 0.738687 0.346433 -0.578209 0.811872 0.545478 -0.208127 -0.811872 -0.545478 0.208127 -0.738687 -0.346433 0.578209 0.599692 0.260194 -0.756749 0.738687 0.346433 -0.578209 0.365088 0.478388 -0.798659 -0.365088 -0.478388 0.798659 -0.599692 -0.260194 0.756749 0.599692 0.260194 -0.756749 0.265629 0.451667 -0.851726 0.365088 0.478388 -0.798659 -0.365088 -0.478388 0.798659 -0.265629 -0.451667 0.851726 -0.599692 -0.260194 0.756749 0.265629 0.451667 -0.851726 0.080019 0.547163 -0.833192 -0.080019 -0.547163 0.833192 -0.265629 -0.451667 0.851726 0.080019 0.547163 -0.833192 0.265629 0.451667 -0.851726 0.066865 0.547159 -0.834354 -0.066865 -0.547159 0.834354 -0.265629 -0.451667 0.851726 -0.080019 -0.547163 0.833192 0.249411 0.100890 -0.963128 -0.249411 -0.100890 0.963128 0.066865 0.547159 -0.834354 0.301672 0.055400 -0.951801 -0.301672 -0.055400 0.951801 0.132209 0.057528 -0.989551 -0.132209 -0.057528 0.989551 0.301672 0.055400 -0.951801 0.259294 -0.257441 -0.930855 0.132209 0.057528 -0.989551 -0.132209 -0.057528 0.989551 -0.259294 0.257441 0.930855 -0.301672 -0.055400 0.951801 0.249566 0.031268 -0.967853 -0.249566 -0.031268 0.967853 0.249566 0.031268 -0.967853 -0.249566 -0.031268 0.967853 0.391064 -0.278600 -0.877184 0.301672 0.055400 -0.951801 -0.301672 -0.055400 0.951801 -0.391064 0.278600 0.877184 0.391064 -0.278600 -0.877184 0.346955 -0.463065 -0.815594 -0.346955 0.463065 0.815594 -0.391064 0.278600 0.877184 0.524643 0.117793 -0.843133 0.249411 0.100890 -0.963128 -0.249411 -0.100890 0.963128 -0.524643 -0.117793 0.843133 -0.066865 -0.547159 0.834354 0.080019 0.547163 -0.833192 0.066865 0.547159 -0.834354 -0.066865 -0.547159 0.834354 -0.080019 -0.547163 0.833192 0.080019 0.547163 -0.833192 0.184117 0.077959 -0.979808 -0.184117 -0.077959 0.979808 -0.080019 -0.547163 0.833192 -0.153365 -0.412187 0.898098 -0.014985 -0.156489 0.987566 -0.098885 -0.593034 0.799083 -0.014985 -0.156489 0.987566 0.153365 0.412187 -0.898098 0.347555 -0.024913 -0.937329 -0.347555 0.024913 0.937329 -0.153365 -0.412187 0.898098 0.030258 0.062993 -0.997555 -0.030258 -0.062993 0.997555 0.438742 0.294055 -0.849139 -0.438742 -0.294055 0.849139 0.754161 0.413873 -0.509854 -0.754161 -0.413873 0.509854 0.626351 0.320384 -0.710660 0.754161 0.413873 -0.509854 0.438742 0.294055 -0.849139 -0.626351 -0.320384 0.710660 -0.754161 -0.413873 0.509854 -0.438742 -0.294055 0.849139 0.438742 0.294055 -0.849139 0.452654 0.163721 -0.876527 -0.452654 -0.163721 0.876527 -0.438742 -0.294055 0.849139 0.626351 0.320384 -0.710660 0.413889 0.473793 -0.777314 -0.413889 -0.473793 0.777314 -0.626351 -0.320384 0.710660 0.626351 0.320384 -0.710660 -0.626351 -0.320384 0.710660 0.811872 0.545478 -0.208127 -0.811872 -0.545478 0.208127 0.754161 0.413873 -0.509854 -0.754161 -0.413873 0.509854 -0.738687 -0.346433 0.578209 -0.182045 -0.932013 0.313388 0.182045 0.932013 -0.313388 + + + + + + + + + + 0.474151 0.883993 0.367327 0.788620 0.459026 0.780737 0.409310 0.889567 -9.595126 -5.909471 -24.272507 -5.909471 -12.687860 9.592737 0.347988 0.668888 -9.595126 21.644459 -24.828097 8.074154 -24.272507 21.644459 0.451641 0.656340 -0.227608 -0.663014 -18.134762 -0.663014 -3.854041 13.906049 0.327737 0.530216 -0.227608 8.919178 -17.873696 -6.627692 -18.134762 8.919178 0.444345 0.516554 1.288857 -5.653051 -18.673258 -5.653051 -0.941788 9.796368 0.327945 0.388736 0.231642 0.411041 -0.033741 0.212459 -22.107046 0.212459 -0.012249 15.628601 0.322512 0.245370 0.237408 0.262946 0.111993 0.307452 0.110754 0.445097 -46.038580 -5.939781 -64.265334 -18.136025 -65.378496 -3.332806 -39.739874 -27.147176 -60.823231 -23.683825 -42.785789 -11.209307 0.153226 0.185409 -34.497016 4.808100 -51.901518 -6.264031 -55.557120 8.410150 0.234768 0.263236 38.141328 8.512284 54.812070 -3.002408 37.697146 8.512284 0.218818 0.120765 -55.537592 -9.397921 -63.589047 0.624383 -48.542406 14.192743 0.172128 0.222980 31.600186 28.054641 24.988525 17.029287 15.900520 30.761681 0.271284 0.134796 35.003215 17.010519 19.594126 16.410543 27.962101 31.896525 0.304298 0.176283 -27.249795 -48.187603 -22.823501 -58.361404 -38.229151 -57.678807 0.386753 0.170277 -43.420888 -31.463555 -28.001146 -35.592042 -43.901676 -42.548100 0.403843 0.042150 21.701438 -32.315519 20.608184 -18.129021 36.411258 -15.876085 0.510667 0.010689 10.813330 -38.939000 27.829585 -20.077717 27.616585 -34.304682 0.378108 0.169406 0.378497 0.160751 0.387893 0.073460 -20.148178 -43.849422 -40.700359 -38.088829 -39.597692 -27.308104 0.405655 0.078032 4.502562 6.755379 5.048812 27.807468 9.095407 27.599618 0.430574 0.018120 -18.938099 -36.972783 -38.398431 -38.634096 -39.011156 -30.604013 0.460952 0.048606 17.695039 -35.933722 35.759732 -32.951052 37.075410 -38.355642 0.494717 0.000000 -15.150316 -26.965504 -31.736520 -31.701689 -33.311484 -24.641408 0.529569 0.010508 -3.643151 -32.179242 10.042840 -40.428426 7.631620 -45.233481 0.563133 0.014959 -10.301325 -25.813688 2.971273 -33.787413 -0.200620 -38.196383 0.593122 0.008254 -16.835944 5.825774 -20.666707 -9.622228 -25.403476 -7.071496 0.617492 0.059527 7.895696 -42.640549 7.182156 -50.655595 -8.571940 -48.391974 0.660720 0.035487 0.648314 0.024431 0.599988 0.011379 14.027704 -27.157425 27.957141 -26.583780 28.479662 -35.603011 19.707067 -23.473190 27.759478 -31.523266 13.824023 -31.924982 0.735938 0.099859 21.250396 -26.024840 40.554987 -17.783847 31.475542 -31.033977 0.746201 0.083946 23.714507 4.894830 35.944639 4.894830 20.118991 -8.893936 0.788442 0.222016 41.735572 -8.594264 35.944639 -23.540731 23.714507 -23.540731 0.669094 0.229317 -2.989553 -10.519205 -8.227462 4.629925 10.067095 4.629925 0.689345 0.367990 10.067095 -8.923388 -8.227462 -8.923388 8.822521 6.575784 0.820269 0.359114 10.544462 4.621413 -6.678028 -10.685843 -9.735519 4.621413 0.869984 0.205294 0.911217 0.340462 17.133747 -8.871188 -0.315288 -8.871188 16.859529 6.736025 7.511302 0.151462 -0.315288 21.495413 17.133747 21.495413 0.823631 0.108374 1.143840 6.795430 9.594470 22.337092 13.612070 -0.038758 0.925291 0.186015 11.372800 -8.224975 -5.404367 -8.224975 10.658220 7.532725 2.430046 6.128694 -5.404367 21.392492 11.372800 21.392492 0.928643 0.239540 35.051702 6.568710 43.291118 -5.640150 32.983503 -19.355639 0.984577 0.295048 36.803895 5.470745 40.091278 16.645232 44.352077 -7.177147 0.974483 0.266848 -18.050764 30.730355 3.510797 30.730355 7.796144 19.899295 0.922801 0.427929 -3.703080 -20.828154 3.510797 -38.454888 -18.050764 -38.454888 1.000000 0.435540 47.516393 2.862937 45.883934 -12.651953 34.837216 2.862937 0.962965 0.320145 -9.575463 7.125665 10.989966 -8.431497 -8.412952 -8.431497 0.979279 0.462075 11.686321 8.172974 11.751862 -7.428551 -8.779933 8.172974 0.925090 0.482314 11.436028 7.820896 -5.083420 -7.758752 -5.911932 7.820896 13.194775 -8.872174 -4.046928 -8.872174 12.514194 6.663168 13.194775 4.793102 -3.163171 -10.657769 -4.046928 4.793102 10.989966 4.467175 10.208551 -10.989210 -8.412952 4.467175 0.824732 0.502303 16.527977 5.759751 -3.382036 -9.741179 -4.619450 5.759751 16.859529 -10.758229 -2.602341 -10.758229 17.329163 4.715058 -2.602341 6.736025 0.707180 0.518253 26.941227 5.165940 5.710518 -10.313286 5.902153 5.165940 10.544462 9.226972 -9.735519 9.226972 10.309021 26.214199 0.580242 0.551248 0.577754 0.683031 32.871484 -5.926425 13.025546 -8.530424 32.439789 8.859893 8.634148 9.328199 8.153056 26.310243 27.966433 29.151395 0.564082 0.409517 31.268877 10.295088 11.266412 6.673893 30.971925 26.126121 12.269290 -8.941539 11.284646 6.576314 31.287564 10.195002 0.556786 0.238972 33.578875 -12.930211 15.602829 -12.930211 35.070692 5.748769 0.654008 0.111007 0.562309 0.118890 30.713631 -24.876729 16.036251 -24.876729 33.578875 -11.775744 19.257826 -6.774360 16.036251 8.571513 30.713631 8.571513 24.431035 -14.536239 36.124725 -2.724847 32.758449 -18.039629 24.272507 -26.210272 9.595126 -26.210272 24.705929 -13.109286 16.312142 -1.086653 9.595126 13.503890 24.272507 13.503890 15.602829 -11.775744 0.547183 0.043182 0.545676 12.440615 -5.951979 6.377446 -5.054796 25.506647 -23.776505 -9.665665 -37.050861 -15.959378 -40.566503 -7.797161 -24.591033 -15.406413 -19.446088 -16.978915 -31.924346 -28.135980 29.104000 -15.425507 25.402385 -11.450842 41.946924 -8.034183 28.078620 -22.333642 41.793100 -16.722459 30.208376 -27.269903 0.479854 0.047511 19.594916 10.969985 19.776596 25.184537 29.664415 11.315713 0.467090 0.165988 0.457297 0.287050 19.738331 9.890848 6.104481 3.642105 20.403302 25.521437 13.448242 4.928428 -0.351691 14.912168 12.684764 22.326983 0.414624 0.093307 -6.188660 2.299975 -12.328466 18.597072 1.616255 9.693885 0.374842 0.165988 31.597369 20.855243 23.936739 35.519373 37.406023 35.519373 0.344316 0.287050 23.936739 8.568842 25.366723 24.148080 37.406023 8.568842 41.863161 24.148080 0.291850 0.161908 0.242671 0.282052 22.362523 16.190197 24.125598 32.298278 34.873681 16.190197 39.448575 32.298278 0.223769 0.154025 0.159291 0.272397 15.135188 24.085088 16.327937 40.787701 26.752912 24.085088 30.556685 40.787701 0.175241 0.221465 -45.747936 8.905376 -53.825186 24.011799 -37.142362 19.938361 0.099855 0.337332 -35.244588 26.384872 -51.848696 30.768150 -41.073896 42.640343 0.052466 0.389246 0.118757 0.404475 0.036303 0.525489 1.791428 5.376267 17.384598 20.264381 16.912116 5.376267 0.127266 0.538807 22.963022 -17.371148 22.040693 -2.701897 38.762261 -2.701897 0.211609 0.415194 17.235085 -16.546776 32.058281 -1.883235 33.067339 -16.546776 0.217608 0.550541 0.228300 0.682374 11.300389 -12.999878 11.139091 1.864437 27.241295 -12.999878 0.318434 0.558125 31.005580 -11.640669 15.188029 -11.640669 30.289019 3.207240 0.324979 0.420768 15.103577 1.624902 15.188029 16.465167 31.005580 16.465167 0.451140 0.420817 44.538716 -1.146158 26.117772 -1.146158 45.489890 13.663834 49.748793 -4.895972 33.159856 -9.287528 53.164721 9.835846 30.868991 -24.954023 33.749850 -11.856462 50.357717 -7.537048 56.841692 4.788533 36.392755 -13.859229 38.234164 4.788533 0.445583 0.557019 56.841692 -9.232257 38.234164 -9.232257 58.171998 5.434463 42.541432 27.150982 23.485870 11.354923 22.393022 27.150982 0.447683 0.688606 42.541432 -6.741741 22.393022 -6.741741 41.761361 8.050581 22.299491 8.050581 0.454818 0.805781 41.761361 -9.286006 22.299491 -9.286006 39.389430 5.552777 0.571436 0.790774 0.464612 0.899928 42.287214 -11.371679 24.860606 -12.775403 38.161825 3.719335 24.141062 -10.973361 23.613616 2.864107 41.055352 4.065333 0.700273 0.657494 33.766261 -8.438555 14.640555 -10.422048 32.334358 5.334729 12.539655 -8.010476 12.830489 7.535864 31.972099 9.359501 0.813877 0.642081 26.939961 -7.434272 5.900886 -7.434212 26.744222 8.113557 6.412422 8.113494 0.679161 0.779588 26.742913 -13.058739 6.411114 -13.058739 24.930675 3.329491 0.779505 0.765934 0.911026 0.622750 16.625888 -11.973665 -3.835073 -11.973665 15.679872 4.408084 11.436028 -7.694889 -5.911932 -7.694889 11.616538 7.879449 0.973120 0.602131 9.043308 10.793460 -8.573064 -4.681382 -9.110636 10.793460 0.982968 0.573101 43.912710 18.061503 47.516393 2.566193 34.837216 2.566193 11.686321 -9.858095 -8.779933 -9.858095 -11.420629 5.830049 15.002951 12.177491 16.081142 -3.269101 -7.187974 12.177491 0.923139 0.733157 14.807642 6.676568 15.002951 -9.449049 -7.187974 -9.449049 0.865956 0.751808 10.095667 7.882122 -9.516963 -7.940741 -6.400770 7.882122 9.043308 -8.440060 -9.110636 -8.440060 10.449937 7.447113 11.177435 9.814329 -9.015302 -5.724273 -5.419093 9.814329 0.728877 0.870939 11.177435 -5.027003 -5.419093 -5.027003 12.707437 10.600140 0.800364 0.859882 0.847054 0.844653 10.095667 -6.337615 -6.400770 -6.337615 11.525652 9.710738 -1.943633 9.710738 0.750051 0.929021 0.717036 0.939790 -1.943633 -4.245649 3.550703 11.995793 11.525652 -4.245649 0.766752 0.917873 0.643226 0.975198 0.634581 0.980969 0.123915 -2.215295 7.066948 15.580953 8.970640 -2.215295 0.642838 0.969624 0.766001 0.907105 -2.139610 -2.606179 3.633140 16.410536 6.075361 -2.606179 0.633442 0.964626 0.747850 0.897450 -3.414832 -3.020291 -0.070548 16.848635 4.412212 -3.020291 0.713535 0.889567 0.615679 0.960546 3.414832 -3.020291 -4.412212 -3.020291 0.070548 16.848635 0.788884 0.789572 0.837413 0.800720 6.032876 -6.182664 -5.036236 -6.182664 3.414832 11.419433 0.853363 0.665535 0.912798 0.679189 8.236487 -12.292726 -5.320350 -12.292726 6.032876 5.262965 0.907937 0.547819 8.236487 32.348304 8.094402 17.960284 -5.320350 32.348304 0.952918 0.694960 0.943003 0.566470 0.905709 0.406514 0.902577 0.525912 -21.235618 16.309835 -21.064754 0.890187 -37.965095 16.309835 7.026286 16.510089 -8.029274 1.089633 -8.094402 16.510089 0.968868 0.258041 -17.939001 -22.839641 -15.295992 -41.103537 -22.063824 -41.103537 -0.120827 -22.977316 -13.708684 -41.196206 -16.645936 -22.977316 -1.943439 24.683652 -0.120827 8.926211 -16.645936 8.926211 36.296049 23.460392 27.847538 7.614514 28.573484 23.460392 0.954218 0.713611 37.424621 12.587172 36.296049 -3.716742 28.573484 -3.716742 4.425877 22.810732 -18.661976 8.291998 -11.158802 22.810732 0.872825 0.828651 -11.158802 -8.281271 -6.405435 8.230618 4.425877 -8.281271 0.871764 0.813422 -10.900556 -11.303357 -7.096783 5.837655 3.328192 -11.303357 11.367247 -12.221877 -1.471765 5.229890 9.438823 5.229890 10.210861 -13.085933 -3.169759 -13.085933 -2.321713 4.587181 -3.169759 32.416248 10.210861 32.416248 -3.115078 18.027631 5.066593 36.851864 7.026286 22.312222 -8.094402 22.312222 3.328192 34.463670 -8.316401 20.021935 -10.900556 34.463670 9.438823 -6.954585 -1.471765 -6.954585 -0.833074 10.829679 4.782478 -9.634966 -3.414832 9.195754 4.412212 9.195754 -7.096783 -8.146492 -2.139610 10.023801 4.520941 -8.146492 6.075361 10.023801 6.243235 -5.848783 -6.530076 -5.848783 -0.284386 11.285018 4.262018 -8.385849 -6.530076 8.151699 6.243235 8.151699 6.932612 -5.507693 0.123915 11.516367 8.970640 11.516367 4.520941 5.837655 0.856243 0.178850 -22.063824 37.853408 -15.295992 37.853408 -14.708410 17.744218 0.920768 0.219600 -1.873088 39.321032 7.106352 25.526804 -5.620313 19.555328 -6.113741 19.289501 -18.273876 30.381938 7.609552 19.638444 0.839613 0.126179 -6.034204 17.125779 7.689570 17.455243 -2.861257 0.958210 0.851205 0.130093 15.480803 11.594282 13.660696 -4.872432 2.840512 -3.362158 5.439699 -2.966111 4.272048 13.559690 17.848084 -8.622298 0.707450 0.064512 24.818231 7.774749 31.870282 -3.896971 19.523960 -16.540776 19.118440 -14.498506 30.406521 -12.848642 20.897827 -23.461961 25.771165 9.981297 29.803282 -3.653398 18.684893 -6.207657 11.576311 -38.841373 4.879272 -45.059042 -1.542892 -39.820582 2.528024 -44.564428 9.759713 -48.612678 0.123299 -52.243451 0.634581 0.086089 0.814898 -34.674999 11.543846 -39.269800 -1.576913 -40.227938 0.758258 0.077238 15.505231 -26.474492 5.410655 -33.703396 -3.440829 -26.095916 4.415697 1.564441 2.247180 16.198401 14.749394 -5.318306 0.750534 0.084657 9.540178 -4.575593 23.911987 4.008572 16.332229 -8.695856 8.239401 16.103288 18.706080 12.971846 6.253138 1.784307 0.656356 0.091139 28.246659 -9.541539 16.607809 -18.115664 1.856786 -15.533062 0.611272 0.016910 1.910767 -14.745695 16.646496 -17.414181 -1.266805 -32.171569 0.634732 0.040002 5.001017 -21.034857 2.684552 -16.969120 20.055556 -23.310632 -7.982815 -4.345344 7.644098 -17.553140 6.881597 -22.169937 13.304202 -1.876267 18.780027 -7.631600 5.570098 -20.819073 2.032983 -29.825091 -15.797013 -24.302148 3.151945 -24.119089 19.418738 -33.783517 1.447230 -29.425599 2.318623 -23.676582 8.807395 -30.423923 9.917994 -36.367193 -5.845906 -43.834547 0.633442 0.047097 0.377128 -24.397811 -3.729677 -31.674207 -18.807952 -33.787014 0.578966 0.037293 -7.006879 -16.164200 0.235645 -12.708559 -11.751953 -30.386849 2.476926 -17.293167 0.312800 -26.435744 -7.532017 -28.125252 6.880678 -46.598916 -0.337179 -42.390076 -7.771421 -36.645322 0.670808 0.053768 0.760001 0.077064 -7.580848 -32.424890 -13.006918 -36.263486 -29.967512 -31.468180 4.858881 -40.277872 -12.988795 -36.194090 -7.572313 -32.341977 0.590760 0.030427 -3.432936 -22.462385 -13.404621 -12.756736 2.111831 -22.475612 0.633844 0.019134 -16.138118 -23.034180 -13.510170 -15.397923 -2.739323 -24.208314 -27.892887 -4.729322 -13.383974 -14.736726 -16.728250 -22.087531 0.697934 0.071775 -7.515117 12.013975 3.622630 11.200338 -8.857290 -5.237672 0.778663 0.108024 -2.724361 34.894688 4.409590 16.361023 -6.704863 17.447462 0.828958 0.121305 0.813008 0.109736 -21.447654 20.285524 -6.265842 12.055321 -16.388206 6.644446 -17.656005 1.129382 -14.266521 -9.172267 -30.891987 -4.501342 5.379135 -4.572910 -5.660157 -4.994303 -7.004914 5.766933 -11.168551 23.779114 -0.374801 26.132517 -6.226922 -0.288619 -29.828669 -4.621469 -27.203793 6.552153 -7.752581 -8.458702 -0.670353 11.830532 12.621422 16.408224 10.388649 0.084235 -36.753476 1.515120 -36.932467 26.758881 -24.620295 9.240546 0.902577 0.242813 9.875493 26.784854 -6.033744 7.184454 -5.245195 26.784854 -21.407064 25.906007 -8.894434 25.906007 -7.849607 11.394447 -9.006479 26.501342 -8.894434 6.885406 -21.407064 6.885406 0.809578 0.232044 0.651463 0.107778 21.130673 -11.011130 2.557124 -11.011130 25.583640 4.579626 2.557124 25.898955 21.130673 25.898955 9.467084 12.326528 0.646493 0.084299 -5.454638 23.278984 3.653155 11.072164 -4.849063 15.759563 0.606710 0.043590 -2.005858 18.682689 6.137420 13.396251 -6.177350 3.335065 12.386167 4.924294 1.956587 -8.883117 -1.559067 -2.718448 0.560383 0.012702 7.805479 -0.405235 8.886118 -7.419163 -5.727812 -12.090123 -6.246474 -26.436752 -5.281411 -21.623811 10.742759 -33.532612 -16.194276 -21.553127 -2.805398 -22.835403 -2.136504 -27.698358 -3.425736 -30.773030 2.119040 -30.781388 15.006971 -38.443026 0.526618 0.006304 -14.006193 -16.543471 -11.265715 -12.386396 -1.403354 -27.933714 0.546184 0.054064 -18.678165 -0.076740 -11.849472 -16.164420 -16.546437 -17.816695 -5.685363 8.085056 2.702952 5.031413 -8.086228 -9.226222 0.554244 0.061416 8.248551 26.653713 8.129554 10.764281 0.692596 15.701915 -25.289403 10.908114 -13.098353 17.153962 -12.667489 1.255368 0.538482 0.107778 -21.210309 6.862583 -4.472834 1.867127 -17.702268 -1.684550 2.983659 23.463523 2.257951 15.954744 -13.512778 23.463523 0.670652 0.231222 0.544639 0.231222 2.983659 -9.853286 -13.512778 -9.853286 5.785533 5.894973 -12.613852 5.894973 0.678114 0.367835 0.547655 0.367835 5.785533 -3.418213 -12.613852 -3.418213 6.875047 12.451091 -12.173398 12.451091 0.671569 0.512270 6.875047 -7.416225 -12.173398 -7.416225 5.919380 8.156141 0.549776 0.513681 8.945245 4.678562 -8.981535 -11.084615 -8.870408 4.678562 0.437635 0.370905 -4.476604 -11.195520 -20.710491 -11.195520 -4.642953 4.567171 0.447775 0.234602 9.463725 -1.712941 -10.086461 14.215748 10.925719 14.215748 -0.033741 -5.535119 0.528801 -21.023382 -22.107046 -5.535119 -5.510365 -20.772346 -25.560039 -20.772346 -25.403945 -5.274656 0.455071 0.134115 -5.510365 10.007736 -7.002182 -3.197059 -25.560039 10.007736 -3.675318 9.367076 -18.081842 -3.921686 -18.051529 9.367076 -2.172851 -10.393367 -14.491613 -7.615551 0.357998 5.176172 0.463729 0.095781 8.162952 13.507666 7.036487 4.337555 -5.886696 9.466446 0.488121 0.064103 -9.110037 24.202177 -2.225162 8.741703 -10.559418 11.030973 21.400488 15.877059 10.388786 8.408673 11.189688 25.313889 -12.041883 6.206687 -3.606120 4.325603 -11.915798 -11.492093 0.491765 0.026234 -2.478784 0.358518 0.478832 -4.382592 -15.899293 -8.891052 3.371812 5.355322 -4.407542 -10.542614 -8.492467 -6.729610 0.384243 0.075875 0.458201 0.029356 -16.036652 2.323448 -20.187889 -13.438273 -21.408007 2.427185 0.428212 0.042973 -26.479213 -1.353818 -20.211766 -16.711426 -31.355325 -3.308166 -5.334221 9.570175 -15.371160 -2.777347 -9.734342 12.822758 4.455912 25.530928 -8.621167 5.027040 -13.394663 7.701756 -22.698497 22.808444 -16.103068 -1.558513 -21.474848 -1.479868 -18.495123 7.442858 -19.632722 -9.454258 -33.321796 11.755588 -21.259318 19.455198 -18.801801 6.434371 -33.680043 10.565688 0.367327 0.091997 -14.029510 15.479219 -27.804516 8.880202 -29.347947 12.974073 0.262109 0.160683 2.805997 22.588301 1.607704 18.380445 -7.322876 36.394943 0.351377 0.071926 -0.899080 17.546994 -15.020688 13.000914 -10.712713 35.096069 -13.106452 28.481996 -22.865716 5.216588 -25.548188 20.401782 16.160477 -14.055855 27.782763 6.367862 30.269657 -7.833571 -22.338663 -18.670831 -27.521652 -19.526732 -34.633549 1.355191 18.783327 -6.108187 13.171712 7.172443 35.525232 8.940505 -42.594446 -48.541804 -20.350831 -51.375094 -29.869987 -62.330224 -4.505304 -6.960313 -21.899502 -13.994105 -6.078218 4.851028 0.345536 0.121163 -14.335308 -17.240252 -28.957027 -14.007733 -31.942875 -2.472286 -0.091843 27.051404 -2.547688 19.929461 -13.963407 32.692641 -32.727389 18.454277 -15.259618 23.185395 -30.979569 11.126360 -3.231217 10.088320 -5.206063 -5.667190 -21.935772 10.088320 -8.020875 -4.767460 -25.895477 -7.596789 -26.702617 8.261478 37.697146 49.825414 20.251417 55.285401 38.141328 49.825414 -2.814150 -25.596448 -21.094328 -25.596448 -25.328689 -9.932366 -12.363666 21.542806 -13.341621 12.604354 -28.695478 10.326341 -5.318380 21.867456 6.551647 17.558092 -7.375885 13.114228 -3.675318 -3.518798 -18.051529 -3.518798 -2.566715 12.317862 -4.476604 14.027159 -19.822829 -1.943834 -20.710491 14.027159 10.925719 -10.851777 -10.086461 -10.851777 9.648129 4.856851 1.288857 15.630726 -18.675039 0.214569 -18.673258 15.630726 -4.810721 4.744832 -20.889117 -11.006784 -20.360110 4.744832 0.568259 0.651343 -4.810721 -1.109960 -20.360110 -1.109960 -2.758257 14.014002 0.844325 9.540183 -16.330491 -6.067031 -16.604709 9.540183 0.554244 0.776657 0.844325 -1.478032 -16.604709 -1.478032 -3.160102 13.514122 -17.407180 13.514122 0.541481 0.881108 -3.160102 -4.546960 -17.407180 -4.546960 -7.901465 11.250517 -17.975670 11.250517 0.526618 0.956167 0.491765 0.957660 -7.901465 -3.442960 -17.975670 -3.442960 -13.422900 12.442044 -18.637692 12.442044 0.510667 0.996719 0.458201 0.960546 -12.687860 -5.714207 -23.066335 -5.714207 -16.289424 9.771281 -23.066335 9.592737 0.351377 0.897450 -17.242423 6.456456 -16.036251 -9.045752 -27.620898 6.456456 0.283337 0.799994 0.232709 0.678463 -16.135197 6.870766 -33.551787 -8.647464 -31.157412 6.870766 -25.405037 8.234027 -43.753579 8.234027 -24.777679 21.801203 0.202942 0.541140 -25.405037 11.552292 -46.094895 -3.838245 -43.753579 11.552292 -25.057913 -5.457483 -45.094624 -5.457483 -24.516513 10.082150 -25.057913 40.550224 -44.916470 22.343763 -45.094624 40.550224 0.124818 0.580683 -7.399018 45.215345 -12.796480 27.826429 -28.265021 47.255121 -45.828635 -4.433547 -65.170246 -1.839181 -63.620776 12.892433 0.052936 0.460041 -35.888302 -7.344237 -50.073505 -7.344237 -35.348954 7.458817 0.048214 0.328255 -52.130127 -9.001146 -50.073505 5.659183 -35.888302 5.659183 0.083421 0.344698 30.558897 -19.649284 17.002914 -19.649284 32.193000 -4.935867 0.134587 0.262271 14.955998 29.481523 17.002914 40.917009 30.558897 40.917009 0.084871 0.365501 0.000000 0.506180 -29.194631 42.725666 -33.763414 61.950404 -13.324525 42.725666 0.052466 0.658190 0.017401 0.639538 -17.384598 -15.190225 -16.912116 -0.302111 -1.730510 -15.190225 0.135301 0.671605 0.162894 0.791562 17.400258 -19.473006 16.961094 -4.676173 33.243454 -19.473006 0.246275 0.801217 15.726908 -17.202120 16.033699 -2.459052 31.597014 -17.202120 0.325126 0.689761 29.881877 -15.644290 14.662481 -15.644290 29.269759 -0.910740 14.769183 -11.235341 14.662481 3.600656 29.881877 3.600656 48.983489 -7.814519 30.399106 -7.814519 47.909073 6.982907 48.983489 8.885799 29.528667 -5.815383 30.399106 8.885799 48.175721 6.689581 30.673913 -8.117494 30.259391 6.689581 0.344316 0.806610 48.175721 -13.803940 30.259391 -13.803940 45.059762 1.230295 44.414731 1.686933 29.551631 -13.285290 28.267852 1.686933 0.374842 0.900757 44.414731 -18.544348 28.267852 -18.544348 39.559186 -3.084645 40.047277 -3.190382 28.847450 -18.716506 26.924696 -3.190382 0.414624 0.965787 26.924696 -20.270633 33.601011 -4.395556 40.047277 -20.270633 0.479854 0.965787 24.298673 -20.475306 22.073146 -4.876580 31.597369 -4.876580 0.559830 0.891502 23.583439 -12.053697 32.347614 3.500960 37.817143 -11.275964 0.547183 0.962902 0.494717 1.000000 0.529569 0.998506 20.058565 1.351384 25.273357 1.351384 20.720586 -14.533620 20.058565 -14.281319 19.348128 1.654000 25.273357 -14.281319 0.563133 0.995621 18.647040 -9.627535 20.154379 5.848292 24.019334 -9.627535 0.593122 0.991541 16.289424 -5.701478 20.154379 9.774349 21.661718 -5.701478 0.617492 0.986543 0.590760 0.957660 0.560383 0.956167 -13.422900 -2.417153 -18.637692 -2.417153 -19.348128 13.518166 -20.154379 9.774349 -16.289424 -5.701478 -21.661718 -5.701478 -21.661718 9.771281 0.428212 0.964626 -18.647040 6.115061 -17.242423 -9.370427 -24.019334 6.115061 -27.620898 -9.370427 0.403843 0.969624 0.304298 0.907105 -20.058565 1.351384 -20.720586 -14.533620 -25.273357 1.351384 -30.794791 -14.533620 0.386753 0.975198 0.271284 0.917873 -19.902947 -4.490422 -22.073146 -21.167047 -24.833047 -4.490422 -31.597369 -21.167047 0.378108 0.980969 0.254583 0.929021 -17.389129 -11.032412 -20.064839 -28.828660 -21.968531 -11.032412 -28.911564 -28.828660 0.378497 0.986543 0.255334 0.939790 -11.770607 -17.224693 -13.580768 -36.241408 -16.022989 -17.224693 -21.795739 -36.241408 0.387893 0.991541 0.273485 0.949444 -3.055595 -21.207554 -2.624411 -41.076480 -7.107171 -21.207554 -10.451455 -41.076480 0.307800 0.957327 0.405655 0.995621 3.055595 -21.207554 7.107171 -21.207554 2.624411 -41.076480 3.055595 -34.376317 3.518312 -13.931976 7.107171 -34.376317 0.430574 0.998506 11.770607 -30.896217 9.828065 -11.407552 16.022989 -30.896217 0.460952 1.000000 17.389129 -25.468862 14.517739 -7.356235 21.968531 -25.468862 19.902947 -19.652979 17.574036 -2.811991 24.833047 -19.652979 19.902947 -4.490422 24.833047 -4.490422 22.073146 -21.167047 31.597369 -21.167047 0.355940 0.962902 17.389129 -11.032412 21.968531 -11.032412 20.064839 -28.828660 28.911564 -28.828660 20.064839 -14.151330 28.911564 -14.151330 22.362523 -31.130524 0.295453 0.896281 20.134780 -31.234323 27.183631 -14.456460 32.218694 -31.234323 0.227373 0.888398 13.580768 -20.736703 21.795739 -20.736703 14.840950 -38.208408 11.770607 -17.224693 16.022989 -17.224693 13.580768 -36.241408 21.795739 -36.241408 26.458674 -38.208408 14.840950 -20.088122 26.458674 -20.088122 16.033699 -36.790736 30.262446 -36.790736 30.262446 -2.459052 0.175683 0.883988 34.978568 -15.477896 43.241611 -15.477896 40.233499 -31.782241 34.978568 -39.868585 35.512534 -19.983263 43.241611 -39.868585 2.624411 -25.733602 10.451455 -25.733602 2.148812 -43.810583 10.451455 -41.076480 0.164965 0.868696 -22.687765 -23.082446 -21.956251 -41.339475 -33.726130 -41.339475 -10.451455 -25.105252 -2.624411 -25.105252 -6.391816 -42.920234 0.163461 0.847124 -13.580768 -16.822797 -13.914289 -32.886088 -21.795739 -16.822797 0.183182 0.830730 -26.283556 -11.680440 -16.934191 -27.365034 -29.766951 -27.365034 -28.911564 -11.676560 -20.064839 -11.676560 -20.255429 -27.754136 0.227812 0.811381 0.107097 0.721354 -29.766951 -12.639008 -16.934191 -12.639008 -18.109903 -28.800581 -22.931294 -4.272503 -40.737413 -19.170443 -36.094629 -3.645519 0.162221 0.702928 0.069250 0.594893 -22.659885 5.232529 -40.839758 -9.383328 -38.856585 5.232529 -35.684508 2.867541 -49.224521 2.867541 -30.541593 16.834620 -35.684508 7.824360 -50.419877 -6.967926 -49.224521 7.824360 0.019534 0.482338 0.036986 0.616430 -23.074652 -10.422058 -40.768102 -10.422058 -22.696626 4.413632 -48.848235 -11.707012 -29.757607 3.145464 -30.438660 -11.707012 -49.298666 -11.097953 -48.053226 3.738102 -30.195273 3.738102 -1.791428 -0.302111 0.083811 0.766286 0.082068 0.741291 -13.914289 -18.898525 -15.107038 -35.601139 -30.371147 -18.898525 -36.327034 -18.191639 -34.457634 -3.151816 -18.816288 -3.151816 -48.053226 -19.846766 -28.804699 -4.755138 -30.195273 -19.846766 -32.947836 -38.049710 -34.174920 -21.317437 -15.107038 -21.317437 -16.912116 -37.252827 -6.107701 -21.040348 -1.791428 -37.252827 0.100298 0.784647 -33.365424 -25.022696 -35.412226 -9.804302 -21.200707 -9.804302 31.942955 14.293708 42.495830 14.293708 48.982662 0.375737 31.942955 -33.052969 36.113497 -17.006567 42.495830 -33.052969 -31.064785 -22.038683 -21.200707 -38.751580 -35.412226 -38.751580 -34.174920 -35.601139 -33.726130 -22.368356 -21.956251 -22.368356 -24.307807 -39.336448 -30.366923 -12.811388 -18.816288 -29.049185 -34.457634 -29.049185 -22.696626 -13.760280 -39.787186 -13.760280 -22.018504 0.973912 -39.787186 4.413632 -30.371147 -32.886088 -26.606645 29.341983 -48.848235 46.449011 -30.438660 46.449011 -23.074652 42.279798 -35.874495 25.445685 -40.768102 42.279798 -22.782521 19.474587 -43.328507 6.735628 -37.865019 20.580451 -12.889916 -11.472492 -33.763887 -9.515932 -13.768084 4.070327 -25.359717 -12.095616 -40.419167 -10.710832 -24.374719 3.575321 -21.339096 -6.442615 -22.659885 -21.678892 -38.856585 -21.678892 -21.620080 -0.300288 -37.139945 -15.154657 -33.501769 -0.300288 -20.720586 1.430056 -21.620080 -14.449455 -30.794791 1.430056 -27.692129 6.444139 -16.135197 -9.078741 -31.157412 -9.078741 -33.501769 -14.449455 -22.073146 -3.962687 -21.929146 -20.070632 -31.597369 -3.962687 -33.174910 -3.812934 -24.005895 -20.210177 -37.158626 -19.390315 22.005949 -29.420877 32.640881 -13.226513 36.900285 -29.420877 20.134780 -13.135031 32.218694 -13.135031 21.510183 -29.280836 22.916651 -21.973080 22.005949 -6.646370 36.900285 -6.646370 30.794791 -14.533620 21.504177 -11.844939 20.720586 3.401130 30.794791 3.401130 0.612024 0.957327 17.242423 8.236409 27.620898 8.236409 30.784847 -6.698318 17.242423 -9.370427 18.647040 6.115061 27.620898 -9.370427 0.669958 0.949444 12.687860 -5.714207 16.289424 9.771281 23.066335 -5.714207 7.901465 -3.442960 13.422900 12.442044 17.975670 -3.442960 3.550703 -2.364939 10.315025 14.311686 13.074926 -2.364939 11.646349 15.580953 11.646349 2.591937 7.066948 2.591937 14.517739 20.704564 7.885523 4.324728 3.633140 4.324728 9.828065 23.813394 7.885523 16.410536 3.981029 5.313563 -0.070548 5.313563 3.518312 25.757904 3.981029 16.848635 0.070548 5.313563 -3.981029 5.313563 -3.518312 25.757904 -3.981029 16.848635 0.665395 0.883993 2.139610 -2.606179 -6.075361 -2.606179 -3.633140 16.410536 0.713971 0.782438 2.139610 13.966936 -5.787695 -2.298756 -6.075361 13.966936 9.161204 -3.725681 -3.055846 -3.725681 3.756273 13.037670 0.763150 0.656630 0.661505 0.651632 0.630979 0.778357 8.541882 -7.368003 -6.781095 -7.368003 3.966989 9.194222 8.945245 -3.702875 -8.870408 -3.702875 7.134774 11.712183 3.726177 15.569026 -12.660205 0.559817 -9.890641 15.569026 3.726177 -5.846311 -9.890641 -5.846311 -0.563849 10.247520 -3.953357 12.939521 -14.256404 -2.547495 -15.232329 12.939521 0.606710 0.881108 -6.084048 14.050907 -3.953357 -1.555566 -15.232329 -1.555566 3.966989 -1.238283 -8.544170 -1.238283 -0.123915 14.507192 -8.544170 9.194222 -8.970640 14.507192 -0.123915 -2.215295 -8.970640 -2.215295 -7.066948 15.580953 -11.646349 15.580953 -7.066948 2.591937 -11.646349 2.591937 -14.517739 20.704564 -10.315025 0.327244 -15.245125 0.327244 -17.574036 17.168233 -3.550703 -2.364939 -13.074926 -2.364939 -10.315025 14.311686 -3.550703 11.644295 -11.211333 -4.743744 -13.074926 11.644295 -15.245125 14.311686 -3.633140 4.324728 -7.885523 4.324728 -9.828065 23.813394 -7.885523 16.410536 8.541882 10.796664 -6.773494 -4.724347 -6.781095 10.796664 0.809578 0.515143 20.718227 -11.159077 0.448603 -11.159077 14.769480 5.284007 20.718227 7.806848 1.160655 -7.778558 0.448603 7.806848 0.820122 0.370905 21.809201 -7.511191 0.942671 -7.511191 20.509518 8.062569 21.809201 12.864717 0.282677 -3.028246 0.942671 12.864717 24.571842 -8.687690 4.277540 -8.687690 26.047321 6.870399 24.571842 6.204249 1.676435 -9.578413 4.277540 6.204249 0.916402 0.382053 13.291707 -6.287627 -2.578399 -6.287627 14.107284 9.338177 13.291707 11.561262 -3.328192 -4.635602 -2.578399 11.561262 -2.322658 9.338177 13.291707 6.287627 14.107284 -9.338177 -2.578399 6.287627 -26.230449 4.569424 -43.030915 -10.958982 -44.954339 4.569424 8.029274 -25.563316 9.875493 -44.195963 -5.245195 -44.195963 -43.030915 10.958982 -26.230449 -4.569424 -44.954339 -4.569424 -2.322658 -9.338177 -4.594946 -0.589569 13.291707 -17.958971 -2.578399 -17.958971 13.279303 2.598963 16.966174 -14.107186 -1.541476 2.598963 -32.418205 10.768678 -21.235618 -5.415278 -37.965095 -5.415278 13.279303 -9.218854 -1.541476 -9.218854 8.677138 7.725262 9.161204 7.480339 -0.887969 -9.564815 -3.055846 7.480339 -5.036236 5.262965 -4.412212 11.419433 15.245125 0.327244 10.315025 0.327244 17.574036 17.168233 15.245125 14.311686 18.637692 -2.417153 13.422900 -2.417153 19.348128 13.518166 18.637692 12.442044 13.074926 11.995793 -1.711698 -2.686695 4.392903 12.443359 11.708257 -2.686695 16.794434 1.616583 7.901465 15.876599 17.975670 15.876599 0.646946 0.882087 9.392258 0.857326 12.687860 14.781491 24.069638 0.857326 23.066335 14.781491 20.008007 -0.964008 20.070286 12.996117 34.615327 -0.964008 24.995166 -5.032604 7.019120 -5.032604 24.069638 10.488887 24.995166 3.270611 6.486373 -13.129780 7.019120 3.270611 9.392258 10.488887 34.615327 8.963725 19.950555 -6.585230 20.008007 8.963725 37.003075 -6.043634 19.108440 -6.043634 33.931179 9.354806 37.003075 1.566349 19.967064 -14.899404 19.108440 1.566349 23.450896 -12.148302 22.761581 3.538423 37.003806 4.140265 11.708257 11.794614 -6.670320 -3.535311 -1.711698 11.794614 21.661718 9.771281 24.019334 6.115061 -3.518312 -13.931976 -3.055595 -34.376317 -7.107171 -34.376317 -9.828065 -11.407552 -11.770607 -30.896217 -16.022989 -30.896217 -14.517739 -7.356235 -17.389129 -25.468862 -21.968531 -25.468862 -17.574036 -2.811991 -19.902947 -19.652979 -24.833047 -19.652979 -19.348128 1.654000 -20.058565 -14.281319 -25.273357 -14.281319 -20.154379 5.848292 -18.647040 -9.627535 -24.019334 -9.627535 31.939752 -7.735239 15.726908 7.008319 31.597014 7.008319 22.040693 -8.242910 21.884798 6.503808 38.762261 -8.242910 34.172193 -13.629901 17.400258 1.236727 33.243454 1.236727 -16.912116 5.376267 -17.384598 20.264381 -1.730510 20.264381 -49.434227 31.523101 -68.154520 31.523101 -57.147157 49.715821 -57.007500 42.055952 -65.787204 28.640958 -62.093491 50.030811 1.970030 21.606327 1.791428 37.351274 16.912116 37.351274 16.327937 17.141109 32.947836 32.704453 30.556685 17.141109 16.437523 17.025202 17.235085 32.577949 33.067339 32.577949 39.448575 10.670677 24.125598 10.670677 42.354667 25.970306 25.264106 25.970306 42.354667 -9.682048 25.264106 -9.682048 41.340185 4.969466 12.400136 -11.688867 11.300389 2.956495 27.241295 2.956495 41.863161 4.809609 25.366723 4.809609 44.686555 19.889506 44.538716 20.095295 25.232013 4.998592 26.117772 20.095295 -49.434227 43.785427 -62.572078 36.149852 -68.154520 43.785427 0.068416 0.320610 -1.970030 -56.757175 -15.526868 -56.757175 -1.471692 -50.981608 0.149571 0.207811 -2.254145 35.321930 -13.323257 35.321930 -1.970030 52.449839 0.273485 0.100294 -2.254145 43.593630 -10.451455 23.355773 -13.323257 43.593630 0.255334 0.194448 -59.262458 -25.560902 -59.323500 -39.311433 -75.537808 -24.687378 -40.848053 -33.953850 -60.069133 -32.076335 -58.291078 -18.441111 0.307800 0.094368 -37.345010 8.131600 -56.822981 8.403346 -54.917731 16.142497 0.355940 0.090422 -40.208085 -1.645459 -56.666685 -9.543821 -59.169973 -1.651143 -35.741844 -33.778346 -53.535681 -26.956076 -35.320827 -25.735933 21.968228 14.256780 20.064377 32.003819 28.911102 32.003907 -29.338413 -2.233590 -44.521750 -7.261318 -45.564015 3.439164 -25.843636 -16.150449 -26.026223 -23.381959 -41.514088 -19.351813 23.449030 13.462825 17.732327 28.049591 27.774229 28.870898 37.890976 -36.401171 36.233818 -31.091328 52.837395 -26.644809 28.911181 28.406419 20.064456 28.406344 34.873185 44.010868 20.064839 28.406030 22.362523 44.010448 34.873681 44.010448 3.043297 39.491663 -4.741574 36.670920 -8.221313 53.009088 21.795739 39.585955 15.135188 55.872430 26.752912 55.872430 -53.659527 -7.881456 -68.824311 -0.145039 -64.559808 13.181501 -5.500753 24.252136 -13.052144 21.702442 -7.012224 44.636776 40.090708 -8.701464 40.194902 -4.650873 59.156706 -4.707353 -40.372291 -30.639791 -40.522234 -41.475722 -59.300333 -27.608956 0.254583 0.163379 49.990835 17.460530 31.893133 15.218479 47.932978 25.715149 -36.536385 -23.151412 -36.349522 -27.673506 -54.501193 -25.921233 -24.691366 -0.163952 -15.696127 -24.383366 -28.640235 -2.375440 -22.150372 -1.197831 -16.528010 -25.970598 -26.674597 -2.210524 -33.034969 -20.093330 -33.289566 -24.722513 -50.421618 -30.796969 47.204994 -33.065130 34.188061 -21.585885 53.884822 -26.961856 -3.724407 24.462252 -12.125050 27.823688 -1.390564 41.909080 0.148509 0.238746 14.835112 32.482753 7.648340 37.035095 20.988530 48.866275 -70.932918 2.340944 -59.280474 -11.155649 -75.491702 -9.468600 -42.600915 27.587713 -44.052874 23.465603 -54.541338 16.377587 0.096043 0.248054 33.585944 21.205763 21.368219 21.205763 37.556823 31.795848 18.183085 -8.404674 21.368219 -5.412201 33.585944 -5.412201 -22.362523 43.869417 -28.911564 27.415314 -34.873681 43.869417 -24.125598 66.519744 -22.362523 55.088136 -34.873681 55.088136 45.755896 43.100581 30.974675 49.043904 37.845354 58.348948 -15.969426 6.472692 -32.306504 11.782051 -15.964880 21.595357 -26.265649 32.918808 -41.863161 21.961286 -44.665035 32.918808 -26.265649 -17.309103 -44.665035 -17.309103 -28.444790 -2.624902 -36.587889 25.308758 -49.235754 14.903369 -56.868287 30.239288 -48.808666 -34.372905 -69.312661 -30.475356 -66.883370 -25.211892 -12.574732 30.908330 -29.194631 42.501346 -13.324525 42.501346 -15.526868 52.449839 16.625888 8.224483 -4.646391 -7.329756 -3.835073 8.224483 16.527977 -7.366246 -4.619450 -7.366246 16.651815 8.189380 + + + + + + + + + + + + + + +

0 0 0 1 1 1 2 2 2 1 1 1 0 0 0 3 3 3 1 7 1 4 8 7 2 2 2 2 11 2 4 12 7 5 13 11 4 8 7 6 17 15 5 18 11 5 13 11 6 21 15 7 22 19 6 25 15 8 26 23 7 22 19 6 17 15 9 27 24 8 26 23 9 27 24 10 30 28 8 26 23 9 31 24 11 32 29 10 33 28 9 34 24 12 35 30 11 32 29 13 36 31 12 37 30 9 31 24 12 44 30 14 45 38 11 32 29 11 32 29 14 48 38 15 49 42 15 49 42 14 52 38 16 53 46 17 56 50 16 57 46 14 52 38 17 60 50 18 61 54 16 53 46 16 57 46 18 64 54 19 65 58 18 68 54 20 69 62 19 70 58 19 70 58 20 74 62 21 75 66 21 78 66 20 74 62 22 79 70 23 82 74 22 83 70 20 69 62 24 84 75 22 85 70 23 82 74 24 86 75 25 87 76 22 79 70 25 87 76 26 90 80 22 91 70 26 94 80 27 95 84 22 96 70 27 100 84 28 101 88 22 96 70 28 104 88 29 105 92 22 106 70 29 110 92 30 111 96 22 112 70 30 111 96 31 116 100 22 117 70 31 120 100 32 121 104 22 96 70 22 106 70 32 124 104 33 125 108 32 128 104 34 129 112 33 125 108 32 130 104 35 131 113 34 132 112 36 133 114 35 131 113 32 134 104 35 131 113 37 140 121 34 141 112 34 144 112 37 145 121 38 146 125 38 150 125 37 151 121 39 152 129 40 156 133 39 157 129 37 140 121 41 160 137 39 157 129 40 156 133 42 162 141 39 152 129 41 160 137 42 162 141 43 164 145 39 152 129 43 164 145 42 162 141 44 165 146 39 157 129 43 164 145 38 167 125 38 167 125 43 164 145 45 169 153 43 164 145 46 171 157 45 169 153 44 165 146 46 171 157 43 164 145 45 174 153 46 171 157 47 175 164 46 171 157 48 178 168 47 179 164 47 182 164 48 183 168 49 184 172 49 184 172 48 178 168 50 188 176 50 190 176 48 191 168 51 192 180 48 196 168 52 197 184 51 192 180 51 192 180 52 200 184 53 201 188 53 201 188 52 200 184 54 204 192 54 204 192 52 206 184 44 165 146 52 206 184 46 208 157 44 209 146 48 191 168 46 212 157 52 200 184 54 204 192 44 214 146 55 215 205 55 218 205 44 214 146 42 162 141 55 220 205 42 221 141 56 222 213 56 226 213 42 227 141 41 160 137 57 230 220 56 226 213 41 160 137 58 231 221 56 226 213 57 230 220 57 230 220 41 160 137 59 234 228 59 234 228 41 236 137 40 156 133 59 234 228 40 156 133 60 238 235 61 240 239 60 238 235 40 241 133 60 238 235 61 240 239 62 242 240 62 242 240 61 245 239 36 246 114 36 246 114 61 240 239 35 249 113 61 251 239 37 140 121 35 131 113 40 241 133 37 140 121 61 245 239 62 242 240 36 254 114 63 255 257 63 255 257 36 133 114 31 120 100 36 254 114 32 130 104 31 120 100 63 255 257 31 258 100 30 111 96 29 110 92 63 255 257 30 260 96 64 262 273 63 255 257 29 110 92 64 263 273 62 242 240 63 255 257 65 265 277 62 242 240 64 266 273 66 267 278 62 242 240 65 268 277 67 273 285 65 265 277 64 262 273 68 276 289 65 265 277 67 273 285 68 278 289 66 279 278 65 265 277 66 279 278 68 278 289 69 280 293 70 284 298 69 280 293 68 285 289 69 280 293 70 284 298 71 286 299 72 290 304 71 291 299 70 284 298 71 291 299 72 290 304 73 292 305 74 296 310 73 297 305 72 290 304 75 300 314 73 297 305 74 296 310 76 302 318 73 297 305 75 303 314 76 302 318 77 304 319 73 292 305 76 305 318 78 306 320 77 307 319 78 311 320 79 312 324 77 307 319 77 315 319 79 316 324 80 317 328 79 312 324 81 321 332 80 322 328 79 323 324 82 324 333 81 325 332 82 329 333 83 330 337 81 321 332 81 334 332 83 335 337 84 336 341 83 330 337 85 340 345 84 341 341 85 344 345 66 345 278 84 336 341 85 346 345 60 347 235 66 279 278 66 279 278 60 347 235 62 242 240 59 234 228 60 350 235 85 344 345 86 353 358 59 354 228 85 355 345 57 230 220 59 359 228 86 353 358 87 361 365 57 362 220 86 363 358 57 362 220 87 361 365 58 364 221 88 369 370 58 231 221 87 370 365 88 373 370 89 374 374 58 231 221 90 375 375 89 376 374 88 373 370 89 376 374 91 381 382 58 231 221 58 231 221 91 381 382 56 226 213 91 383 382 55 215 205 56 384 213 55 215 205 91 383 382 92 385 389 93 389 394 92 385 389 91 390 382 94 393 398 92 385 389 93 394 394 94 393 398 95 395 399 92 385 389 95 398 399 54 399 192 92 385 389 95 398 399 53 400 188 54 399 192 96 404 406 53 201 188 95 395 399 97 406 410 53 201 188 96 407 406 97 406 410 51 408 180 53 400 188 50 409 176 51 410 180 97 406 410 97 406 410 96 407 406 98 416 420 98 418 420 96 407 406 99 419 424 99 419 424 96 407 406 95 398 399 99 422 424 95 398 399 94 393 398 100 424 434 99 425 424 94 426 398 101 430 438 99 425 424 100 424 434 101 431 438 98 432 420 99 419 424 98 432 420 101 431 438 102 433 439 101 437 438 103 438 444 102 439 439 103 438 444 101 437 438 104 440 445 103 438 444 105 444 449 102 439 439 103 445 444 106 446 450 105 447 449 106 446 450 103 445 444 107 448 451 108 452 455 105 453 449 106 446 450 105 453 449 108 452 455 109 454 456 110 458 460 109 454 456 108 452 455 109 454 456 110 458 460 111 459 461 110 462 460 112 463 465 111 464 461 112 463 465 110 462 460 113 465 466 114 469 470 111 459 461 112 470 465 111 459 461 114 469 470 115 471 471 116 474 475 115 475 471 114 476 470 115 475 471 116 474 475 117 477 476 116 481 475 118 482 480 117 477 476 118 485 480 119 486 484 117 477 476 118 485 480 120 487 485 119 488 484 118 485 480 121 489 486 120 490 485 122 491 487 121 492 486 118 485 480 121 489 486 50 498 176 120 490 485 121 499 486 49 500 172 50 501 176 123 502 494 49 184 172 121 503 486 120 510 485 50 511 176 97 406 410 120 514 485 97 515 410 124 516 507 124 516 507 97 406 410 98 432 420 98 520 420 125 521 514 124 516 507 126 524 518 124 516 507 125 521 514 124 516 507 126 524 518 119 525 484 126 524 518 115 471 471 119 525 484 115 471 471 117 528 476 119 486 484 119 486 484 120 490 485 124 533 507 111 535 461 115 536 471 126 524 518 109 454 456 111 459 461 126 524 518 125 539 514 109 454 456 126 524 518 109 454 456 125 539 514 105 447 449 105 453 449 125 521 514 102 541 439 102 543 439 125 521 514 98 416 420 127 546 557 49 500 172 123 502 494 127 546 557 128 548 561 49 500 172 47 550 164 49 500 172 128 551 561 129 554 568 47 555 164 128 556 561 129 560 568 130 561 572 47 562 164 45 566 153 47 550 164 130 561 572 131 568 579 45 566 153 130 561 572 131 568 579 38 150 125 45 566 153 34 144 112 38 167 125 131 570 579 33 572 108 34 129 112 131 570 579 33 576 108 131 568 579 132 577 595 132 577 595 131 580 579 133 581 599 131 580 579 130 584 572 133 581 599 133 586 599 130 587 572 134 588 606 134 588 606 130 587 572 129 592 568 135 594 613 134 588 606 129 595 568 136 598 617 134 599 606 135 600 613 136 598 617 137 604 621 134 588 606 22 605 70 137 606 621 136 598 617 137 604 621 133 586 599 134 588 606 132 577 595 133 581 599 137 610 621 132 577 595 137 606 621 22 612 70 22 106 70 33 125 108 132 577 595 22 614 70 136 598 617 138 615 640 135 594 613 138 618 640 136 598 617 139 619 644 138 615 640 135 620 613 22 621 70 138 615 640 139 622 644 135 600 613 140 628 654 139 622 644 141 629 655 140 630 654 135 600 613 139 634 644 140 630 654 142 635 662 142 638 662 140 628 654 143 639 666 143 642 666 140 628 654 141 629 655 143 644 666 141 645 655 144 646 673 144 650 673 141 651 655 145 652 677 141 629 655 146 656 681 145 652 677 141 645 655 147 657 682 146 658 681 146 656 681 147 661 682 127 546 557 127 546 557 147 661 682 129 560 568 135 664 613 129 595 568 147 657 682 135 666 613 147 657 682 141 629 655 129 554 568 128 548 561 127 546 557 127 546 557 123 502 494 146 656 681 148 668 704 146 658 681 123 502 494 145 652 677 146 658 681 148 670 704 149 672 714 145 652 677 148 670 704 149 673 714 150 674 715 145 652 677 144 646 673 145 652 677 150 674 715 151 677 722 144 646 673 150 674 715 152 679 726 144 646 673 151 677 722 152 681 726 143 682 666 144 646 673 153 685 733 143 686 666 152 681 726 153 689 733 142 638 662 143 690 666 22 691 70 142 692 662 153 693 733 22 621 70 139 634 644 142 635 662 22 691 70 153 693 733 154 699 746 154 701 746 153 702 733 155 703 750 153 685 733 152 681 726 155 707 750 155 709 750 152 681 726 156 710 757 152 681 726 151 677 722 156 710 757 156 710 757 151 713 722 157 714 764 157 717 764 151 677 722 150 674 715 158 719 771 157 714 764 150 674 715 157 714 764 158 719 771 159 720 772 160 723 777 159 720 772 158 719 771 159 720 772 160 723 777 161 724 778 162 727 783 161 724 778 160 728 777 163 731 787 161 724 778 162 732 783 163 735 787 164 736 791 161 737 778 164 741 791 165 742 795 161 743 778 164 744 791 8 26 23 165 745 795 8 26 23 10 30 28 165 745 795 10 30 28 166 749 805 165 742 795 165 742 795 166 752 805 159 720 772 159 720 772 166 749 805 157 717 764 167 754 815 157 714 764 166 749 805 167 755 815 156 710 757 157 714 764 167 754 815 155 757 750 156 710 757 168 758 819 155 759 750 167 754 815 154 699 746 155 759 750 168 758 819 169 764 829 154 765 746 168 758 819 22 766 70 154 767 746 169 768 829 170 774 836 169 764 829 168 758 819 171 775 837 169 776 829 170 774 836 171 777 837 22 79 70 169 778 829 172 781 841 22 782 70 171 777 837 21 783 66 22 784 70 172 781 841 172 781 841 171 775 837 170 789 836 170 794 836 168 795 819 167 796 815 173 800 860 170 774 836 167 754 815 174 802 864 170 803 836 173 804 860 174 808 864 175 809 868 170 810 836 175 814 868 172 815 841 170 794 836 175 814 868 19 70 58 172 781 841 19 70 58 21 818 66 172 819 841 174 802 864 19 70 58 175 814 868 16 822 46 19 65 58 174 823 864 15 826 42 16 53 46 174 802 864 15 828 42 174 829 864 176 830 890 174 829 864 173 804 860 176 830 890 173 804 860 166 834 805 176 830 890 10 836 28 176 837 890 166 749 805 15 838 42 176 830 890 10 839 28 15 838 42 10 844 28 11 32 29 173 804 860 167 847 815 166 752 805 161 724 778 165 745 795 159 720 772 7 851 19 8 26 23 164 852 791 7 22 19 164 852 791 163 856 787 177 858 933 7 859 19 163 735 787 5 18 11 7 859 19 177 862 933 178 864 940 5 13 11 177 865 933 5 13 11 178 864 940 2 866 2 179 870 945 2 866 2 178 864 940 2 866 2 179 870 945 0 871 0 180 874 950 0 875 0 179 876 945 0 875 0 180 874 950 181 877 951 182 882 956 181 883 951 180 874 950 183 884 957 181 883 951 182 885 956 3 886 3 181 883 951 183 884 957 181 883 951 3 886 3 0 887 0 184 892 962 1 893 1 3 886 3 185 896 966 1 897 1 184 892 962 185 898 966 186 899 967 1 7 1 1 902 1 186 899 967 4 8 7 186 899 967 187 904 974 4 8 7 4 906 7 187 907 974 6 17 15 187 910 974 9 911 24 6 912 15 188 916 984 9 34 24 187 910 974 188 918 984 13 36 31 9 34 24 188 920 984 189 921 991 13 922 31 13 926 31 189 927 991 190 928 995 189 932 991 191 933 999 190 934 995 190 934 995 191 938 999 192 939 1003 191 938 999 193 942 1007 192 939 1003 191 943 999 194 944 1008 193 945 1007 194 944 1008 76 305 318 193 942 1007 194 944 1008 78 949 320 76 305 318 194 950 1008 195 951 1012 78 949 320 195 951 1012 194 950 1008 196 952 1013 195 956 1012 197 957 1017 78 311 320 195 951 1012 198 958 1018 197 957 1017 199 961 1022 197 957 1017 198 958 1018 197 957 1017 199 961 1022 82 324 333 199 961 1022 200 963 1026 82 329 333 82 965 333 200 966 1026 83 335 337 200 969 1026 86 363 358 83 970 337 86 353 358 85 344 345 83 335 337 87 361 365 86 353 358 200 963 1026 201 973 1042 87 361 365 200 963 1026 88 369 370 87 361 365 201 975 1042 202 977 1049 88 373 370 201 973 1042 90 375 375 88 373 370 202 977 1049 202 979 1049 203 980 1056 90 981 375 203 985 1056 204 986 1060 90 987 375 90 987 375 204 991 1060 205 992 1064 204 986 1060 206 995 1068 205 996 1064 207 997 1069 206 998 1068 204 986 1060 206 998 1068 207 997 1069 208 999 1070 207 1003 1069 182 1004 956 208 1005 1070 208 1009 1070 182 1010 956 209 1011 1077 209 1015 1077 182 1016 956 210 1017 1081 182 1021 956 211 1022 1085 210 1017 1081 182 1023 956 107 1024 451 211 1022 1085 182 1025 956 106 1026 450 107 448 451 182 1027 956 108 452 455 106 1028 450 182 1029 956 110 458 460 108 452 455 182 1030 956 113 1031 466 110 1032 460 182 1033 956 212 1034 1086 113 1035 466 182 1036 956 213 1037 1087 212 1038 1086 182 1039 956 180 874 950 213 1040 1087 214 1044 1095 3 3 3 183 884 957 3 3 3 214 1044 1095 184 1045 962 215 1048 1100 184 1045 962 214 1049 1095 184 1045 962 215 1048 1100 216 1050 1101 217 1054 1106 216 1050 1101 215 1055 1100 216 1050 1101 217 1054 1106 218 1056 1107 219 1060 1112 218 1056 1107 217 1054 1106 218 1056 1107 219 1060 1112 220 1061 1113 221 1064 1118 220 1065 1113 219 1066 1112 220 1065 1113 221 1064 1118 222 1067 1119 223 1072 1124 222 1073 1119 221 1074 1118 222 1073 1119 223 1072 1124 224 1075 1125 223 1080 1124 225 1081 1130 224 1082 1125 225 1081 1130 223 1080 1124 226 1083 1131 223 1087 1124 182 1088 956 226 1089 1131 226 1083 1131 182 1093 956 227 1094 1138 227 1097 1138 182 1098 956 228 1099 1142 228 1099 1142 182 1103 956 207 1003 1069 204 986 1060 228 1099 1142 207 1003 1069 228 1099 1142 204 986 1060 203 1105 1056 203 985 1056 227 1097 1138 228 1099 1142 227 1097 1138 203 985 1056 229 1107 1153 202 977 1049 229 1107 1153 203 980 1056 230 1109 1161 229 1110 1153 202 979 1049 230 1113 1161 225 1114 1130 229 1115 1153 225 1114 1130 230 1113 1161 231 1116 1165 226 1083 1131 229 1107 1153 225 1114 1130 229 1107 1153 226 1083 1131 227 1097 1138 199 1121 1022 231 1116 1165 230 1109 1161 231 1116 1165 199 1121 1022 198 1122 1018 198 1125 1018 232 1126 1179 231 1116 1165 232 1129 1179 224 1130 1125 231 1131 1165 231 1116 1165 224 1075 1125 225 1081 1130 232 1136 1179 233 1137 1190 224 1130 1125 233 1140 1190 222 1067 1119 224 1075 1125 234 1142 1197 222 1067 1119 233 1140 1190 222 1067 1119 234 1142 1197 220 1061 1113 234 1144 1197 235 1145 1201 220 1146 1113 235 1145 1201 218 1056 1107 220 1061 1113 235 1145 1201 236 1150 1208 218 1151 1107 235 1152 1201 237 1153 1209 236 1154 1208 237 1155 1209 235 1145 1201 234 1142 1197 237 1153 1209 238 1160 1216 236 1150 1208 237 1153 1209 239 1161 1217 238 1162 1216 238 1165 1216 239 1166 1217 188 1167 984 239 1166 1217 189 1171 991 188 1172 984 239 1166 1217 240 1175 1227 189 1171 991 240 1175 1227 239 1166 1217 241 1176 1228 240 1178 1227 191 1179 999 189 1180 991 240 1181 1227 194 1182 1008 191 943 999 240 1178 1227 241 1183 1228 194 1182 1008 241 1176 1228 196 1187 1013 194 944 1008 196 1191 1013 242 1192 1239 195 1193 1012 243 1194 1240 242 1192 1239 196 952 1013 243 1195 1240 233 1140 1190 242 1196 1239 233 1140 1190 243 1195 1240 234 1142 1197 243 1198 1240 237 1153 1209 234 1199 1197 237 1153 1209 243 1200 1240 241 1176 1228 241 1183 1228 243 1200 1240 196 1187 1013 242 1192 1239 244 1206 1256 195 1193 1012 195 1193 1012 244 1206 1256 198 1208 1018 244 1206 1256 232 1210 1179 198 1208 1018 244 1206 1256 242 1196 1239 232 1210 1179 242 1192 1239 233 1213 1190 232 1214 1179 237 1153 1209 241 1176 1228 239 1161 1217 238 1162 1216 188 920 984 186 899 967 186 1222 967 188 1167 984 187 904 974 185 896 966 238 1224 1216 186 1225 967 236 1154 1208 238 1229 1216 185 898 966 185 896 966 216 1050 1101 236 1150 1208 216 1050 1101 185 896 966 184 892 962 218 1056 1107 236 1154 1208 216 1050 1101 199 961 1022 230 1109 1161 201 975 1042 201 975 1042 230 1109 1161 202 979 1049 199 961 1022 201 975 1042 200 963 1026 205 1237 1064 206 998 1068 245 1238 1328 206 998 1068 209 1241 1077 245 1242 1328 209 1241 1077 206 998 1068 208 1009 1070 210 1245 1081 245 1238 1328 209 1246 1077 245 1238 1328 210 1245 1081 246 1247 1335 211 1022 1085 246 1250 1335 210 1017 1081 246 1250 1335 211 1022 1085 104 1251 445 107 448 451 104 1255 445 211 1256 1085 104 1255 445 107 448 451 103 445 444 113 1035 466 247 1268 1361 112 470 465 247 1268 1361 113 1035 466 212 1038 1086 247 1268 1361 248 1272 1365 112 470 465 112 470 465 248 1272 1365 114 476 470 248 1275 1365 249 1276 1372 114 469 470 248 1277 1365 250 1278 1373 249 1279 1372 250 1278 1373 248 1277 1365 251 1280 1374 250 1284 1373 162 727 783 249 1285 1372 250 1284 1373 163 731 787 162 732 783 177 1287 933 163 731 787 250 1284 1373 251 1289 1374 177 1290 933 250 1278 1373 178 1293 940 177 862 933 251 1294 1374 178 1297 940 251 1298 1374 252 1299 1390 251 1294 1374 247 1268 1361 252 1303 1390 247 1268 1361 251 1294 1374 248 1304 1365 212 1038 1086 252 1303 1390 247 1268 1361 252 1303 1390 212 1038 1086 213 1037 1087 179 1313 945 213 1314 1087 180 1315 950 213 1314 1087 179 1313 945 252 1299 1390 179 870 945 178 1318 940 252 1303 1390 249 1279 1372 162 732 783 253 1324 1423 162 727 783 160 728 777 253 1326 1423 253 1326 1423 160 728 777 254 1328 1430 160 728 777 158 719 771 254 1330 1430 254 1330 1430 158 719 771 149 1332 714 158 1334 771 150 674 715 149 1332 714 149 1336 714 255 1337 1443 254 1330 1430 255 1337 1443 149 1336 714 148 670 704 255 1341 1443 253 1324 1423 254 1330 1430 253 1324 1423 255 1341 1443 122 1342 487 255 1345 1443 121 499 486 122 1346 487 255 1345 1443 148 1347 704 121 1348 486 148 670 704 123 502 494 121 499 486 253 1324 1423 122 1353 487 249 1279 1372 249 1276 1372 122 1355 487 116 1356 475 122 1360 487 118 485 480 116 481 475 114 476 470 249 1279 1372 116 1356 475 100 424 434 104 1251 445 101 430 438 246 1250 1335 104 1255 445 100 424 434 256 1369 1496 246 1247 1335 100 424 434 246 1247 1335 256 1369 1496 245 1370 1328 205 1373 1064 245 1374 1328 256 1375 1496 256 1379 1496 93 1380 394 205 996 1064 256 1369 1496 94 393 398 93 1380 394 94 393 398 256 1369 1496 100 1381 434 205 1386 1064 93 1387 394 89 376 374 93 389 394 91 383 382 89 376 374 90 1390 375 205 1391 1064 89 376 374 223 1395 1124 221 1396 1118 182 1397 956 221 1074 1118 219 1066 1112 182 1401 956 219 1066 1112 217 1054 1106 182 1403 956 217 1054 1106 215 1048 1100 182 1405 956 215 1055 1100 214 1049 1095 182 1407 956 214 1409 1095 183 1410 957 182 1411 956 197 957 1017 82 329 333 79 316 324 78 311 320 197 957 1017 79 316 324 76 305 318 75 303 314 193 1417 1007 73 297 305 77 307 319 71 1421 299 77 315 319 80 1423 328 71 286 299 80 317 328 69 280 293 71 1421 299 69 280 293 80 317 328 84 336 341 81 1425 332 84 336 341 80 322 328 84 1428 341 66 279 278 69 280 293 193 942 1007 75 1432 314 257 1433 1592 74 1436 310 257 1433 1592 75 1437 314 257 1433 1592 74 1436 310 258 1438 1596 74 1441 310 259 1442 1600 258 1443 1596 258 1443 1596 259 1447 1600 260 1448 1604 260 1451 1604 259 1452 1600 25 1453 76 259 1452 1600 261 1457 1611 25 87 76 261 1457 1611 26 90 80 25 1459 76 261 1457 1611 262 1460 1615 26 90 80 26 90 80 262 1460 1615 27 1462 84 262 1464 1615 67 1465 285 27 1466 84 67 1465 285 28 1470 88 27 100 84 67 1465 285 64 262 273 28 1470 88 64 262 273 29 110 92 28 1472 88 70 1474 298 67 1465 285 262 1475 1615 70 1478 298 68 1479 289 67 1465 285 70 284 298 262 1464 1615 261 1457 1611 72 290 304 70 284 298 261 1457 1611 74 1436 310 72 1482 304 261 1483 1611 74 296 310 261 1457 1611 259 1447 1600 260 1487 1604 25 1488 76 24 86 75 260 1491 1604 24 86 75 263 1492 1661 263 1492 1661 24 86 75 23 82 74 263 1492 1661 23 1499 74 20 1500 62 263 1492 1661 20 74 62 18 68 54 17 60 50 263 1492 1661 18 1503 54 264 1505 1683 263 1492 1661 17 60 50 264 1505 1683 260 1448 1604 263 1492 1661 258 1443 1596 260 1448 1604 264 1505 1683 258 1443 1596 264 1505 1683 192 1507 1003 265 1509 1693 192 1510 1003 264 1511 1683 190 934 995 192 1510 1003 265 1509 1693 264 1515 1683 17 1516 50 265 1509 1693 265 1519 1693 17 60 50 14 1520 38 12 35 30 265 1523 1693 14 48 38 190 934 995 265 1523 1693 12 44 30 13 922 31 190 934 995 12 35 30 257 1525 1592 258 1443 1596 192 1510 1003 193 945 1007 257 1433 1592 192 1527 1003 92 1530 389 54 204 192 55 220 205

+
+ + + + +

2 4 4 1 5 5 0 6 6 2 4 8 4 9 9 1 10 10 5 14 12 4 15 13 2 16 14 5 19 16 6 20 17 4 9 18 7 23 20 6 24 21 5 14 22 8 28 25 9 29 26 6 20 27 9 38 32 12 39 33 13 40 34 11 41 35 12 42 36 9 43 37 11 41 39 14 46 40 12 47 41 15 50 43 14 51 44 11 41 45 16 54 47 14 55 48 15 50 49 14 55 51 16 58 52 17 59 53 16 54 55 18 62 56 17 63 57 19 66 59 18 67 60 16 58 61 19 71 63 20 72 64 18 73 65 21 76 67 20 77 68 19 71 69 22 80 71 20 77 72 21 81 73 22 80 77 25 88 78 24 89 79 22 92 81 26 93 82 25 88 83 22 97 85 27 98 86 26 99 87 22 97 89 28 102 90 27 103 91 22 107 93 29 108 94 28 109 95 22 113 97 30 114 98 29 115 99 22 118 101 31 119 102 30 114 103 22 97 105 32 122 106 31 123 107 33 126 109 32 127 110 22 107 111 32 135 115 35 136 116 36 137 117 34 138 118 35 136 119 32 139 120 34 142 122 37 143 123 35 136 124 38 147 126 37 148 127 34 149 128 39 153 130 37 154 131 38 155 132 37 143 134 39 158 135 40 159 136 40 159 138 39 158 139 41 161 140 41 161 142 39 153 143 42 163 144 39 153 147 43 166 148 42 163 149 38 168 150 43 166 151 39 158 152 45 170 154 43 166 155 38 168 156 43 166 158 46 172 159 44 173 160 45 170 161 46 172 162 43 166 163 47 176 165 46 172 166 45 177 167 47 180 169 48 181 170 46 172 171 49 185 173 48 186 174 47 187 175 50 189 177 48 181 178 49 185 179 51 193 181 48 194 182 50 195 183 51 193 185 52 198 186 48 199 187 53 202 189 52 203 190 51 193 191 54 205 193 52 203 194 53 202 195 44 173 196 52 207 197 54 205 198 44 210 199 46 211 200 52 207 201 52 203 202 46 213 203 48 194 204 55 216 206 44 217 207 54 205 208 42 163 209 44 217 210 55 219 211 44 173 212 42 163 149 43 166 148 56 223 214 42 224 215 55 225 216 41 161 217 42 228 218 56 229 219 57 232 222 56 229 223 58 233 224 41 161 225 56 229 226 57 232 227 59 235 229 41 161 230 57 232 231 40 159 232 41 237 233 59 235 234 60 239 236 40 159 237 59 235 238 62 243 241 61 244 242 60 239 243 36 247 244 61 248 245 62 243 246 35 250 247 61 244 248 36 247 249 61 248 250 37 143 251 40 252 252 35 136 253 37 143 254 61 253 255 40 252 256 60 239 243 61 244 242 63 256 258 36 257 259 62 243 260 31 123 261 36 137 262 63 256 263 31 123 264 32 139 265 36 257 266 30 114 267 31 259 268 63 256 269 30 261 270 63 256 271 29 115 272 63 256 274 62 243 275 64 264 276 65 269 279 62 243 280 66 270 281 64 271 282 62 243 283 65 272 284 64 274 286 65 272 287 67 275 288 67 275 290 65 272 291 68 277 292 65 272 294 66 281 295 68 282 296 69 283 297 68 282 296 66 281 295 68 287 300 69 283 301 70 288 302 71 289 303 70 288 302 69 283 301 70 288 306 71 293 307 72 294 308 73 295 309 72 294 308 71 293 307 72 294 311 73 298 312 74 299 313 74 299 315 73 298 316 75 301 317 77 308 321 78 309 322 76 310 323 77 308 325 79 313 326 78 314 327 80 318 329 79 319 330 77 320 331 81 326 334 82 327 335 79 328 336 81 331 338 83 332 339 82 333 340 84 337 342 83 338 343 81 339 344 84 342 346 85 343 347 83 332 348 66 281 349 60 348 350 85 349 351 62 243 352 60 348 353 66 281 354 85 351 355 60 352 356 59 235 357 85 356 359 59 357 360 86 358 361 86 358 362 59 360 363 57 232 364 86 365 366 57 366 367 87 367 368 58 368 369 87 367 368 57 366 367 87 371 371 58 233 372 88 372 373 88 377 376 89 378 377 90 379 378 58 233 379 89 380 380 88 377 381 58 233 383 91 382 384 89 378 385 56 229 386 91 382 387 58 233 388 56 386 390 55 216 391 91 387 392 92 388 393 91 387 392 55 216 391 91 391 395 92 388 396 93 392 397 92 388 400 95 396 401 94 397 402 54 401 403 53 402 404 95 403 405 95 396 407 53 202 408 96 405 409 97 411 411 51 412 412 50 413 413 53 402 414 51 414 415 97 411 416 96 415 417 53 202 418 97 411 419 98 417 421 96 415 422 97 411 423 99 420 425 96 415 426 98 421 427 95 403 428 96 415 429 99 420 430 94 397 431 95 403 432 99 423 433 94 427 435 99 428 436 100 429 437 99 420 440 98 434 441 101 435 442 102 436 443 101 435 442 98 434 441 102 441 446 103 442 447 101 443 448 105 449 452 106 450 453 103 451 454 109 455 457 108 456 458 105 457 459 111 460 462 110 461 463 109 455 464 111 466 467 112 467 468 110 468 469 115 472 472 114 473 473 111 460 474 117 478 477 116 479 478 115 480 479 117 478 481 118 483 482 116 484 483 118 493 488 121 494 489 122 495 490 120 496 491 121 497 492 118 493 493 121 504 495 49 185 496 123 505 497 50 506 498 49 507 499 121 508 500 120 496 501 50 509 502 121 497 503 97 411 504 50 512 505 120 513 506 124 517 508 97 518 509 120 519 510 98 434 511 97 411 512 124 517 513 124 517 515 125 522 516 98 523 517 119 526 519 126 527 520 124 517 521 119 526 522 115 472 523 126 527 524 119 529 525 117 530 526 115 472 527 117 478 528 119 529 529 118 493 530 119 531 531 120 532 532 118 493 533 124 534 534 120 496 535 119 529 536 126 527 537 115 537 538 111 538 539 126 527 540 111 460 541 109 455 542 126 527 543 109 455 544 125 540 545 105 449 546 125 540 545 109 455 544 102 542 547 125 522 548 105 457 549 98 417 550 125 522 551 102 544 552 102 441 553 105 545 554 103 442 555 125 522 556 124 517 521 126 527 520 123 505 558 49 507 559 127 547 560 49 507 562 128 549 563 127 547 564 128 552 565 49 507 566 47 553 567 128 557 569 47 558 570 129 559 571 47 563 573 130 564 574 129 565 575 130 564 576 47 553 577 45 567 578 130 564 580 45 567 581 131 569 582 131 571 583 38 168 584 34 149 585 45 567 586 38 155 587 131 569 588 131 571 589 34 573 590 33 574 591 33 126 592 34 573 593 32 575 594 132 578 596 131 569 597 33 579 598 133 582 600 131 583 601 132 578 602 133 582 603 130 585 604 131 583 605 134 589 607 130 590 608 133 591 609 129 593 610 130 590 611 134 589 612 129 596 614 134 589 615 135 597 616 135 601 618 134 602 619 136 603 620 136 603 622 137 607 623 22 608 624 134 589 625 137 609 626 136 603 627 134 589 628 133 591 629 137 609 630 137 611 631 133 582 632 132 578 633 22 613 634 137 607 635 132 578 636 132 578 637 33 126 638 22 107 639 138 616 641 136 603 642 22 617 643 139 623 645 138 616 646 22 624 647 135 625 648 138 616 649 139 626 650 136 603 651 138 627 652 135 597 653 135 601 656 140 631 657 141 632 658 139 623 659 140 633 660 135 601 661 142 636 663 140 631 664 139 637 665 143 640 667 140 633 668 142 641 669 141 632 670 140 633 671 143 643 672 144 647 674 141 648 675 143 649 676 145 653 678 141 654 679 144 655 680 146 659 683 147 660 684 141 648 685 127 547 686 147 662 687 146 663 688 129 565 689 147 662 690 127 547 691 147 660 692 129 596 693 135 665 694 141 632 695 147 660 696 135 667 697 127 547 698 128 549 699 129 559 700 146 663 701 123 505 702 127 547 703 123 505 705 146 659 706 148 669 707 145 653 708 146 663 709 141 632 710 148 671 711 146 659 712 145 653 713 145 653 716 150 675 717 149 676 718 150 675 719 145 653 720 144 647 721 150 675 723 144 647 724 151 678 725 151 678 727 144 647 728 152 680 729 144 647 730 143 683 731 152 684 732 152 684 734 143 687 735 153 688 736 153 694 737 142 695 738 22 696 739 143 697 740 142 641 741 153 698 742 142 636 743 139 637 744 22 624 745 154 700 747 153 694 748 22 696 749 155 704 751 153 705 752 154 706 753 155 708 754 152 684 755 153 688 756 156 711 758 152 684 759 155 712 760 156 711 761 151 678 762 152 684 763 157 715 765 151 716 766 156 711 767 150 675 768 151 678 769 157 718 770 150 675 773 157 715 774 158 721 775 159 722 776 158 721 775 157 715 774 158 721 779 159 722 780 160 725 781 161 726 782 160 725 781 159 722 780 160 729 784 161 726 785 162 730 786 162 733 788 161 726 789 163 734 790 161 738 792 164 739 793 163 740 794 165 746 796 8 28 797 164 747 798 8 28 799 10 748 800 9 29 801 165 746 802 10 748 803 8 28 804 165 750 806 166 751 807 10 748 808 159 722 809 166 753 810 165 750 811 157 718 812 166 751 813 159 722 814 157 715 816 156 711 817 167 756 818 167 760 820 155 761 821 168 762 822 156 711 823 155 763 824 167 760 825 168 762 826 155 761 827 154 700 828 169 769 830 154 770 831 22 771 832 168 762 833 154 772 834 169 773 835 169 779 838 22 80 839 171 780 840 172 785 842 22 786 843 21 787 844 171 780 845 22 788 846 172 785 847 170 790 848 171 791 849 172 785 850 170 792 851 169 793 852 171 791 853 168 762 854 169 773 855 170 792 856 167 797 857 168 798 858 170 799 859 167 760 861 170 792 862 173 801 863 173 805 865 170 806 866 174 807 867 170 811 869 175 812 870 174 813 871 170 799 872 172 816 873 175 817 874 172 785 875 19 71 876 175 817 877 172 820 878 21 821 879 19 71 880 175 817 881 19 71 882 174 807 883 174 824 884 19 66 885 16 825 886 174 807 887 16 54 888 15 827 889 176 831 891 174 832 892 15 833 893 176 831 894 173 805 895 174 832 896 176 831 897 166 835 898 173 805 899 10 840 900 176 831 901 15 841 902 166 751 903 176 842 904 10 843 905 11 41 906 10 845 907 15 841 908 10 846 909 11 41 910 9 38 911 166 753 912 167 848 913 173 805 914 166 751 915 157 715 916 167 760 917 159 722 918 165 746 919 161 726 920 161 849 921 165 750 922 164 850 923 164 853 924 8 28 925 7 854 926 7 23 927 8 28 928 6 855 929 163 857 930 164 853 931 7 23 932 163 740 934 7 860 935 177 861 936 177 863 937 7 860 938 5 19 939 177 867 941 5 14 942 178 868 943 2 869 944 178 868 943 5 14 942 178 868 946 2 869 947 179 872 948 0 873 949 179 872 948 2 869 947 179 878 952 0 879 953 180 880 954 181 881 955 180 880 954 0 879 953 0 888 958 3 889 959 181 890 960 3 891 961 0 6 6 1 5 5 3 889 963 1 894 964 184 895 965 1 10 968 186 900 969 185 901 970 4 9 971 186 900 972 1 903 973 4 9 975 187 905 976 186 900 977 6 20 978 187 908 979 4 909 980 6 913 981 9 914 982 187 915 983 187 915 985 9 43 986 188 917 987 9 43 988 13 40 989 188 919 990 13 923 992 189 924 993 188 925 994 190 929 996 189 930 997 13 931 998 190 935 1000 191 936 1001 189 937 1002 192 940 1004 191 941 1005 190 935 1006 193 946 1009 194 947 1010 191 948 1011 78 953 1014 195 954 1015 194 955 1016 197 959 1019 198 960 1020 195 954 1021 82 327 1023 199 962 1024 197 959 1025 82 333 1027 200 964 1028 199 962 1029 83 338 1030 200 967 1031 82 968 1032 83 971 1033 86 365 1034 200 972 1035 83 338 1036 85 351 1037 86 358 1038 200 964 1039 86 358 1040 87 367 1041 200 964 1043 87 367 1044 201 974 1045 201 976 1046 87 367 1047 88 372 1048 201 974 1050 88 377 1051 202 978 1052 202 978 1053 88 377 1054 90 379 1055 90 982 1057 203 983 1058 202 984 1059 90 988 1061 204 989 1062 203 990 1063 205 993 1065 204 994 1066 90 988 1067 208 1000 1071 207 1001 1072 206 1002 1073 208 1006 1074 182 1007 1075 207 1008 1076 209 1012 1078 182 1013 1079 208 1014 1080 210 1018 1082 182 1019 1083 209 1020 1084 180 880 1088 181 890 1089 182 1041 1090 182 1042 1091 181 890 1092 183 1043 1093 183 1043 1094 181 890 960 3 889 959 183 1043 1096 3 891 1097 214 1046 1098 184 1047 1099 214 1046 1098 3 891 1097 214 1051 1102 184 1047 1103 215 1052 1104 216 1053 1105 215 1052 1104 184 1047 1103 215 1057 1108 216 1053 1109 217 1058 1110 218 1059 1111 217 1058 1110 216 1053 1109 217 1058 1114 218 1059 1115 219 1062 1116 220 1063 1117 219 1062 1116 218 1059 1115 219 1068 1120 220 1069 1121 221 1070 1122 222 1071 1123 221 1070 1122 220 1069 1121 221 1076 1126 222 1077 1127 223 1078 1128 224 1079 1129 223 1078 1128 222 1077 1127 226 1084 1132 223 1085 1133 225 1086 1134 226 1090 1135 182 1091 1136 223 1092 1137 227 1095 1139 182 1096 1140 226 1084 1141 228 1100 1143 182 1101 1144 227 1102 1145 207 1008 1146 182 1104 1147 228 1100 1148 207 1008 1149 228 1100 1150 204 989 1151 203 1106 1152 204 989 1151 228 1100 1150 228 1100 1154 227 1102 1155 203 990 1156 229 1108 1157 203 990 1156 227 1102 1155 203 983 1158 229 1108 1159 202 978 1160 202 984 1162 229 1111 1163 230 1112 1164 229 1117 1166 225 1118 1167 230 1119 1168 227 1102 1169 226 1084 1170 229 1108 1171 225 1118 1172 229 1108 1171 226 1084 1170 231 1120 1173 230 1119 1168 225 1118 1167 230 1112 1174 231 1120 1175 199 1123 1176 198 1124 1177 199 1123 1176 231 1120 1175 198 960 1178 197 959 1025 199 962 1024 231 1120 1180 232 1127 1181 198 1128 1182 231 1132 1183 224 1133 1184 232 1134 1185 225 1086 1186 224 1079 1187 231 1120 1188 224 1135 1189 225 1086 1134 223 1085 1133 224 1133 1191 233 1138 1192 232 1139 1193 224 1079 1194 222 1071 1195 233 1141 1196 220 1063 1198 234 1143 1199 222 1071 1200 220 1147 1202 235 1148 1203 234 1149 1204 220 1063 1205 218 1059 1206 235 1148 1207 234 1143 1210 235 1148 1211 237 1156 1212 236 1157 1213 237 1158 1214 235 1159 1215 238 1163 1218 239 1164 1219 237 1158 1220 188 1168 1221 239 1169 1222 238 1170 1223 188 1173 1224 189 1174 1225 239 1169 1226 189 1174 1229 240 1177 1230 239 1169 1231 194 1184 1232 241 1185 1233 240 1186 1234 194 947 1235 196 1188 1236 241 1189 1237 196 1190 1238 194 955 1016 195 954 1015 234 1143 1241 243 1197 1242 233 1141 1243 241 1189 1244 243 1201 1245 237 1158 1246 196 1188 1247 243 1201 1248 241 1185 1249 196 1190 1250 242 1202 1251 243 1203 1252 195 1204 1253 242 1202 1254 196 1205 1255 195 1204 1257 244 1207 1258 242 1202 1259 198 1209 1260 244 1207 1261 195 1204 1262 198 1209 1263 232 1211 1264 244 1207 1265 232 1211 1266 242 1212 1267 244 1207 1268 242 1212 1269 233 1141 1243 243 1197 1242 232 1215 1270 233 1216 1271 242 1202 1272 234 1217 1273 237 1158 1274 243 1218 1275 239 1164 1276 241 1189 1277 237 1158 1278 241 1189 1279 239 1169 1231 240 1177 1230 233 1141 1280 222 1071 1200 234 1143 1199 191 948 1281 194 1184 1282 240 1219 1283 189 1220 1284 191 1221 1285 240 1186 1286 186 900 1287 188 925 1288 238 1163 1289 187 905 1290 188 1168 1291 186 1223 1292 186 1226 1293 238 1227 1294 185 1228 1295 236 1230 1296 238 1231 1297 237 1158 1298 185 901 1299 238 1232 1300 236 1157 1301 184 895 1302 185 1228 1303 216 1053 1304 184 895 1305 1 1233 1306 185 1228 1307 236 1230 1308 216 1053 1304 185 1228 1303 216 1053 1309 236 1157 1310 218 1059 1311 218 1234 1312 236 1230 1313 235 1148 1314 201 976 1315 230 1112 1316 199 962 1317 202 984 1318 230 1112 1319 201 976 1320 200 964 1321 201 976 1322 199 962 1323 204 989 1324 206 1002 1073 207 1001 1072 205 1235 1325 206 1236 1326 204 989 1327 245 1239 1329 206 1002 1330 205 1240 1331 245 1243 1332 209 1244 1333 206 1002 1334 246 1248 1336 210 1249 1337 245 1239 1338 104 1252 1339 211 1253 1340 246 1254 1341 103 451 1342 107 1257 1343 104 1258 1344 107 1257 1345 103 451 454 106 450 453 107 1257 1346 106 1259 1347 182 1260 1348 106 1261 1349 108 456 1350 182 1262 1351 106 450 1352 105 457 459 108 456 458 108 456 1353 110 461 1354 182 1263 1355 108 456 1356 109 455 464 110 461 463 110 1264 1357 113 1265 1358 182 1266 1359 113 1267 1360 110 468 469 112 467 468 112 1269 1362 247 1270 1363 113 1271 1364 112 1269 1366 248 1273 1367 247 1270 1368 114 1274 1369 248 1273 1370 112 1269 1371 249 1281 1375 250 1282 1376 248 1283 1377 162 733 1378 163 734 1379 250 1286 1380 250 1286 1381 163 734 1382 177 1288 1383 250 1282 1384 177 1291 1385 251 1292 1386 251 1295 1387 177 863 1388 178 1296 1389 252 1300 1391 251 1301 1392 178 1302 1393 248 1305 1394 251 1295 1395 247 1270 1396 251 1306 1397 248 1283 1377 250 1282 1376 252 1307 1398 247 1270 1396 251 1295 1395 247 1270 1399 252 1307 1400 212 1308 1401 213 1309 1402 212 1308 1401 252 1307 1400 212 1308 1403 213 1309 1404 182 1310 1405 213 1311 1406 180 880 1407 182 1312 1408 252 1300 1409 179 1316 1410 213 1317 1411 252 1307 1412 178 1319 1413 179 872 1414 180 1320 1415 213 1317 1411 179 1316 1410 113 1271 1416 212 1321 1417 182 1322 1418 212 1308 1419 113 1271 1364 247 1270 1363 249 1323 1420 162 730 1421 250 1286 1422 253 1325 1424 162 733 1425 249 1281 1426 253 1327 1427 160 729 1428 162 730 1429 254 1329 1431 160 729 1432 253 1327 1433 254 1331 1434 158 721 1435 160 729 1436 149 1333 1437 158 721 1438 254 1331 1439 149 1333 1440 150 675 1441 158 1335 1442 148 671 1444 149 1338 1445 255 1339 1446 148 671 1447 145 653 1448 149 1340 1449 254 1331 1450 255 1339 1446 149 1338 1445 122 1343 1451 255 1344 1452 253 1325 1453 121 1349 1454 148 1350 1455 255 1351 1456 121 508 1457 123 505 1458 148 671 1459 122 1352 1460 121 508 1461 255 1351 1462 254 1331 1463 253 1325 1453 255 1344 1452 249 1281 1464 122 1354 1465 253 1325 1466 116 1357 1467 122 1358 1468 249 1359 1469 116 484 1470 118 493 1471 122 1361 1472 116 1357 1473 249 1281 1474 114 1274 1475 114 473 1476 249 1359 1477 248 1362 1478 114 1274 1479 115 480 479 116 479 478 112 1269 1480 111 460 474 114 473 473 211 1253 1481 107 1363 1482 182 1364 1483 211 1365 1484 104 1258 1344 107 1257 1343 210 1018 1485 211 1253 1486 182 1366 1487 210 1018 1488 246 1254 1341 211 1253 1340 104 1367 1489 101 443 448 103 442 447 101 1368 1490 104 1252 1491 100 429 1492 100 429 1493 104 1258 1494 246 1254 1495 100 429 1497 246 1248 1498 256 1371 1499 245 1372 1500 256 1371 1499 246 1248 1498 256 1376 1501 245 1377 1502 205 1378 1503 93 1382 1504 94 397 1505 256 1371 1506 93 1383 1507 92 388 1508 94 397 1509 100 1384 1510 256 1371 1506 94 397 1505 205 1235 1511 93 1382 1512 256 1385 1513 89 378 1514 93 1388 1515 205 1389 1516 89 378 1517 91 387 1518 93 392 1519 89 378 1520 205 1392 1521 90 1393 1522 100 429 1523 99 428 1524 101 1368 1525 209 1394 1526 245 1239 1338 210 1249 1337 208 1014 1527 206 1002 1334 209 1244 1333 182 1398 1528 221 1399 1529 223 1400 1530 182 1402 1531 219 1068 1532 221 1076 1533 182 1404 1534 217 1058 1535 219 1068 1536 182 1406 1537 215 1052 1538 217 1058 1539 182 1408 1540 214 1051 1541 215 1057 1542 182 1412 1543 183 1413 1544 214 1414 1545 79 319 1546 82 333 1547 197 959 1548 79 319 1549 197 959 1550 78 314 1551 78 314 1552 197 959 1553 195 1415 1554 76 310 1555 78 953 1556 194 947 1557 193 1416 1558 76 310 1559 194 947 1560 75 1418 1561 73 298 1562 76 1419 1563 73 295 1564 77 1420 1565 76 1419 1566 71 1422 1567 77 308 1568 73 298 1569 71 289 1570 80 1424 1571 77 320 1572 71 1422 1573 69 283 1574 80 318 1575 84 337 1576 80 318 1575 69 283 1574 80 1426 1577 84 337 1578 81 1427 1579 80 1426 1580 81 331 1581 79 313 1582 69 283 1583 66 281 1584 84 1429 1585 84 337 1586 66 1430 1587 85 351 1588 193 1431 1589 75 1418 1590 76 310 1591 257 1434 1593 75 1435 1594 193 1416 1595 258 1439 1597 74 1440 1598 257 1434 1599 258 1444 1601 259 1445 1602 74 1446 1603 260 1449 1605 259 1450 1606 258 1444 1607 25 1454 1608 259 1455 1609 260 1456 1610 25 88 1612 261 1458 1613 259 1455 1614 26 93 1616 262 1461 1617 261 1458 1618 27 1463 1619 262 1461 1620 26 93 1621 27 1467 1622 67 1468 1623 262 1469 1624 28 1471 1625 64 274 1626 67 1468 1627 28 1473 1628 29 115 1629 64 274 1630 29 115 1631 63 256 1632 64 274 1633 27 103 1634 28 1471 1635 67 1468 1636 262 1476 1637 67 1468 1638 70 1477 1639 67 1468 1640 68 1480 1641 70 1481 1642 261 1458 1643 262 1469 1644 70 288 1645 261 1458 1646 70 288 1647 72 294 1648 261 1484 1649 72 1485 1650 74 1440 1651 259 1450 1652 261 1458 1653 74 299 1654 25 1486 1655 26 93 1656 261 1458 1657 24 89 1658 25 1489 1659 260 1490 1660 263 1493 1662 24 89 1663 260 1494 1664 23 1495 1665 24 89 1666 263 1493 1667 23 1495 1668 22 1496 1669 24 1497 1670 20 72 1671 22 1498 1672 23 1495 1673 20 1501 1674 23 1502 1675 263 1493 1676 18 73 1677 20 77 1678 263 1493 1679 18 1504 1680 263 1493 1681 17 63 1682 263 1493 1684 260 1449 1685 264 1506 1686 264 1506 1687 260 1449 1688 258 1444 1689 192 1508 1690 264 1506 1691 258 1444 1692 265 1512 1694 192 1513 1695 190 935 1696 264 1514 1697 192 1513 1698 265 1512 1699 17 63 1700 263 1493 1701 264 1506 1702 265 1512 1703 17 1517 1704 264 1518 1705 14 1521 1706 17 63 1707 265 1522 1708 14 51 1709 265 1524 1710 12 42 1711 12 47 1712 265 1524 1713 190 935 1714 12 42 1715 190 935 1716 13 923 1717 192 1513 1718 258 1444 1719 257 1526 1720 192 1528 1721 257 1434 1722 193 946 1723 192 940 1724 193 1416 1725 191 941 1726 75 1529 1727 257 1434 1599 74 1440 1598 92 388 1728 54 401 1729 95 403 1730 55 225 1731 54 205 1732 92 1531 1733

+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + +
diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/phobos2.dae.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/phobos2.dae.meta new file mode 100644 index 00000000..c85aaa00 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/phobos2.dae.meta @@ -0,0 +1,100 @@ +fileFormatVersion: 2 +guid: 303c89b8ca5b749a98272a094ed66020 +ModelImporter: + serializedVersion: 23 + fileIDToRecycleName: + 100000: mesh1 + 100002: //RootNode + 400000: mesh1 + 400002: //RootNode + 2100000: fobos + 2100002: BackColor + 2300000: mesh1 + 3300000: mesh1 + 4300000: mesh1 + externalObjects: {} + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + materialLocation: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + importVisibility: 1 + importBlendShapes: 1 + importCameras: 1 + importLights: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + preserveHierarchy: 0 + indexFormat: 0 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + previousCalculatedGlobalScale: 1 + hasPreviousCalculatedGlobalScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 3 + normalCalculationMode: 4 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_back.jpg b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_back.jpg new file mode 100755 index 00000000..2391acaa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_back.jpg differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_back.jpg.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_back.jpg.meta new file mode 100644 index 00000000..96b2eb5a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_back.jpg.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 160727aa92b574e2da94a4841f151eac +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_down.jpg b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_down.jpg new file mode 100755 index 00000000..74f747c3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_down.jpg differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_down.jpg.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_down.jpg.meta new file mode 100644 index 00000000..737df7ed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_down.jpg.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 38f75c321d316413cb8d3ad2af036a84 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_front.jpg b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_front.jpg new file mode 100755 index 00000000..eb92b0fa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_front.jpg differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_front.jpg.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_front.jpg.meta new file mode 100644 index 00000000..de83047b --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_front.jpg.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 4bf65a7e8488741ce99c26cd4c074d95 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_left.jpg b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_left.jpg new file mode 100755 index 00000000..3a73ecdd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_left.jpg differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_left.jpg.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_left.jpg.meta new file mode 100644 index 00000000..3a1ff87f --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_left.jpg.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 2b4ec48d656de478a84e7f49e484567d +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_right.jpg b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_right.jpg new file mode 100755 index 00000000..5f91220b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_right.jpg differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_right.jpg.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_right.jpg.meta new file mode 100644 index 00000000..25f13740 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_right.jpg.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 04148519712d0468591d2345a425ef55 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_up.jpg b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_up.jpg new file mode 100755 index 00000000..965a0eab Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_up.jpg differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_up.jpg.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_up.jpg.meta new file mode 100644 index 00000000..4d84b5d9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Assets/skybox_purple_nebula_up.jpg.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 8bf0cd74ca51b45bfb6d767bc0efbd55 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/APIUpdater/project-dependencies.graph b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/APIUpdater/project-dependencies.graph new file mode 100644 index 00000000..1932d0da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/APIUpdater/project-dependencies.graph differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/AnnotationManager b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/AnnotationManager new file mode 100644 index 00000000..cbac0c20 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/AnnotationManager differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/ArtifactDB b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/ArtifactDB new file mode 100755 index 00000000..39dcb46f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/ArtifactDB differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/ArtifactDB-lock b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/ArtifactDB-lock new file mode 100755 index 00000000..2edb0669 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/ArtifactDB-lock differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0000f9e138d5f0699ace233517bc51bd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0000f9e138d5f0699ace233517bc51bd new file mode 100644 index 00000000..ee0bc034 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0000f9e138d5f0699ace233517bc51bd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0007f11ac2f59a90cd3ea1a317f15bc5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0007f11ac2f59a90cd3ea1a317f15bc5 new file mode 100644 index 00000000..4a41f18f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0007f11ac2f59a90cd3ea1a317f15bc5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/002462afa051e3b81944fc9856109091 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/002462afa051e3b81944fc9856109091 new file mode 100644 index 00000000..3312dc44 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/002462afa051e3b81944fc9856109091 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0047d4cf9cd3c65aeef3f1db2be13e08 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0047d4cf9cd3c65aeef3f1db2be13e08 new file mode 100644 index 00000000..4a5aef64 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0047d4cf9cd3c65aeef3f1db2be13e08 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/004bb32f6575382f8b8c72c4a9e48968 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/004bb32f6575382f8b8c72c4a9e48968 new file mode 100644 index 00000000..4dc00f53 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/004bb32f6575382f8b8c72c4a9e48968 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00648463bcd0aedb6f1231b693934e48 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00648463bcd0aedb6f1231b693934e48 new file mode 100644 index 00000000..ffaee14c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00648463bcd0aedb6f1231b693934e48 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0065a22f59af14846f6df5d8b915be29 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0065a22f59af14846f6df5d8b915be29 new file mode 100644 index 00000000..74b2e982 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0065a22f59af14846f6df5d8b915be29 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/006e35c46a490c3bfac8594fa6e0c92f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/006e35c46a490c3bfac8594fa6e0c92f new file mode 100644 index 00000000..ebf7aea3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/006e35c46a490c3bfac8594fa6e0c92f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/007ef153404ce484c460532af7dbe3f9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/007ef153404ce484c460532af7dbe3f9 new file mode 100644 index 00000000..738e71a1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/007ef153404ce484c460532af7dbe3f9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00819083601645cfee4c6c6ab981aa81 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00819083601645cfee4c6c6ab981aa81 new file mode 100644 index 00000000..4c634689 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00819083601645cfee4c6c6ab981aa81 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/008ec56b65812db89cfc971f2538398a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/008ec56b65812db89cfc971f2538398a new file mode 100644 index 00000000..ae406201 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/008ec56b65812db89cfc971f2538398a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0099faeeefe13ebd2c6b67fc3d96cc35 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0099faeeefe13ebd2c6b67fc3d96cc35 new file mode 100644 index 00000000..b5d2aa54 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/0099faeeefe13ebd2c6b67fc3d96cc35 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00ac5085bb56969b89535a1afccadb5b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00ac5085bb56969b89535a1afccadb5b new file mode 100644 index 00000000..72c4d729 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00ac5085bb56969b89535a1afccadb5b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00b567f2b534d30807d03c2499c4e426 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00b567f2b534d30807d03c2499c4e426 new file mode 100644 index 00000000..8fe25922 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00b567f2b534d30807d03c2499c4e426 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00bb91a349877dbe338449f2df4b246e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00bb91a349877dbe338449f2df4b246e new file mode 100644 index 00000000..3893035d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00bb91a349877dbe338449f2df4b246e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00d23cf1bf4adb921e4fe2676f7016b0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00d23cf1bf4adb921e4fe2676f7016b0 new file mode 100644 index 00000000..126a2ee6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00d23cf1bf4adb921e4fe2676f7016b0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00d853fc8c102cab03efaa77c8acdc0c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00d853fc8c102cab03efaa77c8acdc0c new file mode 100644 index 00000000..de645048 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00d853fc8c102cab03efaa77c8acdc0c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00dd066f48d80d071337c4620275ab42 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00dd066f48d80d071337c4620275ab42 new file mode 100644 index 00000000..7a587e87 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00dd066f48d80d071337c4620275ab42 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00fce0e998bbf1a1154c7c8ccdc8566b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00fce0e998bbf1a1154c7c8ccdc8566b new file mode 100644 index 00000000..3f4f6d3b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/00/00fce0e998bbf1a1154c7c8ccdc8566b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01142e7dd9b5da9c6a22fc7d30c3f0db b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01142e7dd9b5da9c6a22fc7d30c3f0db new file mode 100644 index 00000000..59007bc7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01142e7dd9b5da9c6a22fc7d30c3f0db differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/011ac47c7382a087c4691988d43cfc36 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/011ac47c7382a087c4691988d43cfc36 new file mode 100644 index 00000000..611901b5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/011ac47c7382a087c4691988d43cfc36 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/012e1681df11236a164d13354d966d1c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/012e1681df11236a164d13354d966d1c new file mode 100644 index 00000000..739dedfd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/012e1681df11236a164d13354d966d1c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/0139bbc89b66a9d8d7ce3f0f2669355a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/0139bbc89b66a9d8d7ce3f0f2669355a new file mode 100644 index 00000000..0a1faaf4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/0139bbc89b66a9d8d7ce3f0f2669355a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/0173e0e05ea0dca3c556d52b639ceaf4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/0173e0e05ea0dca3c556d52b639ceaf4 new file mode 100644 index 00000000..af4f2054 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/0173e0e05ea0dca3c556d52b639ceaf4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/017beb63766ff8f57a0cca8ac49e829f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/017beb63766ff8f57a0cca8ac49e829f new file mode 100644 index 00000000..22564908 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/017beb63766ff8f57a0cca8ac49e829f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/017f5a64719d037bd888bd5953e1af2f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/017f5a64719d037bd888bd5953e1af2f new file mode 100644 index 00000000..9a4510da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/017f5a64719d037bd888bd5953e1af2f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/018a238197b03197f6b2657ccaec8dee b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/018a238197b03197f6b2657ccaec8dee new file mode 100644 index 00000000..fa4634bb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/018a238197b03197f6b2657ccaec8dee differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/018ce6f37a58f1642bc487c385f235bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/018ce6f37a58f1642bc487c385f235bc new file mode 100644 index 00000000..33ed1b0b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/018ce6f37a58f1642bc487c385f235bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/0197de6689702cc32d005d8aa8e18a13 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/0197de6689702cc32d005d8aa8e18a13 new file mode 100644 index 00000000..5a5a59ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/0197de6689702cc32d005d8aa8e18a13 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/019c0762e86b392f68a694b097a416ea b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/019c0762e86b392f68a694b097a416ea new file mode 100644 index 00000000..dc8e55a1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/019c0762e86b392f68a694b097a416ea differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01a77886ab08d2c7e4901ac88f78d413 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01a77886ab08d2c7e4901ac88f78d413 new file mode 100644 index 00000000..42a0f1db Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01a77886ab08d2c7e4901ac88f78d413 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01be91a12bf04e206a0abe12f96646cf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01be91a12bf04e206a0abe12f96646cf new file mode 100644 index 00000000..e985ed17 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01be91a12bf04e206a0abe12f96646cf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01c2df486e80d696815d969dad28f540 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01c2df486e80d696815d969dad28f540 new file mode 100644 index 00000000..24d75114 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01c2df486e80d696815d969dad28f540 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01cb1d6a3bab8f241e506793a6d221f2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01cb1d6a3bab8f241e506793a6d221f2 new file mode 100644 index 00000000..c2f54342 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01cb1d6a3bab8f241e506793a6d221f2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01fa584a25ff5e0b6150ad7b972f9d52 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01fa584a25ff5e0b6150ad7b972f9d52 new file mode 100644 index 00000000..7a16e3e3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/01/01fa584a25ff5e0b6150ad7b972f9d52 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/020d20afe13b72d4edb7ff2c25e85c07 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/020d20afe13b72d4edb7ff2c25e85c07 new file mode 100644 index 00000000..b7af9f45 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/020d20afe13b72d4edb7ff2c25e85c07 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/0227896950ee9b48c6afe006de88288f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/0227896950ee9b48c6afe006de88288f new file mode 100644 index 00000000..07c586e7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/0227896950ee9b48c6afe006de88288f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/022f72c92e97b9c90f23b237beaadf3c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/022f72c92e97b9c90f23b237beaadf3c new file mode 100644 index 00000000..40b060e8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/022f72c92e97b9c90f23b237beaadf3c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/022fdf873f2a69bdb864029831197ce4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/022fdf873f2a69bdb864029831197ce4 new file mode 100644 index 00000000..0bcd9a1a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/022fdf873f2a69bdb864029831197ce4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/023bf66425580cd0b254a9bf7629ecf5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/023bf66425580cd0b254a9bf7629ecf5 new file mode 100644 index 00000000..b46080e4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/023bf66425580cd0b254a9bf7629ecf5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/024012cbcc43e7f5a66c98ed53378d6f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/024012cbcc43e7f5a66c98ed53378d6f new file mode 100644 index 00000000..046cff18 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/024012cbcc43e7f5a66c98ed53378d6f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02434d7af210ba7cca40bea4a07f5821 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02434d7af210ba7cca40bea4a07f5821 new file mode 100644 index 00000000..7e3c7a94 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02434d7af210ba7cca40bea4a07f5821 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/024846cda153c65cbf9d94cb9fc2b46f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/024846cda153c65cbf9d94cb9fc2b46f new file mode 100644 index 00000000..d6ba055c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/024846cda153c65cbf9d94cb9fc2b46f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/024ee185005c1cde34cf2fb27aab6d08 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/024ee185005c1cde34cf2fb27aab6d08 new file mode 100644 index 00000000..6645e7cd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/024ee185005c1cde34cf2fb27aab6d08 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/025bb8e6c1bdbd528554037799eb7d0b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/025bb8e6c1bdbd528554037799eb7d0b new file mode 100644 index 00000000..9acda5d3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/025bb8e6c1bdbd528554037799eb7d0b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/025be4b81310613f50a5a16963afd368 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/025be4b81310613f50a5a16963afd368 new file mode 100644 index 00000000..eac5e090 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/025be4b81310613f50a5a16963afd368 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02652712740121c76f0c3698a1286772 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02652712740121c76f0c3698a1286772 new file mode 100644 index 00000000..07c833a1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02652712740121c76f0c3698a1286772 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02654fc54ce013c4a8fcba8f00e062de b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02654fc54ce013c4a8fcba8f00e062de new file mode 100644 index 00000000..a9eeb665 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02654fc54ce013c4a8fcba8f00e062de differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/026751fc4211a9c6810f9ee55d149ec7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/026751fc4211a9c6810f9ee55d149ec7 new file mode 100644 index 00000000..84047968 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/026751fc4211a9c6810f9ee55d149ec7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02681c3a0367e973e2eab991abb791bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02681c3a0367e973e2eab991abb791bc new file mode 100644 index 00000000..2f0a7c1f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02681c3a0367e973e2eab991abb791bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/0274e885f8db60938dc4aaa17292de25 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/0274e885f8db60938dc4aaa17292de25 new file mode 100644 index 00000000..05c5681e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/0274e885f8db60938dc4aaa17292de25 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/027b99b3b591ca9d680bb190eb9f99bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/027b99b3b591ca9d680bb190eb9f99bc new file mode 100644 index 00000000..71e7c347 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/027b99b3b591ca9d680bb190eb9f99bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/027e0c709f64bd1d0575438f29d342e0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/027e0c709f64bd1d0575438f29d342e0 new file mode 100644 index 00000000..a66b2476 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/027e0c709f64bd1d0575438f29d342e0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/0282a044711f0cc45a28306f83f30083 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/0282a044711f0cc45a28306f83f30083 new file mode 100644 index 00000000..e5dc6620 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/0282a044711f0cc45a28306f83f30083 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/0293d75d4a3becc35982e48e0ca9ba69 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/0293d75d4a3becc35982e48e0ca9ba69 new file mode 100644 index 00000000..27020224 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/0293d75d4a3becc35982e48e0ca9ba69 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/029cbed70ab1234239359dd21bf632a9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/029cbed70ab1234239359dd21bf632a9 new file mode 100644 index 00000000..5833b9bc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/029cbed70ab1234239359dd21bf632a9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02aafd07dffd575ec0c12cfbd68fb246 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02aafd07dffd575ec0c12cfbd68fb246 new file mode 100644 index 00000000..bbace3fa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02aafd07dffd575ec0c12cfbd68fb246 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02ca155d74e8361faa5e43ed81a8628c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02ca155d74e8361faa5e43ed81a8628c new file mode 100644 index 00000000..d4ae1549 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02ca155d74e8361faa5e43ed81a8628c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02d0404fd33dba77fdae20259f60bffe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02d0404fd33dba77fdae20259f60bffe new file mode 100644 index 00000000..37595028 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02d0404fd33dba77fdae20259f60bffe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02dc32e41b9ae09f20ad30b273ea6df3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02dc32e41b9ae09f20ad30b273ea6df3 new file mode 100644 index 00000000..1be154c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02dc32e41b9ae09f20ad30b273ea6df3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02dc41fe8f6f38cbe4e8b885e6ff23b4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02dc41fe8f6f38cbe4e8b885e6ff23b4 new file mode 100644 index 00000000..1a073bf5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02dc41fe8f6f38cbe4e8b885e6ff23b4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02e19e1ce38ff5946f58386660550c34 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02e19e1ce38ff5946f58386660550c34 new file mode 100644 index 00000000..e7d57bc4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02e19e1ce38ff5946f58386660550c34 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02ec87420f1454677e03090f9b54c1ba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02ec87420f1454677e03090f9b54c1ba new file mode 100644 index 00000000..2a6f6042 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02ec87420f1454677e03090f9b54c1ba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02f9a3910a02f449cf2477ec6d0ff0d1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02f9a3910a02f449cf2477ec6d0ff0d1 new file mode 100644 index 00000000..704563b4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/02/02f9a3910a02f449cf2477ec6d0ff0d1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/031566f574013073d26052c1ce595e3c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/031566f574013073d26052c1ce595e3c new file mode 100644 index 00000000..d1cf388a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/031566f574013073d26052c1ce595e3c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/0327bdef698b551e2a52efca65e4e336 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/0327bdef698b551e2a52efca65e4e336 new file mode 100644 index 00000000..080e0941 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/0327bdef698b551e2a52efca65e4e336 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/034d5fc34a26433545b3fdea700063dc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/034d5fc34a26433545b3fdea700063dc new file mode 100644 index 00000000..611c512c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/034d5fc34a26433545b3fdea700063dc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/0365c852adc6a6604ac4e168fd7a808f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/0365c852adc6a6604ac4e168fd7a808f new file mode 100644 index 00000000..4d1255cd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/0365c852adc6a6604ac4e168fd7a808f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/0369a59f430b88e00ab72a8cf0df0972 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/0369a59f430b88e00ab72a8cf0df0972 new file mode 100644 index 00000000..719135c2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/0369a59f430b88e00ab72a8cf0df0972 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/037984a07bb34541bc3c5ff1674579a0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/037984a07bb34541bc3c5ff1674579a0 new file mode 100644 index 00000000..49418eac Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/037984a07bb34541bc3c5ff1674579a0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/0381e2a73d839e0af9a21bdb7c82f465 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/0381e2a73d839e0af9a21bdb7c82f465 new file mode 100644 index 00000000..664bd860 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/0381e2a73d839e0af9a21bdb7c82f465 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03a4a191d40e4637765e6e255b4b0c3f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03a4a191d40e4637765e6e255b4b0c3f new file mode 100644 index 00000000..1ca3ad5a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03a4a191d40e4637765e6e255b4b0c3f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03a9fd53d2e37e1bcfa8abb0451380af b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03a9fd53d2e37e1bcfa8abb0451380af new file mode 100644 index 00000000..92b551bf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03a9fd53d2e37e1bcfa8abb0451380af differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03af1301770cbc64b63dbc839c7eea08 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03af1301770cbc64b63dbc839c7eea08 new file mode 100644 index 00000000..0c2912b0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03af1301770cbc64b63dbc839c7eea08 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03b99e80aaba1dad8cac44ab16b76683 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03b99e80aaba1dad8cac44ab16b76683 new file mode 100644 index 00000000..d3b7a5fb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03b99e80aaba1dad8cac44ab16b76683 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03cfd22af9fbc8c7607c6fed881ab8de b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03cfd22af9fbc8c7607c6fed881ab8de new file mode 100644 index 00000000..9d41d61e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03cfd22af9fbc8c7607c6fed881ab8de differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03e25beadcfdc1c06beb59c699672db1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03e25beadcfdc1c06beb59c699672db1 new file mode 100644 index 00000000..edc47f62 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03e25beadcfdc1c06beb59c699672db1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03fc8ef0fec5e2dffd50aba58f954228 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03fc8ef0fec5e2dffd50aba58f954228 new file mode 100644 index 00000000..11cca560 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/03/03fc8ef0fec5e2dffd50aba58f954228 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/0408ac6925b6a12ad33fc084a56c4975 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/0408ac6925b6a12ad33fc084a56c4975 new file mode 100644 index 00000000..7d31852d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/0408ac6925b6a12ad33fc084a56c4975 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/040910b8661ffbbaecc8adc6a704a270 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/040910b8661ffbbaecc8adc6a704a270 new file mode 100644 index 00000000..b6298fe7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/040910b8661ffbbaecc8adc6a704a270 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/0409137982ff43fa00ade312cb0a25ec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/0409137982ff43fa00ade312cb0a25ec new file mode 100644 index 00000000..5ea0cb3b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/0409137982ff43fa00ade312cb0a25ec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/040a09b6b9cca9c71928075f39b70495 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/040a09b6b9cca9c71928075f39b70495 new file mode 100644 index 00000000..4ade8bb3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/040a09b6b9cca9c71928075f39b70495 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/040b3f5cbd158eeeb78bb28b31e77dbc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/040b3f5cbd158eeeb78bb28b31e77dbc new file mode 100644 index 00000000..6b81aa1e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/040b3f5cbd158eeeb78bb28b31e77dbc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/043bcab5536a4cf15276f9729b8bd62a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/043bcab5536a4cf15276f9729b8bd62a new file mode 100644 index 00000000..2fd61b1a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/043bcab5536a4cf15276f9729b8bd62a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/045ee3c03e6c2fdce314c0389441d232 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/045ee3c03e6c2fdce314c0389441d232 new file mode 100644 index 00000000..c3d8cd57 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/045ee3c03e6c2fdce314c0389441d232 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04665a2d62570aaf6ad5451b596c50fb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04665a2d62570aaf6ad5451b596c50fb new file mode 100644 index 00000000..fe86c399 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04665a2d62570aaf6ad5451b596c50fb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/0481560ad1f82f7080602b33be9807f8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/0481560ad1f82f7080602b33be9807f8 new file mode 100644 index 00000000..ae4f180a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/0481560ad1f82f7080602b33be9807f8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/0485923ebd51d5a29c925125756fe90d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/0485923ebd51d5a29c925125756fe90d new file mode 100644 index 00000000..504c5e72 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/0485923ebd51d5a29c925125756fe90d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/048df1a19d2b8e20727e5ac9e0b47db8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/048df1a19d2b8e20727e5ac9e0b47db8 new file mode 100644 index 00000000..b299a2c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/048df1a19d2b8e20727e5ac9e0b47db8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/048e005b6359af7cdfcfc1754a023afb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/048e005b6359af7cdfcfc1754a023afb new file mode 100644 index 00000000..a41a2050 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/048e005b6359af7cdfcfc1754a023afb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/049b7a9af9fbf57b5a834b433b0b0c7a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/049b7a9af9fbf57b5a834b433b0b0c7a new file mode 100644 index 00000000..51b6b2af Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/049b7a9af9fbf57b5a834b433b0b0c7a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04a3c45ac1cd7bfe07be7f8cba17b6b8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04a3c45ac1cd7bfe07be7f8cba17b6b8 new file mode 100644 index 00000000..26c51f50 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04a3c45ac1cd7bfe07be7f8cba17b6b8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04c20768d110c4034c18514da9fa8035 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04c20768d110c4034c18514da9fa8035 new file mode 100644 index 00000000..021c8d91 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04c20768d110c4034c18514da9fa8035 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04d8803de0c0cd5be40443979962e7c4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04d8803de0c0cd5be40443979962e7c4 new file mode 100644 index 00000000..dc7c7985 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04d8803de0c0cd5be40443979962e7c4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04f8d568c9c2703c2d1495fffd241817 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04f8d568c9c2703c2d1495fffd241817 new file mode 100644 index 00000000..9f3d2ca0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/04/04f8d568c9c2703c2d1495fffd241817 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/0519f2db3465182cac1f3fc85e49a864 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/0519f2db3465182cac1f3fc85e49a864 new file mode 100644 index 00000000..15f810ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/0519f2db3465182cac1f3fc85e49a864 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/0527a2f398e555c044b0fae8b302eacc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/0527a2f398e555c044b0fae8b302eacc new file mode 100644 index 00000000..c48704d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/0527a2f398e555c044b0fae8b302eacc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/053b943a2e478313b4f0f5c90e8f3288 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/053b943a2e478313b4f0f5c90e8f3288 new file mode 100644 index 00000000..72183b2d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/053b943a2e478313b4f0f5c90e8f3288 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/0575c3d6013095062119e90a4ffb148b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/0575c3d6013095062119e90a4ffb148b new file mode 100644 index 00000000..3026e980 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/0575c3d6013095062119e90a4ffb148b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05bd357425bb6f356af70da4cd0c19cd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05bd357425bb6f356af70da4cd0c19cd new file mode 100644 index 00000000..7b302ba6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05bd357425bb6f356af70da4cd0c19cd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05be5f53c45448084039dd271bee5d62 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05be5f53c45448084039dd271bee5d62 new file mode 100644 index 00000000..61effbac Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05be5f53c45448084039dd271bee5d62 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05e73123db5b3116007e84aa1400d009 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05e73123db5b3116007e84aa1400d009 new file mode 100644 index 00000000..eeec3333 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05e73123db5b3116007e84aa1400d009 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05fb4b3e3e1c26f252710264fed0907b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05fb4b3e3e1c26f252710264fed0907b new file mode 100644 index 00000000..a089845c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05fb4b3e3e1c26f252710264fed0907b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05fbe80a712ce192be423077541858c2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05fbe80a712ce192be423077541858c2 new file mode 100644 index 00000000..c7a4beb3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/05/05fbe80a712ce192be423077541858c2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/060cb1a79e567ee50d149c1915e179fc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/060cb1a79e567ee50d149c1915e179fc new file mode 100644 index 00000000..99ccfa50 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/060cb1a79e567ee50d149c1915e179fc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/0634d67751a4bfc0e35a335e92a04ac1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/0634d67751a4bfc0e35a335e92a04ac1 new file mode 100644 index 00000000..1f06d1d4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/0634d67751a4bfc0e35a335e92a04ac1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/063ef738a49c3cda6d1a251d8a4683c6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/063ef738a49c3cda6d1a251d8a4683c6 new file mode 100644 index 00000000..4cf42fe8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/063ef738a49c3cda6d1a251d8a4683c6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06581fb7e35e20f77ea34c4b0ba00441 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06581fb7e35e20f77ea34c4b0ba00441 new file mode 100644 index 00000000..6e9e121c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06581fb7e35e20f77ea34c4b0ba00441 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/0675fb5e8e31817af73b7b1341e3da65 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/0675fb5e8e31817af73b7b1341e3da65 new file mode 100644 index 00000000..f5be99dc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/0675fb5e8e31817af73b7b1341e3da65 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/067770759bb3e6f5f2471fcce7d1befb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/067770759bb3e6f5f2471fcce7d1befb new file mode 100644 index 00000000..3e0561f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/067770759bb3e6f5f2471fcce7d1befb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06902d31a378bc27aa56bf9b41ad803b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06902d31a378bc27aa56bf9b41ad803b new file mode 100644 index 00000000..d604ab3c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06902d31a378bc27aa56bf9b41ad803b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/069495fa19ba6048c675a2db47d8775d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/069495fa19ba6048c675a2db47d8775d new file mode 100644 index 00000000..62f35c70 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/069495fa19ba6048c675a2db47d8775d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06a993d0a25bd00edaf679f7d74b7581 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06a993d0a25bd00edaf679f7d74b7581 new file mode 100644 index 00000000..2dee7740 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06a993d0a25bd00edaf679f7d74b7581 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06cfc0ff2703d362c91cde99969ed36a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06cfc0ff2703d362c91cde99969ed36a new file mode 100644 index 00000000..24b2e4f6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06cfc0ff2703d362c91cde99969ed36a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06d07018bb232d4ba6d9aa468b298ca3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06d07018bb232d4ba6d9aa468b298ca3 new file mode 100644 index 00000000..8b468a7d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06d07018bb232d4ba6d9aa468b298ca3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06d071fffd6ee792ce94b645a5eca115 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06d071fffd6ee792ce94b645a5eca115 new file mode 100644 index 00000000..53c3eb7c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06d071fffd6ee792ce94b645a5eca115 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06e8b464943e69720ec1271cc730c22b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06e8b464943e69720ec1271cc730c22b new file mode 100644 index 00000000..af3a203e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06e8b464943e69720ec1271cc730c22b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06e965545a552cf6891fb65e130e4fec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06e965545a552cf6891fb65e130e4fec new file mode 100644 index 00000000..8c10bd8a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/06/06e965545a552cf6891fb65e130e4fec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/072c479e57d3946f4cf22994b86544e6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/072c479e57d3946f4cf22994b86544e6 new file mode 100644 index 00000000..ceb534cb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/072c479e57d3946f4cf22994b86544e6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/07430e09388fa4f4e8a2052efc7da17f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/07430e09388fa4f4e8a2052efc7da17f new file mode 100644 index 00000000..af9ec8a9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/07430e09388fa4f4e8a2052efc7da17f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/075135bf06f29f6243bf19227a448eb0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/075135bf06f29f6243bf19227a448eb0 new file mode 100644 index 00000000..656f4f3f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/075135bf06f29f6243bf19227a448eb0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/07669390a252b81871977d15ad9e3f0b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/07669390a252b81871977d15ad9e3f0b new file mode 100644 index 00000000..5d53dc79 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/07669390a252b81871977d15ad9e3f0b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/0795e58912973a0143af6e738e460523 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/0795e58912973a0143af6e738e460523 new file mode 100644 index 00000000..d12023b7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/0795e58912973a0143af6e738e460523 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/07bf420b684a8cab8182230850a4570a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/07bf420b684a8cab8182230850a4570a new file mode 100644 index 00000000..d28204c8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/07bf420b684a8cab8182230850a4570a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/07dd64c2a0ad10eff756b01eee3e8527 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/07dd64c2a0ad10eff756b01eee3e8527 new file mode 100644 index 00000000..e5a20b11 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/07/07dd64c2a0ad10eff756b01eee3e8527 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08030db8c96a6987116108cbd885d541 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08030db8c96a6987116108cbd885d541 new file mode 100644 index 00000000..2b6cb682 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08030db8c96a6987116108cbd885d541 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/080bd57217cd971f549287d3f18d2749 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/080bd57217cd971f549287d3f18d2749 new file mode 100644 index 00000000..fe620189 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/080bd57217cd971f549287d3f18d2749 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08256129118c7ef061093312f7089c12 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08256129118c7ef061093312f7089c12 new file mode 100644 index 00000000..18513287 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08256129118c7ef061093312f7089c12 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08281f964270a10a926fb78ee2871bfd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08281f964270a10a926fb78ee2871bfd new file mode 100644 index 00000000..30c6495a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08281f964270a10a926fb78ee2871bfd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/084dd77f6828d30c0e2a3c46909b418c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/084dd77f6828d30c0e2a3c46909b418c new file mode 100644 index 00000000..700af336 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/084dd77f6828d30c0e2a3c46909b418c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/085174aaff563aea09ca61eed64a7e2b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/085174aaff563aea09ca61eed64a7e2b new file mode 100644 index 00000000..664e72a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/085174aaff563aea09ca61eed64a7e2b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/086763cae25e92feddb66c6b6f666be6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/086763cae25e92feddb66c6b6f666be6 new file mode 100644 index 00000000..ed66e0f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/086763cae25e92feddb66c6b6f666be6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/086aafe546e88218cd597d1f345b13aa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/086aafe546e88218cd597d1f345b13aa new file mode 100644 index 00000000..2fb593ce Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/086aafe546e88218cd597d1f345b13aa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/087918a61e052c467bdc2b490ed872e1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/087918a61e052c467bdc2b490ed872e1 new file mode 100644 index 00000000..3a19958e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/087918a61e052c467bdc2b490ed872e1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/089dd56e8b9a36a79154ce4ced770c69 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/089dd56e8b9a36a79154ce4ced770c69 new file mode 100644 index 00000000..2dfbb67a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/089dd56e8b9a36a79154ce4ced770c69 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08abe65f6ad7d5330d45b8a41b7d1719 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08abe65f6ad7d5330d45b8a41b7d1719 new file mode 100644 index 00000000..b817e4c8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08abe65f6ad7d5330d45b8a41b7d1719 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08b4134e94a8d4bce65b4d9dab493920 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08b4134e94a8d4bce65b4d9dab493920 new file mode 100644 index 00000000..06311b44 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/08/08b4134e94a8d4bce65b4d9dab493920 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/090949700d2ae761566a4b1803176deb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/090949700d2ae761566a4b1803176deb new file mode 100644 index 00000000..c09c5c03 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/090949700d2ae761566a4b1803176deb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/091108d7f47f3614bccbd848e1b29a60 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/091108d7f47f3614bccbd848e1b29a60 new file mode 100644 index 00000000..47b17942 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/091108d7f47f3614bccbd848e1b29a60 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/092033f97cf1516ffdf59ddc25d67a16 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/092033f97cf1516ffdf59ddc25d67a16 new file mode 100644 index 00000000..36b7c7f3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/092033f97cf1516ffdf59ddc25d67a16 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/094d6e6c64abfd71c722f317989b56c3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/094d6e6c64abfd71c722f317989b56c3 new file mode 100644 index 00000000..d099baad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/094d6e6c64abfd71c722f317989b56c3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/095f65252e63f65c36697db6fdbec46c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/095f65252e63f65c36697db6fdbec46c new file mode 100644 index 00000000..5dd09427 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/095f65252e63f65c36697db6fdbec46c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09714ebc8913c36453ac551e6b0cdf97 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09714ebc8913c36453ac551e6b0cdf97 new file mode 100644 index 00000000..e32a4ff1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09714ebc8913c36453ac551e6b0cdf97 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09772123d1ae454b8b88771e842cdacf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09772123d1ae454b8b88771e842cdacf new file mode 100644 index 00000000..a23e2586 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09772123d1ae454b8b88771e842cdacf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/0999a474a6d76ffe277d8cd10b88f6c9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/0999a474a6d76ffe277d8cd10b88f6c9 new file mode 100644 index 00000000..ac6563cb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/0999a474a6d76ffe277d8cd10b88f6c9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/099a183e99bf551a38fb0e3b6c8a9126 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/099a183e99bf551a38fb0e3b6c8a9126 new file mode 100644 index 00000000..7db247e3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/099a183e99bf551a38fb0e3b6c8a9126 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09a2ea4f7ede7a3d5f1c2cee9274e892 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09a2ea4f7ede7a3d5f1c2cee9274e892 new file mode 100644 index 00000000..a314aa29 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09a2ea4f7ede7a3d5f1c2cee9274e892 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09a57f67afb9f53121bc2c445b4e6ce8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09a57f67afb9f53121bc2c445b4e6ce8 new file mode 100644 index 00000000..c6cdf2f7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09a57f67afb9f53121bc2c445b4e6ce8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09ec0718c80abc3173b9cc4d5cee8def b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09ec0718c80abc3173b9cc4d5cee8def new file mode 100644 index 00000000..0dc118b2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09ec0718c80abc3173b9cc4d5cee8def differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09f0e41166d7509a6924656cc48aeadc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09f0e41166d7509a6924656cc48aeadc new file mode 100644 index 00000000..93318b56 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/09/09f0e41166d7509a6924656cc48aeadc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a09d31e3798079dd4e21abb4f538f01 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a09d31e3798079dd4e21abb4f538f01 new file mode 100644 index 00000000..91aa7a9f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a09d31e3798079dd4e21abb4f538f01 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a0feb43e1d5deb872ef534ad7f1d47c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a0feb43e1d5deb872ef534ad7f1d47c new file mode 100644 index 00000000..4d68747a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a0feb43e1d5deb872ef534ad7f1d47c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a18cae745849a309d5d507580d7531b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a18cae745849a309d5d507580d7531b new file mode 100644 index 00000000..2ea874cd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a18cae745849a309d5d507580d7531b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a2d5bc9de53247eec95118920eebe17 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a2d5bc9de53247eec95118920eebe17 new file mode 100644 index 00000000..e5b414e3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a2d5bc9de53247eec95118920eebe17 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a603464c098c70838664e3c5baad3ff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a603464c098c70838664e3c5baad3ff new file mode 100644 index 00000000..bf67e36f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a603464c098c70838664e3c5baad3ff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a66f0aa76e974e0f19fcbd44bce49e7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a66f0aa76e974e0f19fcbd44bce49e7 new file mode 100644 index 00000000..7d6be7ea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a66f0aa76e974e0f19fcbd44bce49e7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a7563c76c7537f0593d517e51eda6b4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a7563c76c7537f0593d517e51eda6b4 new file mode 100644 index 00000000..5f657594 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a7563c76c7537f0593d517e51eda6b4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a8869235f01d42250bf99902082964e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a8869235f01d42250bf99902082964e new file mode 100644 index 00000000..e186f710 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a8869235f01d42250bf99902082964e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a96eb39553503819cd16e263668f5b0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a96eb39553503819cd16e263668f5b0 new file mode 100644 index 00000000..3d2ed162 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0a96eb39553503819cd16e263668f5b0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0aae10ac002bd5fabd6282686f245ba9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0aae10ac002bd5fabd6282686f245ba9 new file mode 100644 index 00000000..b7b762f4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0aae10ac002bd5fabd6282686f245ba9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0ad097cfde09ebf9d2ed343b43ff6899 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0ad097cfde09ebf9d2ed343b43ff6899 new file mode 100644 index 00000000..84138757 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0ad097cfde09ebf9d2ed343b43ff6899 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0aecc718c8bf92fa0b643396ecf5686a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0aecc718c8bf92fa0b643396ecf5686a new file mode 100644 index 00000000..32b07f65 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0aecc718c8bf92fa0b643396ecf5686a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0af4511f8352aa91c71e66319f8f23dc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0af4511f8352aa91c71e66319f8f23dc new file mode 100644 index 00000000..e844d59f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0af4511f8352aa91c71e66319f8f23dc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0af9af1390e76ab66c335a7281c1b098 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0af9af1390e76ab66c335a7281c1b098 new file mode 100644 index 00000000..840f4327 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0af9af1390e76ab66c335a7281c1b098 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0afc067235b74f917c9988fca267cea6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0afc067235b74f917c9988fca267cea6 new file mode 100644 index 00000000..3b4b77d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0a/0afc067235b74f917c9988fca267cea6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b0ee1bc9213bd00c8cc3987df8f2b27 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b0ee1bc9213bd00c8cc3987df8f2b27 new file mode 100644 index 00000000..acc0f9ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b0ee1bc9213bd00c8cc3987df8f2b27 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b1a225d73d59e2bc799017b801fddbb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b1a225d73d59e2bc799017b801fddbb new file mode 100644 index 00000000..8ab0a0d1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b1a225d73d59e2bc799017b801fddbb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b347194fc24987d7d213f208f0da40e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b347194fc24987d7d213f208f0da40e new file mode 100644 index 00000000..c566ea7b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b347194fc24987d7d213f208f0da40e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b3b216c60b1a882d6b257ff19acd406 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b3b216c60b1a882d6b257ff19acd406 new file mode 100644 index 00000000..8033f0cd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b3b216c60b1a882d6b257ff19acd406 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b47f6ba55f16bbd1a74c3515de1bc5e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b47f6ba55f16bbd1a74c3515de1bc5e new file mode 100644 index 00000000..122b44f0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b47f6ba55f16bbd1a74c3515de1bc5e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b490867f759029c5c364cd498514136 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b490867f759029c5c364cd498514136 new file mode 100644 index 00000000..9eb47e04 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b490867f759029c5c364cd498514136 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b5b6a6470cf77821d2075581db3d662 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b5b6a6470cf77821d2075581db3d662 new file mode 100644 index 00000000..112d6eda Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b5b6a6470cf77821d2075581db3d662 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b5fc7adc3d20ab1751b2dd78fd78e72 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b5fc7adc3d20ab1751b2dd78fd78e72 new file mode 100644 index 00000000..5c028682 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b5fc7adc3d20ab1751b2dd78fd78e72 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b6d541143f997eacdde92376a06180a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b6d541143f997eacdde92376a06180a new file mode 100644 index 00000000..34dd0c61 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b6d541143f997eacdde92376a06180a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b7b297cf228a2fc1ffa9a8d68e0cf3c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b7b297cf228a2fc1ffa9a8d68e0cf3c new file mode 100644 index 00000000..e1796251 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b7b297cf228a2fc1ffa9a8d68e0cf3c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b8a4091823ddd6b6ee76ed58f4764eb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b8a4091823ddd6b6ee76ed58f4764eb new file mode 100644 index 00000000..0aa90f1c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0b8a4091823ddd6b6ee76ed58f4764eb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0ba15f832b3b1d868bfcfc10677d01f6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0ba15f832b3b1d868bfcfc10677d01f6 new file mode 100644 index 00000000..e7a71c1a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0ba15f832b3b1d868bfcfc10677d01f6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0ba45e65d7b8fdb6440ea2c4c4ff7d0b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0ba45e65d7b8fdb6440ea2c4c4ff7d0b new file mode 100644 index 00000000..128ae5bd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0ba45e65d7b8fdb6440ea2c4c4ff7d0b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0ba49f889bc78c791168c4d1386ac817 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0ba49f889bc78c791168c4d1386ac817 new file mode 100644 index 00000000..ee340c5a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0ba49f889bc78c791168c4d1386ac817 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0bb29ba82a1c27f902dbc0b4e92751e3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0bb29ba82a1c27f902dbc0b4e92751e3 new file mode 100644 index 00000000..d6fd08d7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0bb29ba82a1c27f902dbc0b4e92751e3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0bb7f889715f64d033b564a33849d82d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0bb7f889715f64d033b564a33849d82d new file mode 100644 index 00000000..514d7c3b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0bb7f889715f64d033b564a33849d82d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0bc4a9dff1e5c8a6466f19ed73e9c5f4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0bc4a9dff1e5c8a6466f19ed73e9c5f4 new file mode 100644 index 00000000..afbecacb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0bc4a9dff1e5c8a6466f19ed73e9c5f4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0be8dfe1faca8381ad31443de6f9465f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0be8dfe1faca8381ad31443de6f9465f new file mode 100644 index 00000000..ac0ecd55 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0b/0be8dfe1faca8381ad31443de6f9465f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c0fd6a89105a195269b697237f4c33a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c0fd6a89105a195269b697237f4c33a new file mode 100644 index 00000000..24c33d5e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c0fd6a89105a195269b697237f4c33a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c15d170bbb96d333e33bbac6c6d8678 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c15d170bbb96d333e33bbac6c6d8678 new file mode 100644 index 00000000..d1952fb1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c15d170bbb96d333e33bbac6c6d8678 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c1912474934f28fc9607f1437a2b720 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c1912474934f28fc9607f1437a2b720 new file mode 100644 index 00000000..37db8721 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c1912474934f28fc9607f1437a2b720 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c268e8fe21528b934240a4f461406fa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c268e8fe21528b934240a4f461406fa new file mode 100644 index 00000000..0b9c4a62 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c268e8fe21528b934240a4f461406fa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c2fca04347f3a86f42c1f345038db7c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c2fca04347f3a86f42c1f345038db7c new file mode 100644 index 00000000..7a9b9a1f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c2fca04347f3a86f42c1f345038db7c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c31961dc1cde27dde29116a12cb7466 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c31961dc1cde27dde29116a12cb7466 new file mode 100644 index 00000000..1b891dae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c31961dc1cde27dde29116a12cb7466 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c341811cab7b9f51560b6ed6b9f6891 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c341811cab7b9f51560b6ed6b9f6891 new file mode 100644 index 00000000..9d80c484 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c341811cab7b9f51560b6ed6b9f6891 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c3444731dd10907968ef811626c7f57 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c3444731dd10907968ef811626c7f57 new file mode 100644 index 00000000..14126134 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c3444731dd10907968ef811626c7f57 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c4655f439f7336e965d110e626cc9a1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c4655f439f7336e965d110e626cc9a1 new file mode 100644 index 00000000..d580dfc3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c4655f439f7336e965d110e626cc9a1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c76c59bb5e964bd8ffe6e9eddcfc6df b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c76c59bb5e964bd8ffe6e9eddcfc6df new file mode 100644 index 00000000..7728e46f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c76c59bb5e964bd8ffe6e9eddcfc6df differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c816db765704e421719ccdb4d99fe62 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c816db765704e421719ccdb4d99fe62 new file mode 100644 index 00000000..c7f76880 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c816db765704e421719ccdb4d99fe62 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c86ecc57cd9c6456ba733e84a5725dd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c86ecc57cd9c6456ba733e84a5725dd new file mode 100644 index 00000000..20873b60 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c86ecc57cd9c6456ba733e84a5725dd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c8b16e4dbba750c25338702d6f87ea2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c8b16e4dbba750c25338702d6f87ea2 new file mode 100644 index 00000000..9070847d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0c8b16e4dbba750c25338702d6f87ea2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0ca5290c64623aa924b8ac255631d88c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0ca5290c64623aa924b8ac255631d88c new file mode 100644 index 00000000..4c0c062c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0ca5290c64623aa924b8ac255631d88c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cab86f976cee4eeebe9373472737dde b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cab86f976cee4eeebe9373472737dde new file mode 100644 index 00000000..a8ce7f1b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cab86f976cee4eeebe9373472737dde differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cbd6dbef97672fd9ded961eb06126b0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cbd6dbef97672fd9ded961eb06126b0 new file mode 100644 index 00000000..c9903e00 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cbd6dbef97672fd9ded961eb06126b0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0ce5ff58f0b81fd13ee8468c9503399e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0ce5ff58f0b81fd13ee8468c9503399e new file mode 100644 index 00000000..9414e0c3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0ce5ff58f0b81fd13ee8468c9503399e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cf63e105d41964f3bab8299cf069aca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cf63e105d41964f3bab8299cf069aca new file mode 100644 index 00000000..13dd470d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cf63e105d41964f3bab8299cf069aca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cf750f61febd689c41fc8e75956dff9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cf750f61febd689c41fc8e75956dff9 new file mode 100644 index 00000000..63d3acfd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cf750f61febd689c41fc8e75956dff9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cfed0d53a0ad7750ad4a17190177c3f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cfed0d53a0ad7750ad4a17190177c3f new file mode 100644 index 00000000..b5a4e1a1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0c/0cfed0d53a0ad7750ad4a17190177c3f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d07ff6048b13d63052d5ea8ea7f5812 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d07ff6048b13d63052d5ea8ea7f5812 new file mode 100644 index 00000000..40fed406 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d07ff6048b13d63052d5ea8ea7f5812 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d0a24c40f0c57c131cd62e4328dca84 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d0a24c40f0c57c131cd62e4328dca84 new file mode 100644 index 00000000..bde391d5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d0a24c40f0c57c131cd62e4328dca84 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d1925a8151b9817bcdf200363f890b6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d1925a8151b9817bcdf200363f890b6 new file mode 100644 index 00000000..a68093dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d1925a8151b9817bcdf200363f890b6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d19e0aa7387e3ed45d1651bcefd734d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d19e0aa7387e3ed45d1651bcefd734d new file mode 100644 index 00000000..d6578f3e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d19e0aa7387e3ed45d1651bcefd734d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d4e70e96a60e47c9b4fe8545c16c972 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d4e70e96a60e47c9b4fe8545c16c972 new file mode 100644 index 00000000..987e5797 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d4e70e96a60e47c9b4fe8545c16c972 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d50e19e537c9d4823a22d340ba74aa9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d50e19e537c9d4823a22d340ba74aa9 new file mode 100644 index 00000000..db21bd2e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d50e19e537c9d4823a22d340ba74aa9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d6e18869847ef6f3e8066a48431b7bf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d6e18869847ef6f3e8066a48431b7bf new file mode 100644 index 00000000..9b26941f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d6e18869847ef6f3e8066a48431b7bf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d7fdcb28b4ccc1a8157c5e0e2016892 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d7fdcb28b4ccc1a8157c5e0e2016892 new file mode 100644 index 00000000..76b73aaf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d7fdcb28b4ccc1a8157c5e0e2016892 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d82cbb66bd8512472139b58d2f61b51 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d82cbb66bd8512472139b58d2f61b51 new file mode 100644 index 00000000..362ea634 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d82cbb66bd8512472139b58d2f61b51 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d833ec2cfec9c696647fdbcb70497b2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d833ec2cfec9c696647fdbcb70497b2 new file mode 100644 index 00000000..5424dcb8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d833ec2cfec9c696647fdbcb70497b2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d835a6427d89c258ed1451dbc70ece0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d835a6427d89c258ed1451dbc70ece0 new file mode 100644 index 00000000..a85b9415 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d835a6427d89c258ed1451dbc70ece0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d92a96a42b1cc670230482d7bf2b59b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d92a96a42b1cc670230482d7bf2b59b new file mode 100644 index 00000000..2382f49b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0d92a96a42b1cc670230482d7bf2b59b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0da02664a1ec690b8b16e0c5a534d4fe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0da02664a1ec690b8b16e0c5a534d4fe new file mode 100644 index 00000000..be231858 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0da02664a1ec690b8b16e0c5a534d4fe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0dbed976d53810622f5fbb166c2f159c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0dbed976d53810622f5fbb166c2f159c new file mode 100644 index 00000000..007fedb5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0dbed976d53810622f5fbb166c2f159c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0dd6f858595ae49cdfd1d48dcb92e674 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0dd6f858595ae49cdfd1d48dcb92e674 new file mode 100644 index 00000000..8603472b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0dd6f858595ae49cdfd1d48dcb92e674 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0dfa0fc6d2b3b0ddf919f18eb72e58a3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0dfa0fc6d2b3b0ddf919f18eb72e58a3 new file mode 100644 index 00000000..de7292d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0d/0dfa0fc6d2b3b0ddf919f18eb72e58a3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e05bd592fced72c2caf50a74412d9a2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e05bd592fced72c2caf50a74412d9a2 new file mode 100644 index 00000000..6f0f7149 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e05bd592fced72c2caf50a74412d9a2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e075233f56a1f9deb6528a44639f8c9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e075233f56a1f9deb6528a44639f8c9 new file mode 100644 index 00000000..0fca565c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e075233f56a1f9deb6528a44639f8c9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e15a4aaee62ed9624f03cea97824745 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e15a4aaee62ed9624f03cea97824745 new file mode 100644 index 00000000..47bb3c32 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e15a4aaee62ed9624f03cea97824745 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e1b9191dfd1926abc47499024dfcf9d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e1b9191dfd1926abc47499024dfcf9d new file mode 100644 index 00000000..9411f1a0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e1b9191dfd1926abc47499024dfcf9d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e2db2f0dd1b3a04b9c9c6efd1e19665 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e2db2f0dd1b3a04b9c9c6efd1e19665 new file mode 100644 index 00000000..719cd6ea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e2db2f0dd1b3a04b9c9c6efd1e19665 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e390a32a1ac3bdd6aef0906fd98ac62 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e390a32a1ac3bdd6aef0906fd98ac62 new file mode 100644 index 00000000..56fa5f9c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e390a32a1ac3bdd6aef0906fd98ac62 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e4bd8a81e7b1b58c19ee4bda4a7c533 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e4bd8a81e7b1b58c19ee4bda4a7c533 new file mode 100644 index 00000000..056e5346 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e4bd8a81e7b1b58c19ee4bda4a7c533 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e58ccccec64df34a63676369e5f450a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e58ccccec64df34a63676369e5f450a new file mode 100644 index 00000000..8a8771d9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e58ccccec64df34a63676369e5f450a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e5bf7459bd8096ebb452200c22faac4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e5bf7459bd8096ebb452200c22faac4 new file mode 100644 index 00000000..c9c06a30 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e5bf7459bd8096ebb452200c22faac4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e6b542ea26fe969a07d01d41dbb5990 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e6b542ea26fe969a07d01d41dbb5990 new file mode 100644 index 00000000..0007546b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e6b542ea26fe969a07d01d41dbb5990 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e6e7e145591cd35129d709644f79515 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e6e7e145591cd35129d709644f79515 new file mode 100644 index 00000000..fcc5dcb0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0e6e7e145591cd35129d709644f79515 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ebb25113710d7397bf33cde0092af96 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ebb25113710d7397bf33cde0092af96 new file mode 100644 index 00000000..a7820836 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ebb25113710d7397bf33cde0092af96 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0eccf3cb80313350e3bc10daf717eb08 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0eccf3cb80313350e3bc10daf717eb08 new file mode 100644 index 00000000..095b40c1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0eccf3cb80313350e3bc10daf717eb08 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ed46e178368d833e8797cf5a07a13d7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ed46e178368d833e8797cf5a07a13d7 new file mode 100644 index 00000000..80c40abd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ed46e178368d833e8797cf5a07a13d7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0edbe9623fe2222244dc3d03175a1552 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0edbe9623fe2222244dc3d03175a1552 new file mode 100644 index 00000000..b2fdeaa5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0edbe9623fe2222244dc3d03175a1552 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ee331bd365b1a18027270aaddaa7cd6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ee331bd365b1a18027270aaddaa7cd6 new file mode 100644 index 00000000..f40025a2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ee331bd365b1a18027270aaddaa7cd6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ee54eb14b4ed5025715b26bb677fdc0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ee54eb14b4ed5025715b26bb677fdc0 new file mode 100644 index 00000000..282c772d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ee54eb14b4ed5025715b26bb677fdc0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ef01f28a3aa5294da3992174c3437aa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ef01f28a3aa5294da3992174c3437aa new file mode 100644 index 00000000..3be9b86b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0e/0ef01f28a3aa5294da3992174c3437aa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f1101ccec9e70647d958ac496f960dd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f1101ccec9e70647d958ac496f960dd new file mode 100644 index 00000000..1b5771d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f1101ccec9e70647d958ac496f960dd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f3319fb912e2763a25cfef06c0bf46d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f3319fb912e2763a25cfef06c0bf46d new file mode 100644 index 00000000..a613ffb0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f3319fb912e2763a25cfef06c0bf46d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f3c3245dfbcb0edfd04586998f2ed56 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f3c3245dfbcb0edfd04586998f2ed56 new file mode 100644 index 00000000..094ddf9a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f3c3245dfbcb0edfd04586998f2ed56 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f453c15a9447108202e62931eb004fd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f453c15a9447108202e62931eb004fd new file mode 100644 index 00000000..f6a50811 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f453c15a9447108202e62931eb004fd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f4b1108b74de4a8f0b49ab2b83d297d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f4b1108b74de4a8f0b49ab2b83d297d new file mode 100644 index 00000000..df63a0bc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f4b1108b74de4a8f0b49ab2b83d297d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f84ef07959082be081ae977ce70b06f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f84ef07959082be081ae977ce70b06f new file mode 100644 index 00000000..b5bd7942 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f84ef07959082be081ae977ce70b06f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f85a576e70abc7e0c49d7f56f463265 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f85a576e70abc7e0c49d7f56f463265 new file mode 100644 index 00000000..5278907f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0f85a576e70abc7e0c49d7f56f463265 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0fa4563fa260174610e709d5dceec6fb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0fa4563fa260174610e709d5dceec6fb new file mode 100644 index 00000000..a511b399 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0fa4563fa260174610e709d5dceec6fb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0fb07399bad0db3807dc605bda0ede0d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0fb07399bad0db3807dc605bda0ede0d new file mode 100644 index 00000000..7c0f2d5f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0fb07399bad0db3807dc605bda0ede0d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0fb11843e3490606b3048a53e33c35a1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0fb11843e3490606b3048a53e33c35a1 new file mode 100644 index 00000000..f31ac7f8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0fb11843e3490606b3048a53e33c35a1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0feec751de36d28c8cb659bb4521f4c6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0feec751de36d28c8cb659bb4521f4c6 new file mode 100644 index 00000000..b97dfa36 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/0f/0feec751de36d28c8cb659bb4521f4c6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/101b5a5b1a3a7401e29d8883eafd6108 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/101b5a5b1a3a7401e29d8883eafd6108 new file mode 100644 index 00000000..3d69ef29 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/101b5a5b1a3a7401e29d8883eafd6108 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10331cdbac2227b9479ee2d8a7edc68e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10331cdbac2227b9479ee2d8a7edc68e new file mode 100644 index 00000000..90b42ad9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10331cdbac2227b9479ee2d8a7edc68e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10334895917a1797ae2122f1f7b755aa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10334895917a1797ae2122f1f7b755aa new file mode 100644 index 00000000..78d5f178 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10334895917a1797ae2122f1f7b755aa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/1043d58d4b799d5a2b6d0355b45a5daf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/1043d58d4b799d5a2b6d0355b45a5daf new file mode 100644 index 00000000..10a41929 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/1043d58d4b799d5a2b6d0355b45a5daf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/105aedfab7e819ef528755a46895cd41 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/105aedfab7e819ef528755a46895cd41 new file mode 100644 index 00000000..bbeeac33 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/105aedfab7e819ef528755a46895cd41 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/108869d10e8432e72223548acc693b2a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/108869d10e8432e72223548acc693b2a new file mode 100644 index 00000000..8dc34d00 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/108869d10e8432e72223548acc693b2a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/1090834abf64881dc49e7c62b182c685 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/1090834abf64881dc49e7c62b182c685 new file mode 100644 index 00000000..35163836 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/1090834abf64881dc49e7c62b182c685 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10a0b5c9fbbacdadb4bdb2f2794c2093 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10a0b5c9fbbacdadb4bdb2f2794c2093 new file mode 100644 index 00000000..9d6ffd2b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10a0b5c9fbbacdadb4bdb2f2794c2093 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10b3e76428c7244544b6c5dd17b65c19 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10b3e76428c7244544b6c5dd17b65c19 new file mode 100644 index 00000000..e0d436e9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10b3e76428c7244544b6c5dd17b65c19 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10ce6c23d9de7542334cca55a7b79d50 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10ce6c23d9de7542334cca55a7b79d50 new file mode 100644 index 00000000..0993d432 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10ce6c23d9de7542334cca55a7b79d50 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10d69e2d5083a64ff9e41bde8029b1c9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10d69e2d5083a64ff9e41bde8029b1c9 new file mode 100644 index 00000000..468da03d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10d69e2d5083a64ff9e41bde8029b1c9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10d95dce34f1ae4b867758410058ca2a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10d95dce34f1ae4b867758410058ca2a new file mode 100644 index 00000000..a6d74639 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10d95dce34f1ae4b867758410058ca2a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10f089d1c4628a9d06b3419eac78608c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10f089d1c4628a9d06b3419eac78608c new file mode 100644 index 00000000..f9a79535 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/10/10f089d1c4628a9d06b3419eac78608c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/110763e87abf671210c6e26aff2bd011 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/110763e87abf671210c6e26aff2bd011 new file mode 100644 index 00000000..a818bbb1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/110763e87abf671210c6e26aff2bd011 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/112fa3001d5a3d92976555198c530b94 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/112fa3001d5a3d92976555198c530b94 new file mode 100644 index 00000000..d15ea16f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/112fa3001d5a3d92976555198c530b94 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/1134805f77c0a70ad51b7a6b648bf7e8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/1134805f77c0a70ad51b7a6b648bf7e8 new file mode 100644 index 00000000..8fb7034c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/1134805f77c0a70ad51b7a6b648bf7e8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11359679835a9209358f9c0e47036dae b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11359679835a9209358f9c0e47036dae new file mode 100644 index 00000000..3adaa27f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11359679835a9209358f9c0e47036dae differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/115328cd727268f3ee7fa6163a31e55a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/115328cd727268f3ee7fa6163a31e55a new file mode 100644 index 00000000..daa1d228 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/115328cd727268f3ee7fa6163a31e55a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/1159e9379b30c2c27d84a6e2f9c1295b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/1159e9379b30c2c27d84a6e2f9c1295b new file mode 100644 index 00000000..c4232475 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/1159e9379b30c2c27d84a6e2f9c1295b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/1160729f9077890113de9da9f13a7ab8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/1160729f9077890113de9da9f13a7ab8 new file mode 100644 index 00000000..6baf3818 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/1160729f9077890113de9da9f13a7ab8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/116904c2fc13fe90d433b302ca11d267 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/116904c2fc13fe90d433b302ca11d267 new file mode 100644 index 00000000..8461459b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/116904c2fc13fe90d433b302ca11d267 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11848cfdb556e1c549524976b1294f7d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11848cfdb556e1c549524976b1294f7d new file mode 100644 index 00000000..2496f6e9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11848cfdb556e1c549524976b1294f7d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11a7e67b6f7de551fe10df42637a8dc5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11a7e67b6f7de551fe10df42637a8dc5 new file mode 100644 index 00000000..9fab910c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11a7e67b6f7de551fe10df42637a8dc5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11b058b72e41540700160100bba634d0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11b058b72e41540700160100bba634d0 new file mode 100644 index 00000000..3bce6b41 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11b058b72e41540700160100bba634d0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11b259914d1a6472dc296d52b9cdaf73 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11b259914d1a6472dc296d52b9cdaf73 new file mode 100644 index 00000000..e53a89ed Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11b259914d1a6472dc296d52b9cdaf73 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11b4c67a029139db52390118f6dad13e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11b4c67a029139db52390118f6dad13e new file mode 100644 index 00000000..63c5adc6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11b4c67a029139db52390118f6dad13e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11b6a33150f0cc01e46c1f690f8ce621 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11b6a33150f0cc01e46c1f690f8ce621 new file mode 100644 index 00000000..50085837 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11b6a33150f0cc01e46c1f690f8ce621 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11cbb89b5153055e58e88acaf67e2610 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11cbb89b5153055e58e88acaf67e2610 new file mode 100644 index 00000000..d240afa0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11cbb89b5153055e58e88acaf67e2610 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11f3ce63d1a6e888ef9e249a951da048 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11f3ce63d1a6e888ef9e249a951da048 new file mode 100644 index 00000000..43088712 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/11/11f3ce63d1a6e888ef9e249a951da048 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1206006944751299f6a5ea5b850d64ce b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1206006944751299f6a5ea5b850d64ce new file mode 100644 index 00000000..96d852e0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1206006944751299f6a5ea5b850d64ce differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12145b5fd7446c46fe8cb08cb664858d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12145b5fd7446c46fe8cb08cb664858d new file mode 100644 index 00000000..a31fc66b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12145b5fd7446c46fe8cb08cb664858d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1242ea09bcb7967924a6bc6b31503375 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1242ea09bcb7967924a6bc6b31503375 new file mode 100644 index 00000000..9aea976c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1242ea09bcb7967924a6bc6b31503375 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1256159387c444de140afb1ecf278420 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1256159387c444de140afb1ecf278420 new file mode 100644 index 00000000..d5075512 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1256159387c444de140afb1ecf278420 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/126257111f0aa7f0b97f36ae148ba511 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/126257111f0aa7f0b97f36ae148ba511 new file mode 100644 index 00000000..58d7e695 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/126257111f0aa7f0b97f36ae148ba511 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1262d6be63e6114b10734939efdf6f0e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1262d6be63e6114b10734939efdf6f0e new file mode 100644 index 00000000..c1334c4d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1262d6be63e6114b10734939efdf6f0e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/127255c66faba4aa0d2317bef11dde4c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/127255c66faba4aa0d2317bef11dde4c new file mode 100644 index 00000000..451c739d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/127255c66faba4aa0d2317bef11dde4c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1286734b276a1d6e1a75034064116ea8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1286734b276a1d6e1a75034064116ea8 new file mode 100644 index 00000000..15fc48e1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/1286734b276a1d6e1a75034064116ea8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/128871ae4a7ce86b068319f46d372852 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/128871ae4a7ce86b068319f46d372852 new file mode 100644 index 00000000..ecb0655d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/128871ae4a7ce86b068319f46d372852 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12a7e9cec1092d29134b8cb327cb14af b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12a7e9cec1092d29134b8cb327cb14af new file mode 100644 index 00000000..6f63f286 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12a7e9cec1092d29134b8cb327cb14af differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12ae7e2d184b310dfc1f4c9917408b22 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12ae7e2d184b310dfc1f4c9917408b22 new file mode 100644 index 00000000..e110d9f6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12ae7e2d184b310dfc1f4c9917408b22 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12cc39b857366bb66a5462d74bc4d1cc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12cc39b857366bb66a5462d74bc4d1cc new file mode 100644 index 00000000..19d04ee3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12cc39b857366bb66a5462d74bc4d1cc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12d23d82be539e9d51464e574edde68c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12d23d82be539e9d51464e574edde68c new file mode 100644 index 00000000..aec385c7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12d23d82be539e9d51464e574edde68c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12f82e1d16bafa534871143b1696446b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12f82e1d16bafa534871143b1696446b new file mode 100644 index 00000000..19e6047f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/12/12f82e1d16bafa534871143b1696446b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/130105aa7cc1e0103ec529a97a2a4653 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/130105aa7cc1e0103ec529a97a2a4653 new file mode 100644 index 00000000..3beee74e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/130105aa7cc1e0103ec529a97a2a4653 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1315297061f1fee5c92eed1d78d73439 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1315297061f1fee5c92eed1d78d73439 new file mode 100644 index 00000000..91684fe7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1315297061f1fee5c92eed1d78d73439 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1323113789988a42a579091f8240428a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1323113789988a42a579091f8240428a new file mode 100644 index 00000000..0cb1c2a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1323113789988a42a579091f8240428a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1325ac915d43e512dc3abc9b44512bdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1325ac915d43e512dc3abc9b44512bdb new file mode 100644 index 00000000..b9530de6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1325ac915d43e512dc3abc9b44512bdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/132f92502c14b8d673f6a1507b0df716 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/132f92502c14b8d673f6a1507b0df716 new file mode 100644 index 00000000..eb82fcd9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/132f92502c14b8d673f6a1507b0df716 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13359ed4394c380e312cf3cf4e9c1794 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13359ed4394c380e312cf3cf4e9c1794 new file mode 100644 index 00000000..c34c360d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13359ed4394c380e312cf3cf4e9c1794 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1352f8b13683d7e2c7bbf785d5fdb392 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1352f8b13683d7e2c7bbf785d5fdb392 new file mode 100644 index 00000000..a1a98a3c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1352f8b13683d7e2c7bbf785d5fdb392 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1356bc12c495e9202c17b82f2a429225 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1356bc12c495e9202c17b82f2a429225 new file mode 100644 index 00000000..3b02100d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1356bc12c495e9202c17b82f2a429225 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1371ec770b8cf7e3daa0b1e6f80e366e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1371ec770b8cf7e3daa0b1e6f80e366e new file mode 100644 index 00000000..091620eb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/1371ec770b8cf7e3daa0b1e6f80e366e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13a285abcbc0ae98999d825f63d3d797 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13a285abcbc0ae98999d825f63d3d797 new file mode 100644 index 00000000..b1a29fc0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13a285abcbc0ae98999d825f63d3d797 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13b3d2088891540ed77241a271ae1ad4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13b3d2088891540ed77241a271ae1ad4 new file mode 100644 index 00000000..b17759a8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13b3d2088891540ed77241a271ae1ad4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13e0596018872eba1f4f5f18af2de70e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13e0596018872eba1f4f5f18af2de70e new file mode 100644 index 00000000..803408f2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13e0596018872eba1f4f5f18af2de70e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13e84022bcea0955f6fa1e3f6a4aa93d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13e84022bcea0955f6fa1e3f6a4aa93d new file mode 100644 index 00000000..f9ef446c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13e84022bcea0955f6fa1e3f6a4aa93d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13ed696eaf99981fc82eeb0080e30d7e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13ed696eaf99981fc82eeb0080e30d7e new file mode 100644 index 00000000..ac819881 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13ed696eaf99981fc82eeb0080e30d7e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13f43e550b8186366b1e09e72aa88fd2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13f43e550b8186366b1e09e72aa88fd2 new file mode 100644 index 00000000..f7711bc5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13f43e550b8186366b1e09e72aa88fd2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13fa5bc99ddcf51d7e63ccce21515110 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13fa5bc99ddcf51d7e63ccce21515110 new file mode 100644 index 00000000..c9133fe1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/13/13fa5bc99ddcf51d7e63ccce21515110 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/1419c5db60547c3ff7b111549bf326f1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/1419c5db60547c3ff7b111549bf326f1 new file mode 100644 index 00000000..867a489c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/1419c5db60547c3ff7b111549bf326f1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14315f5ba5f324928b4fa6a31d547422 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14315f5ba5f324928b4fa6a31d547422 new file mode 100644 index 00000000..5e9c45bb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14315f5ba5f324928b4fa6a31d547422 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14585bb6d9ec2546f42a078fc297d0fe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14585bb6d9ec2546f42a078fc297d0fe new file mode 100644 index 00000000..2d79b443 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14585bb6d9ec2546f42a078fc297d0fe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/1459a84bb5e9186de710adf240dde467 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/1459a84bb5e9186de710adf240dde467 new file mode 100644 index 00000000..b2f066da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/1459a84bb5e9186de710adf240dde467 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14679d48d032eda484cb114db9047d25 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14679d48d032eda484cb114db9047d25 new file mode 100644 index 00000000..a8e614d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14679d48d032eda484cb114db9047d25 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/149daac2f53dc0573bf3d99d2e20effa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/149daac2f53dc0573bf3d99d2e20effa new file mode 100644 index 00000000..aa5c0418 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/149daac2f53dc0573bf3d99d2e20effa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14a4919d9b6f79a901395e172c0ee8c1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14a4919d9b6f79a901395e172c0ee8c1 new file mode 100644 index 00000000..80a1a69a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14a4919d9b6f79a901395e172c0ee8c1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14b34f97b9de047a023584b030bbdcd4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14b34f97b9de047a023584b030bbdcd4 new file mode 100644 index 00000000..2acee8ac Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14b34f97b9de047a023584b030bbdcd4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14d09bd963acf8e0395be6eb660697e9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14d09bd963acf8e0395be6eb660697e9 new file mode 100644 index 00000000..ee988e56 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14d09bd963acf8e0395be6eb660697e9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14ef2710495e5404f94231986b9487c6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14ef2710495e5404f94231986b9487c6 new file mode 100644 index 00000000..3093513e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14ef2710495e5404f94231986b9487c6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14f26b73f794cf0d2a1226814d987558 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14f26b73f794cf0d2a1226814d987558 new file mode 100644 index 00000000..56a0ec12 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14f26b73f794cf0d2a1226814d987558 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14ff83a9156e1c801d820d4986a1eedb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14ff83a9156e1c801d820d4986a1eedb new file mode 100644 index 00000000..d0a0b19d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/14/14ff83a9156e1c801d820d4986a1eedb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/1508c1e7b66602f9e3c77b1803a311c6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/1508c1e7b66602f9e3c77b1803a311c6 new file mode 100644 index 00000000..41a3fd47 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/1508c1e7b66602f9e3c77b1803a311c6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/151eb8ef216edf296a34148b9403515c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/151eb8ef216edf296a34148b9403515c new file mode 100644 index 00000000..8ee6fe11 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/151eb8ef216edf296a34148b9403515c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/152cab113002a0ecee6763eb160044ac b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/152cab113002a0ecee6763eb160044ac new file mode 100644 index 00000000..15a62114 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/152cab113002a0ecee6763eb160044ac differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/1535b914a9310ef28dcb2c8e4d53a61a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/1535b914a9310ef28dcb2c8e4d53a61a new file mode 100644 index 00000000..055624ed Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/1535b914a9310ef28dcb2c8e4d53a61a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/153e5fa76612f349946dd239888502d1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/153e5fa76612f349946dd239888502d1 new file mode 100644 index 00000000..2175f8c7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/153e5fa76612f349946dd239888502d1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/1549bed1d2d0b8478cff48177392c32b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/1549bed1d2d0b8478cff48177392c32b new file mode 100644 index 00000000..b3bb6486 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/1549bed1d2d0b8478cff48177392c32b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/154a1dcb938e969ff94fffdb5f1ef291 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/154a1dcb938e969ff94fffdb5f1ef291 new file mode 100644 index 00000000..304e10bb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/154a1dcb938e969ff94fffdb5f1ef291 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/155bd71d982e503bcc91d972937e8ec3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/155bd71d982e503bcc91d972937e8ec3 new file mode 100644 index 00000000..baf3ae09 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/155bd71d982e503bcc91d972937e8ec3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/156e3e5af7d2f5349cc9e55386c8bb7c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/156e3e5af7d2f5349cc9e55386c8bb7c new file mode 100644 index 00000000..7ade157a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/156e3e5af7d2f5349cc9e55386c8bb7c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15ae3416636f874eed5d6bf9cb0927ea b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15ae3416636f874eed5d6bf9cb0927ea new file mode 100644 index 00000000..016c8383 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15ae3416636f874eed5d6bf9cb0927ea differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15afc9d800143bc2ac86c7f929ae0d0e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15afc9d800143bc2ac86c7f929ae0d0e new file mode 100644 index 00000000..6e077336 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15afc9d800143bc2ac86c7f929ae0d0e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15bde5e5865c5e58c35338c341287db8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15bde5e5865c5e58c35338c341287db8 new file mode 100644 index 00000000..33ee19a3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15bde5e5865c5e58c35338c341287db8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15c532931084686b879d298d4d65c928 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15c532931084686b879d298d4d65c928 new file mode 100644 index 00000000..7ec65e9b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15c532931084686b879d298d4d65c928 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15d0d67b6d729f792e47e73971eb3b89 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15d0d67b6d729f792e47e73971eb3b89 new file mode 100644 index 00000000..5b659cb6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15d0d67b6d729f792e47e73971eb3b89 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15da969d9189cc95fc48453dc8b96b3c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15da969d9189cc95fc48453dc8b96b3c new file mode 100644 index 00000000..de8150be Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15da969d9189cc95fc48453dc8b96b3c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15e01c1b7cf3d8db974db3729f79ee36 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15e01c1b7cf3d8db974db3729f79ee36 new file mode 100644 index 00000000..0c36d090 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15e01c1b7cf3d8db974db3729f79ee36 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15e48870f2decb125841e68c48530aeb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15e48870f2decb125841e68c48530aeb new file mode 100644 index 00000000..bfdd7180 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/15/15e48870f2decb125841e68c48530aeb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/161a69b284babff27bb61fd14010ba0a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/161a69b284babff27bb61fd14010ba0a new file mode 100644 index 00000000..84f7ac66 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/161a69b284babff27bb61fd14010ba0a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/1624bb96f5df5319cd0c517148511603 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/1624bb96f5df5319cd0c517148511603 new file mode 100644 index 00000000..16c32c40 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/1624bb96f5df5319cd0c517148511603 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/162870f9f1607fa384d1e10d92b683c0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/162870f9f1607fa384d1e10d92b683c0 new file mode 100644 index 00000000..c5307162 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/162870f9f1607fa384d1e10d92b683c0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/162ffbe02b877e34d070ff6c6cb65c10 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/162ffbe02b877e34d070ff6c6cb65c10 new file mode 100644 index 00000000..9e3ca730 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/162ffbe02b877e34d070ff6c6cb65c10 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/1640498abd006ba90b90e905a3a3e120 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/1640498abd006ba90b90e905a3a3e120 new file mode 100644 index 00000000..6b78f0de Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/1640498abd006ba90b90e905a3a3e120 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16505a152a3152d96e37c25e3d496314 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16505a152a3152d96e37c25e3d496314 new file mode 100644 index 00000000..b019411a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16505a152a3152d96e37c25e3d496314 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/165a572fa7bb28a868db2b9319947d1a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/165a572fa7bb28a868db2b9319947d1a new file mode 100644 index 00000000..0f8c27dc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/165a572fa7bb28a868db2b9319947d1a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/166a09bc5803e696f4add4cad805589b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/166a09bc5803e696f4add4cad805589b new file mode 100644 index 00000000..b27e756d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/166a09bc5803e696f4add4cad805589b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/167bcf8e448d8c57e780b859ae42fd34 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/167bcf8e448d8c57e780b859ae42fd34 new file mode 100644 index 00000000..dbd1ae69 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/167bcf8e448d8c57e780b859ae42fd34 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/167ecef03a6dd3c8f7f53e5a11f75301 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/167ecef03a6dd3c8f7f53e5a11f75301 new file mode 100644 index 00000000..56b580dc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/167ecef03a6dd3c8f7f53e5a11f75301 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/1687625fcd4f05b69668b8de1ce0b8ee b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/1687625fcd4f05b69668b8de1ce0b8ee new file mode 100644 index 00000000..b92f9af3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/1687625fcd4f05b69668b8de1ce0b8ee differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/168be25bec0772ac99c8c8496fd4b765 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/168be25bec0772ac99c8c8496fd4b765 new file mode 100644 index 00000000..3a376788 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/168be25bec0772ac99c8c8496fd4b765 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/169000010494bb9c78edc59538e21b85 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/169000010494bb9c78edc59538e21b85 new file mode 100644 index 00000000..057bed9d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/169000010494bb9c78edc59538e21b85 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/169723df052aa8357256010703389f7a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/169723df052aa8357256010703389f7a new file mode 100644 index 00000000..c671b9e7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/169723df052aa8357256010703389f7a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/169fbba4378592a37481c7f739893e30 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/169fbba4378592a37481c7f739893e30 new file mode 100644 index 00000000..08ff5ff1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/169fbba4378592a37481c7f739893e30 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16afeb8a0736dd328a6ceba829d577a0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16afeb8a0736dd328a6ceba829d577a0 new file mode 100644 index 00000000..cbd9d9d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16afeb8a0736dd328a6ceba829d577a0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16c39953b979d60137569c06ecd69c84 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16c39953b979d60137569c06ecd69c84 new file mode 100644 index 00000000..3b969d3f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16c39953b979d60137569c06ecd69c84 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16d4825ee1a91532c66353cb4f5b0dae b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16d4825ee1a91532c66353cb4f5b0dae new file mode 100644 index 00000000..448ca5b4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16d4825ee1a91532c66353cb4f5b0dae differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16e072f2afa8202c5fde8f64adc68588 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16e072f2afa8202c5fde8f64adc68588 new file mode 100644 index 00000000..da9c0e22 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16e072f2afa8202c5fde8f64adc68588 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16e576099571408f3a5cd9ce61c2ae89 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16e576099571408f3a5cd9ce61c2ae89 new file mode 100644 index 00000000..9a0cbed3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16e576099571408f3a5cd9ce61c2ae89 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16e910639d91be6d7a03e9d8735c2501 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16e910639d91be6d7a03e9d8735c2501 new file mode 100644 index 00000000..58cd598a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/16/16e910639d91be6d7a03e9d8735c2501 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/170362ba435d29fda07be76f9df0e2d5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/170362ba435d29fda07be76f9df0e2d5 new file mode 100644 index 00000000..c4f18688 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/170362ba435d29fda07be76f9df0e2d5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17083db39eb0aa9bd730350bedb800f1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17083db39eb0aa9bd730350bedb800f1 new file mode 100644 index 00000000..9c2a2d63 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17083db39eb0aa9bd730350bedb800f1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/171f0f2d3956369921444ad2f4c9736e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/171f0f2d3956369921444ad2f4c9736e new file mode 100644 index 00000000..055ea764 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/171f0f2d3956369921444ad2f4c9736e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/1732999db82624405bdbc14bd6747c14 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/1732999db82624405bdbc14bd6747c14 new file mode 100644 index 00000000..357b7fc1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/1732999db82624405bdbc14bd6747c14 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/173f3a02494f8c665df87eb856d05904 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/173f3a02494f8c665df87eb856d05904 new file mode 100644 index 00000000..56e7a016 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/173f3a02494f8c665df87eb856d05904 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/1763b5d98e429ba62bbac1720016209b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/1763b5d98e429ba62bbac1720016209b new file mode 100644 index 00000000..3caf5bd7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/1763b5d98e429ba62bbac1720016209b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17670c7e2945caea2119c0fd6c070300 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17670c7e2945caea2119c0fd6c070300 new file mode 100644 index 00000000..6d392b54 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17670c7e2945caea2119c0fd6c070300 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17687c4ef292d2a536068ad0a4b55bf3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17687c4ef292d2a536068ad0a4b55bf3 new file mode 100644 index 00000000..4a244e50 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17687c4ef292d2a536068ad0a4b55bf3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/176d31dcfaec3c0e3569b69a3585a23c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/176d31dcfaec3c0e3569b69a3585a23c new file mode 100644 index 00000000..715eb864 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/176d31dcfaec3c0e3569b69a3585a23c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/178a2def1e43be5a1bd84c82c05491cc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/178a2def1e43be5a1bd84c82c05491cc new file mode 100644 index 00000000..37497ec0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/178a2def1e43be5a1bd84c82c05491cc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/178f8e52c1447c956d66e93960cf1e59 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/178f8e52c1447c956d66e93960cf1e59 new file mode 100644 index 00000000..af4a547d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/178f8e52c1447c956d66e93960cf1e59 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/179cc364b559709dc39043f63d545a75 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/179cc364b559709dc39043f63d545a75 new file mode 100644 index 00000000..812a148a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/179cc364b559709dc39043f63d545a75 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17b2fd4fb9e763231fa181d90b4ecabf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17b2fd4fb9e763231fa181d90b4ecabf new file mode 100644 index 00000000..57cb5a75 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17b2fd4fb9e763231fa181d90b4ecabf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17bb47e8dca68c5a7d2cd150f1dfe1a2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17bb47e8dca68c5a7d2cd150f1dfe1a2 new file mode 100644 index 00000000..0405f820 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17bb47e8dca68c5a7d2cd150f1dfe1a2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17ca758f2447c1ff795baca9c1f120be b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17ca758f2447c1ff795baca9c1f120be new file mode 100644 index 00000000..682bca86 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17ca758f2447c1ff795baca9c1f120be differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17e5b9b23335af4660c85a7f99d7ce38 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17e5b9b23335af4660c85a7f99d7ce38 new file mode 100644 index 00000000..1557ef4e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17e5b9b23335af4660c85a7f99d7ce38 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17eb0215f49f884041f8788569954148 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17eb0215f49f884041f8788569954148 new file mode 100644 index 00000000..c00826d4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17eb0215f49f884041f8788569954148 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17f42f32293bc1a80088df9a45247f91 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17f42f32293bc1a80088df9a45247f91 new file mode 100644 index 00000000..fd91493c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17f42f32293bc1a80088df9a45247f91 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17ff374fa9f290286cfffcf4fca191d0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17ff374fa9f290286cfffcf4fca191d0 new file mode 100644 index 00000000..f05a31d7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/17/17ff374fa9f290286cfffcf4fca191d0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18079b67a19daedd4e57cea7509f5641 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18079b67a19daedd4e57cea7509f5641 new file mode 100644 index 00000000..780b0f3b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18079b67a19daedd4e57cea7509f5641 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/180ab4e996764ecfee0831bf4ce0cffe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/180ab4e996764ecfee0831bf4ce0cffe new file mode 100644 index 00000000..caf925b2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/180ab4e996764ecfee0831bf4ce0cffe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18154606192125e46b4c3b249821aced b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18154606192125e46b4c3b249821aced new file mode 100644 index 00000000..46410a91 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18154606192125e46b4c3b249821aced differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/1826bf56032c328486807dc659534371 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/1826bf56032c328486807dc659534371 new file mode 100644 index 00000000..08c2c9c8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/1826bf56032c328486807dc659534371 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/182ff2e6853b55912c66161783357a6b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/182ff2e6853b55912c66161783357a6b new file mode 100644 index 00000000..8bc643e7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/182ff2e6853b55912c66161783357a6b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/1848a2b471c5514739ae0b9872efb204 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/1848a2b471c5514739ae0b9872efb204 new file mode 100644 index 00000000..d7fe97a0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/1848a2b471c5514739ae0b9872efb204 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18560d175753eac2b5011b1dd61069a8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18560d175753eac2b5011b1dd61069a8 new file mode 100644 index 00000000..7e05ef5c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18560d175753eac2b5011b1dd61069a8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/187f63dd9de81831d6bb632c4c948297 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/187f63dd9de81831d6bb632c4c948297 new file mode 100644 index 00000000..1ebd12a9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/187f63dd9de81831d6bb632c4c948297 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/188471c7773bfd88e4944ef781adc9b9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/188471c7773bfd88e4944ef781adc9b9 new file mode 100644 index 00000000..7306b2de Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/188471c7773bfd88e4944ef781adc9b9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18b0aedd6aa9bd023659828169239c81 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18b0aedd6aa9bd023659828169239c81 new file mode 100644 index 00000000..0d07bbbe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18b0aedd6aa9bd023659828169239c81 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18b63108462b537e462f1a9a37cf862e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18b63108462b537e462f1a9a37cf862e new file mode 100644 index 00000000..76e5ff38 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18b63108462b537e462f1a9a37cf862e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18c294ad953268dfdc1df08b2fc2d824 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18c294ad953268dfdc1df08b2fc2d824 new file mode 100644 index 00000000..bd0a5b24 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18c294ad953268dfdc1df08b2fc2d824 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18c7b5d68afc7922db6bfe8e4110ed35 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18c7b5d68afc7922db6bfe8e4110ed35 new file mode 100644 index 00000000..b3773e9b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18c7b5d68afc7922db6bfe8e4110ed35 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18f08c38724ded41e9e2d404ec6e6647 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18f08c38724ded41e9e2d404ec6e6647 new file mode 100644 index 00000000..c7c18f93 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18f08c38724ded41e9e2d404ec6e6647 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18f427537de686039bcd371254b47136 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18f427537de686039bcd371254b47136 new file mode 100644 index 00000000..d9a57331 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18f427537de686039bcd371254b47136 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18f810fed202c6ad48f3b9f28eff405c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18f810fed202c6ad48f3b9f28eff405c new file mode 100644 index 00000000..554a2e2e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/18/18f810fed202c6ad48f3b9f28eff405c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1905c749261c8b0440fe3a746ac914f2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1905c749261c8b0440fe3a746ac914f2 new file mode 100644 index 00000000..34fbf876 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1905c749261c8b0440fe3a746ac914f2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/190e97b6227a0a732da91fa98c060bdd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/190e97b6227a0a732da91fa98c060bdd new file mode 100644 index 00000000..05f6aef4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/190e97b6227a0a732da91fa98c060bdd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1918f353511be6a8480ab0a708316a76 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1918f353511be6a8480ab0a708316a76 new file mode 100644 index 00000000..ebc1b8c6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1918f353511be6a8480ab0a708316a76 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/191d6dbed18835b341ed32bfed7c8cd5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/191d6dbed18835b341ed32bfed7c8cd5 new file mode 100644 index 00000000..b9b57e45 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/191d6dbed18835b341ed32bfed7c8cd5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19225c61fc5d84b32c9209bcd93d1ad7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19225c61fc5d84b32c9209bcd93d1ad7 new file mode 100644 index 00000000..d73e5fa1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19225c61fc5d84b32c9209bcd93d1ad7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/193ad4f4b8026ce4734fb76d2d391bad b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/193ad4f4b8026ce4734fb76d2d391bad new file mode 100644 index 00000000..5fcb815e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/193ad4f4b8026ce4734fb76d2d391bad differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/193f7aefef9b015313411b9b63920a85 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/193f7aefef9b015313411b9b63920a85 new file mode 100644 index 00000000..a47e05a3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/193f7aefef9b015313411b9b63920a85 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/196af45ba0938f1a64f5050ef27b646e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/196af45ba0938f1a64f5050ef27b646e new file mode 100644 index 00000000..184f2b27 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/196af45ba0938f1a64f5050ef27b646e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/197018210161777d8ef8bc453d94bb05 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/197018210161777d8ef8bc453d94bb05 new file mode 100644 index 00000000..9f787ecf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/197018210161777d8ef8bc453d94bb05 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1977b73ccc77f21270a1a6570ccc1448 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1977b73ccc77f21270a1a6570ccc1448 new file mode 100644 index 00000000..76ff2c48 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1977b73ccc77f21270a1a6570ccc1448 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1987742f9ef2afa50701a2a20f5b504a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1987742f9ef2afa50701a2a20f5b504a new file mode 100644 index 00000000..0c751b8a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1987742f9ef2afa50701a2a20f5b504a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19899a425fffe4986d01c22b6882e982 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19899a425fffe4986d01c22b6882e982 new file mode 100644 index 00000000..02d82766 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19899a425fffe4986d01c22b6882e982 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1994f0a913001f88c863091954aa8a48 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1994f0a913001f88c863091954aa8a48 new file mode 100644 index 00000000..19bf0d98 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/1994f0a913001f88c863091954aa8a48 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/199541dc7cb066aa058182ef1419f7b5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/199541dc7cb066aa058182ef1419f7b5 new file mode 100644 index 00000000..33254f67 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/199541dc7cb066aa058182ef1419f7b5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19a0445d9edb28a831f6138a52c27e36 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19a0445d9edb28a831f6138a52c27e36 new file mode 100644 index 00000000..2897b1cf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19a0445d9edb28a831f6138a52c27e36 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19bec62bf259aeee37b845a73fbe5d16 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19bec62bf259aeee37b845a73fbe5d16 new file mode 100644 index 00000000..88e73d24 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19bec62bf259aeee37b845a73fbe5d16 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19c7d5e459c383138fa24cb7902378be b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19c7d5e459c383138fa24cb7902378be new file mode 100644 index 00000000..35dfe665 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19c7d5e459c383138fa24cb7902378be differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19cd8ec278581683030381692b095d07 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19cd8ec278581683030381692b095d07 new file mode 100644 index 00000000..7800bf38 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19cd8ec278581683030381692b095d07 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19e58db1847edc05b2ce595c3e8e8a47 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19e58db1847edc05b2ce595c3e8e8a47 new file mode 100644 index 00000000..047fb6cb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19e58db1847edc05b2ce595c3e8e8a47 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19e8bcefce77af1260a9bc6bffb01787 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19e8bcefce77af1260a9bc6bffb01787 new file mode 100644 index 00000000..904bdf74 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19e8bcefce77af1260a9bc6bffb01787 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19ec80b6b009993fadb13a89090746b7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19ec80b6b009993fadb13a89090746b7 new file mode 100644 index 00000000..c2324967 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19ec80b6b009993fadb13a89090746b7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19fd96d5220cdda928e6786bfbee41b6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19fd96d5220cdda928e6786bfbee41b6 new file mode 100644 index 00000000..ccb4af94 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/19/19fd96d5220cdda928e6786bfbee41b6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a06e455967bf3a8003a0e137ec7f152 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a06e455967bf3a8003a0e137ec7f152 new file mode 100644 index 00000000..89c0b070 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a06e455967bf3a8003a0e137ec7f152 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a1c48a47a6e41202c8c23bd9e238d39 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a1c48a47a6e41202c8c23bd9e238d39 new file mode 100644 index 00000000..5b775014 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a1c48a47a6e41202c8c23bd9e238d39 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a29de85692accf5eaf5333522cee541 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a29de85692accf5eaf5333522cee541 new file mode 100644 index 00000000..b139c170 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a29de85692accf5eaf5333522cee541 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a2d8a82753f56a642c885bd5c652af4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a2d8a82753f56a642c885bd5c652af4 new file mode 100644 index 00000000..fe84c098 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a2d8a82753f56a642c885bd5c652af4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a2d9d1cbfce9f5d375ec5f0265b7862 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a2d9d1cbfce9f5d375ec5f0265b7862 new file mode 100644 index 00000000..16433825 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a2d9d1cbfce9f5d375ec5f0265b7862 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a467c62965b14f200b46c6272e5071b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a467c62965b14f200b46c6272e5071b new file mode 100644 index 00000000..3c9b3ae6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a467c62965b14f200b46c6272e5071b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a85b0e45b25d40a6e2136b30fa19532 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a85b0e45b25d40a6e2136b30fa19532 new file mode 100644 index 00000000..f6f89a84 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a85b0e45b25d40a6e2136b30fa19532 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a8bd1cef13b29650529addcf51078a0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a8bd1cef13b29650529addcf51078a0 new file mode 100644 index 00000000..51cbd244 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1a8bd1cef13b29650529addcf51078a0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1aa10571b0fbd326b9e3ed50e74f96c6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1aa10571b0fbd326b9e3ed50e74f96c6 new file mode 100644 index 00000000..87712b27 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1aa10571b0fbd326b9e3ed50e74f96c6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ac020268d1613f25a79ffaf2564f975 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ac020268d1613f25a79ffaf2564f975 new file mode 100644 index 00000000..5bac1d22 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ac020268d1613f25a79ffaf2564f975 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ad5b9a750d29be512713c172c7bbbcd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ad5b9a750d29be512713c172c7bbbcd new file mode 100644 index 00000000..52d682f3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ad5b9a750d29be512713c172c7bbbcd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ad63e81c451b8e97d09b71266af7983 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ad63e81c451b8e97d09b71266af7983 new file mode 100644 index 00000000..0f9c72d0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ad63e81c451b8e97d09b71266af7983 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ae102b75d650fafa0afdcab0b4c4526 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ae102b75d650fafa0afdcab0b4c4526 new file mode 100644 index 00000000..66fe7305 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ae102b75d650fafa0afdcab0b4c4526 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ae9443c5b0667af919b89e176de4bc5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ae9443c5b0667af919b89e176de4bc5 new file mode 100644 index 00000000..1f50e920 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1ae9443c5b0667af919b89e176de4bc5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1aea6fa7e18808081d7362643e81596d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1aea6fa7e18808081d7362643e81596d new file mode 100644 index 00000000..d5caa6b3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1aea6fa7e18808081d7362643e81596d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1afb25ba2e5146c4ec9b22b3f6060844 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1afb25ba2e5146c4ec9b22b3f6060844 new file mode 100644 index 00000000..f2b0e264 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1a/1afb25ba2e5146c4ec9b22b3f6060844 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b0bb0b6c5a81c10a84374bf67a83339 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b0bb0b6c5a81c10a84374bf67a83339 new file mode 100644 index 00000000..4de34b75 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b0bb0b6c5a81c10a84374bf67a83339 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b1caafd7b10f7736c7ead7865594df1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b1caafd7b10f7736c7ead7865594df1 new file mode 100644 index 00000000..48e83a72 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b1caafd7b10f7736c7ead7865594df1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b4e8009c9e522eac27e533c7c6f74b6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b4e8009c9e522eac27e533c7c6f74b6 new file mode 100644 index 00000000..ea52cca9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b4e8009c9e522eac27e533c7c6f74b6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b5192cc40c8dc7959185083354e8cbe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b5192cc40c8dc7959185083354e8cbe new file mode 100644 index 00000000..d85dc73d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b5192cc40c8dc7959185083354e8cbe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b5224abce6e88bdaf348b782a4a239f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b5224abce6e88bdaf348b782a4a239f new file mode 100644 index 00000000..cf1fd338 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b5224abce6e88bdaf348b782a4a239f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b5676513bdcb3af67b12007ed9b62ec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b5676513bdcb3af67b12007ed9b62ec new file mode 100644 index 00000000..05477989 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1b5676513bdcb3af67b12007ed9b62ec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1ba273b7232fa531939da8e2732f4e81 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1ba273b7232fa531939da8e2732f4e81 new file mode 100644 index 00000000..538b8c3c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1ba273b7232fa531939da8e2732f4e81 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1bb6cd91ffbacc7ce53f6baf0e321997 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1bb6cd91ffbacc7ce53f6baf0e321997 new file mode 100644 index 00000000..1779e2c7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1bb6cd91ffbacc7ce53f6baf0e321997 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1bcef6c789999a7fb50aa8f7a9cb2ba7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1bcef6c789999a7fb50aa8f7a9cb2ba7 new file mode 100644 index 00000000..d826d161 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1bcef6c789999a7fb50aa8f7a9cb2ba7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1bdd556ec558f5de00ba0e324d6610b6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1bdd556ec558f5de00ba0e324d6610b6 new file mode 100644 index 00000000..0f337080 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1bdd556ec558f5de00ba0e324d6610b6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1beb45ef47411e64f56172947ec42cd9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1beb45ef47411e64f56172947ec42cd9 new file mode 100644 index 00000000..4375cbfb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1beb45ef47411e64f56172947ec42cd9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1bf7eb7233e66ee16a44af9ecb572903 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1bf7eb7233e66ee16a44af9ecb572903 new file mode 100644 index 00000000..246e61fe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1b/1bf7eb7233e66ee16a44af9ecb572903 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c0aac325288dbb4edf5f7dcc524942d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c0aac325288dbb4edf5f7dcc524942d new file mode 100644 index 00000000..86d3c68d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c0aac325288dbb4edf5f7dcc524942d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c2316dd00ad8583a507d761c85bcdab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c2316dd00ad8583a507d761c85bcdab new file mode 100644 index 00000000..c7ad8955 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c2316dd00ad8583a507d761c85bcdab differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c29c91e0c5fa4361978776b9157fd8a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c29c91e0c5fa4361978776b9157fd8a new file mode 100644 index 00000000..069254f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c29c91e0c5fa4361978776b9157fd8a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c3171d9550a93d2b61cb5f17cc1c20e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c3171d9550a93d2b61cb5f17cc1c20e new file mode 100644 index 00000000..bb00042f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c3171d9550a93d2b61cb5f17cc1c20e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c322749a4011367511c2de9c18317c7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c322749a4011367511c2de9c18317c7 new file mode 100644 index 00000000..df1bd69f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c322749a4011367511c2de9c18317c7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c3cf42e9e992dad1aab723ceaa62af7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c3cf42e9e992dad1aab723ceaa62af7 new file mode 100644 index 00000000..a0ed8e84 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c3cf42e9e992dad1aab723ceaa62af7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c3d6a828feb105a6798da74815fe459 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c3d6a828feb105a6798da74815fe459 new file mode 100644 index 00000000..7ec45e7b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c3d6a828feb105a6798da74815fe459 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c73a965e5988f4604604c46922ebc29 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c73a965e5988f4604604c46922ebc29 new file mode 100644 index 00000000..3817baf1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c73a965e5988f4604604c46922ebc29 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c80dc0e2db5f25ae21898834bd48239 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c80dc0e2db5f25ae21898834bd48239 new file mode 100644 index 00000000..beea05b4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c80dc0e2db5f25ae21898834bd48239 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c89acc030e118820d13544fd5383e23 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c89acc030e118820d13544fd5383e23 new file mode 100644 index 00000000..345d26dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c89acc030e118820d13544fd5383e23 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c8d61925142e52b509214f00bb4b970 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c8d61925142e52b509214f00bb4b970 new file mode 100644 index 00000000..c5ce59c3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c8d61925142e52b509214f00bb4b970 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c913ae26cf84f8555f86578f835201f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c913ae26cf84f8555f86578f835201f new file mode 100644 index 00000000..ce899475 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c913ae26cf84f8555f86578f835201f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c93fa39985014ddf1bbe0ed3eeef629 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c93fa39985014ddf1bbe0ed3eeef629 new file mode 100644 index 00000000..0af32431 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1c93fa39985014ddf1bbe0ed3eeef629 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cb0098c5117f5838cc7a674649054b9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cb0098c5117f5838cc7a674649054b9 new file mode 100644 index 00000000..f9a83511 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cb0098c5117f5838cc7a674649054b9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cb73a766ea827f1b4c227b967aa1f35 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cb73a766ea827f1b4c227b967aa1f35 new file mode 100644 index 00000000..2b26c2b7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cb73a766ea827f1b4c227b967aa1f35 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cccde9b3848672e6e39312627790741 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cccde9b3848672e6e39312627790741 new file mode 100644 index 00000000..1ca161d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cccde9b3848672e6e39312627790741 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cd555051d3ea4b10288ca8ff6051f32 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cd555051d3ea4b10288ca8ff6051f32 new file mode 100644 index 00000000..75613855 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cd555051d3ea4b10288ca8ff6051f32 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cea5ea0d009602d61f7c3049c057a85 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cea5ea0d009602d61f7c3049c057a85 new file mode 100644 index 00000000..aa3a121d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cea5ea0d009602d61f7c3049c057a85 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cf3b89a108f19544f9b5fd7d21ccbfc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cf3b89a108f19544f9b5fd7d21ccbfc new file mode 100644 index 00000000..9f1a969c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cf3b89a108f19544f9b5fd7d21ccbfc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cf7b54c66273745c69ef77e3d3a2a68 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cf7b54c66273745c69ef77e3d3a2a68 new file mode 100644 index 00000000..4dfad252 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1c/1cf7b54c66273745c69ef77e3d3a2a68 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d18102837f1a94717e868716d05b255 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d18102837f1a94717e868716d05b255 new file mode 100644 index 00000000..4893aa8a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d18102837f1a94717e868716d05b255 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d20510e101a7a68caba1281f8104896 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d20510e101a7a68caba1281f8104896 new file mode 100644 index 00000000..f10152e9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d20510e101a7a68caba1281f8104896 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d5cec828da0ad9a5d14d61398f32909 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d5cec828da0ad9a5d14d61398f32909 new file mode 100644 index 00000000..da5738be Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d5cec828da0ad9a5d14d61398f32909 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d65019b60a8671798902e003f563cfd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d65019b60a8671798902e003f563cfd new file mode 100644 index 00000000..65321e38 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d65019b60a8671798902e003f563cfd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d8e101d9cc9a5e69fd6cbd037094801 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d8e101d9cc9a5e69fd6cbd037094801 new file mode 100644 index 00000000..fed38d45 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d8e101d9cc9a5e69fd6cbd037094801 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d96a2601677f01a5f4e9c926a452f9f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d96a2601677f01a5f4e9c926a452f9f new file mode 100644 index 00000000..4fcc538f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d96a2601677f01a5f4e9c926a452f9f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d994bdd5ab8ea3e48e10800af69e98a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d994bdd5ab8ea3e48e10800af69e98a new file mode 100644 index 00000000..615d1141 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1d994bdd5ab8ea3e48e10800af69e98a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1da3ad603d873eaabaf285e89f284a09 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1da3ad603d873eaabaf285e89f284a09 new file mode 100644 index 00000000..a047bbf4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1da3ad603d873eaabaf285e89f284a09 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1df3a16e9937ecd26e7eda25f2efdbf8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1df3a16e9937ecd26e7eda25f2efdbf8 new file mode 100644 index 00000000..10b22761 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1df3a16e9937ecd26e7eda25f2efdbf8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1df9db587cf54bbc5378abe64e46b3a5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1df9db587cf54bbc5378abe64e46b3a5 new file mode 100644 index 00000000..ea506bcd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1d/1df9db587cf54bbc5378abe64e46b3a5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e078c247c9a54c62c06c477aede912b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e078c247c9a54c62c06c477aede912b new file mode 100644 index 00000000..9bb4d47d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e078c247c9a54c62c06c477aede912b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e09e3c3c978e9d5245d1706e35b3906 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e09e3c3c978e9d5245d1706e35b3906 new file mode 100644 index 00000000..39054bca Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e09e3c3c978e9d5245d1706e35b3906 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e11c31d32b70d71ca62892f3145fabc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e11c31d32b70d71ca62892f3145fabc new file mode 100644 index 00000000..70a2eb94 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e11c31d32b70d71ca62892f3145fabc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e2f4b54da29b211cf04b37f4caae42a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e2f4b54da29b211cf04b37f4caae42a new file mode 100644 index 00000000..9cf3a10e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e2f4b54da29b211cf04b37f4caae42a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e48285b0547f90d1b4b6123a0b6ee79 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e48285b0547f90d1b4b6123a0b6ee79 new file mode 100644 index 00000000..4ca54e90 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e48285b0547f90d1b4b6123a0b6ee79 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e57a5b5a3f424a620dcecd24a22af39 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e57a5b5a3f424a620dcecd24a22af39 new file mode 100644 index 00000000..e7241f76 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e57a5b5a3f424a620dcecd24a22af39 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e8f815866e0d668362af6e4a945cd23 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e8f815866e0d668362af6e4a945cd23 new file mode 100644 index 00000000..af0afad7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1e8f815866e0d668362af6e4a945cd23 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1eb0d5d782790b330a51ad41164b1c1d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1eb0d5d782790b330a51ad41164b1c1d new file mode 100644 index 00000000..51a975bd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1eb0d5d782790b330a51ad41164b1c1d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1eca69e46304aa06ef75bd01812664ce b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1eca69e46304aa06ef75bd01812664ce new file mode 100644 index 00000000..9cac7c3f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1eca69e46304aa06ef75bd01812664ce differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1ed2e7c38c22332ed904b65a6df7a52c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1ed2e7c38c22332ed904b65a6df7a52c new file mode 100644 index 00000000..a05aef63 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1ed2e7c38c22332ed904b65a6df7a52c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1ed35ab3fffefd7b3ba1e3f0fd618d47 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1ed35ab3fffefd7b3ba1e3f0fd618d47 new file mode 100644 index 00000000..235e6021 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1ed35ab3fffefd7b3ba1e3f0fd618d47 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1eed1258fc79b1c923a896914a6e81f5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1eed1258fc79b1c923a896914a6e81f5 new file mode 100644 index 00000000..cdf7ab3b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1eed1258fc79b1c923a896914a6e81f5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1ef62133875eec18d9a00a020599e472 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1ef62133875eec18d9a00a020599e472 new file mode 100644 index 00000000..758ca329 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1ef62133875eec18d9a00a020599e472 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1efa8fb297f6185390b8c7b1e2edc31c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1efa8fb297f6185390b8c7b1e2edc31c new file mode 100644 index 00000000..e573c97e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1e/1efa8fb297f6185390b8c7b1e2edc31c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f1b502e8868a4258f281449db143414 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f1b502e8868a4258f281449db143414 new file mode 100644 index 00000000..1ddc9f01 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f1b502e8868a4258f281449db143414 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f1e6b77c4f14a92a5b2243e6a67b634 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f1e6b77c4f14a92a5b2243e6a67b634 new file mode 100644 index 00000000..e875b6c7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f1e6b77c4f14a92a5b2243e6a67b634 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f2784381020977f7c5792552e824526 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f2784381020977f7c5792552e824526 new file mode 100644 index 00000000..16615393 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f2784381020977f7c5792552e824526 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f446e19fa7d6cd1b9bcc435beefd5c2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f446e19fa7d6cd1b9bcc435beefd5c2 new file mode 100644 index 00000000..4435bf50 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f446e19fa7d6cd1b9bcc435beefd5c2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f512286a4e90398e2e5fd6101fb27db b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f512286a4e90398e2e5fd6101fb27db new file mode 100644 index 00000000..e2ed38b4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f512286a4e90398e2e5fd6101fb27db differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f5b1e97412e37c1e99f73bf1b62c1c7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f5b1e97412e37c1e99f73bf1b62c1c7 new file mode 100644 index 00000000..f45ac4c2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f5b1e97412e37c1e99f73bf1b62c1c7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f70b4d732c5d36779f45533fdd0b5b5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f70b4d732c5d36779f45533fdd0b5b5 new file mode 100644 index 00000000..3877e9e5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f70b4d732c5d36779f45533fdd0b5b5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f7c75fb0902b499793fb7729419a969 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f7c75fb0902b499793fb7729419a969 new file mode 100644 index 00000000..739189d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f7c75fb0902b499793fb7729419a969 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f88896288048c25ad3e0ba60f451232 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f88896288048c25ad3e0ba60f451232 new file mode 100644 index 00000000..b13a6904 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f88896288048c25ad3e0ba60f451232 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f95ad42961572f89ab621ec408f619b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f95ad42961572f89ab621ec408f619b new file mode 100644 index 00000000..d1bbca16 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f95ad42961572f89ab621ec408f619b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f9d89588a1399f7bd957c5a93082082 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f9d89588a1399f7bd957c5a93082082 new file mode 100644 index 00000000..31769f56 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1f9d89588a1399f7bd957c5a93082082 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1faa24744752942f9a9889410552a2de b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1faa24744752942f9a9889410552a2de new file mode 100644 index 00000000..f7872a5f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1faa24744752942f9a9889410552a2de differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fb6741428fbe47f02b89defd99a32f5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fb6741428fbe47f02b89defd99a32f5 new file mode 100644 index 00000000..aa0e7fb2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fb6741428fbe47f02b89defd99a32f5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fd00ae037dca9d5728af5e53b979ef9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fd00ae037dca9d5728af5e53b979ef9 new file mode 100644 index 00000000..ef0c9d24 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fd00ae037dca9d5728af5e53b979ef9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fd2385a276a76fc3cbb19b29289791e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fd2385a276a76fc3cbb19b29289791e new file mode 100644 index 00000000..e338fa96 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fd2385a276a76fc3cbb19b29289791e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fd6b40f5b54488ca2434b4591c99c0b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fd6b40f5b54488ca2434b4591c99c0b new file mode 100644 index 00000000..cf195954 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fd6b40f5b54488ca2434b4591c99c0b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fe02b08260cf9930fb9c3d855f8b39b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fe02b08260cf9930fb9c3d855f8b39b new file mode 100644 index 00000000..f6c476a3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fe02b08260cf9930fb9c3d855f8b39b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fe41b45d25b03ed4ffdf6a20208268f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fe41b45d25b03ed4ffdf6a20208268f new file mode 100644 index 00000000..eec82afc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1fe41b45d25b03ed4ffdf6a20208268f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1feaa667d8f6df797a312593ac03f89c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1feaa667d8f6df797a312593ac03f89c new file mode 100644 index 00000000..6a46365b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/1f/1feaa667d8f6df797a312593ac03f89c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20111d2f3a5f1adbbae39dc667df6664 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20111d2f3a5f1adbbae39dc667df6664 new file mode 100644 index 00000000..111c3b7b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20111d2f3a5f1adbbae39dc667df6664 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/2013fbbac6d1111274b6958df05e47eb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/2013fbbac6d1111274b6958df05e47eb new file mode 100644 index 00000000..1a458060 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/2013fbbac6d1111274b6958df05e47eb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/203884b81dbc897f5474d0cbc7402fb7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/203884b81dbc897f5474d0cbc7402fb7 new file mode 100644 index 00000000..7c48bc57 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/203884b81dbc897f5474d0cbc7402fb7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/203c2237c7203071f7fa5da5faaada3b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/203c2237c7203071f7fa5da5faaada3b new file mode 100644 index 00000000..89c95d90 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/203c2237c7203071f7fa5da5faaada3b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/204ba7b290c37d7240655c20126107a3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/204ba7b290c37d7240655c20126107a3 new file mode 100644 index 00000000..ea56a627 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/204ba7b290c37d7240655c20126107a3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/205b4a5adfdee8a140d03370da527aa2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/205b4a5adfdee8a140d03370da527aa2 new file mode 100644 index 00000000..21b5f594 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/205b4a5adfdee8a140d03370da527aa2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20827c25181c92d6cee5965b36779676 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20827c25181c92d6cee5965b36779676 new file mode 100644 index 00000000..4938b8f1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20827c25181c92d6cee5965b36779676 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20895d442cc921cc1a173cc9fdc5ee5e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20895d442cc921cc1a173cc9fdc5ee5e new file mode 100644 index 00000000..4b283a35 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20895d442cc921cc1a173cc9fdc5ee5e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/209367e8bd566c04dddf129e78ced5e9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/209367e8bd566c04dddf129e78ced5e9 new file mode 100644 index 00000000..c915073e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/209367e8bd566c04dddf129e78ced5e9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/2098dfe6d60d5ba8fcf9bff5649911c6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/2098dfe6d60d5ba8fcf9bff5649911c6 new file mode 100644 index 00000000..50044487 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/2098dfe6d60d5ba8fcf9bff5649911c6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20b6a55e6aa0c879598d11e97c649904 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20b6a55e6aa0c879598d11e97c649904 new file mode 100644 index 00000000..ddd83345 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20b6a55e6aa0c879598d11e97c649904 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20f9e789cecbf86c39d0f774566c60a7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20f9e789cecbf86c39d0f774566c60a7 new file mode 100644 index 00000000..9b385972 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/20/20f9e789cecbf86c39d0f774566c60a7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/210de65378a518ca02431595b567fbaa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/210de65378a518ca02431595b567fbaa new file mode 100644 index 00000000..f995d272 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/210de65378a518ca02431595b567fbaa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/2115afe2fa3885eb6110545209b09a2d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/2115afe2fa3885eb6110545209b09a2d new file mode 100644 index 00000000..f51234f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/2115afe2fa3885eb6110545209b09a2d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21317cc87640f123f2605ef30f3474dc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21317cc87640f123f2605ef30f3474dc new file mode 100644 index 00000000..5189ec81 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21317cc87640f123f2605ef30f3474dc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/2139178f43a2ef0e17bde99fbcbdb604 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/2139178f43a2ef0e17bde99fbcbdb604 new file mode 100644 index 00000000..b21d92c3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/2139178f43a2ef0e17bde99fbcbdb604 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/214c5370fe3a428203940601cc649e8e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/214c5370fe3a428203940601cc649e8e new file mode 100644 index 00000000..47fef306 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/214c5370fe3a428203940601cc649e8e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/214dea14dfb53c7a194649bbb6b83ea5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/214dea14dfb53c7a194649bbb6b83ea5 new file mode 100644 index 00000000..fadfc58a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/214dea14dfb53c7a194649bbb6b83ea5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/214eed01e3e1e6bc89feb981863192ca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/214eed01e3e1e6bc89feb981863192ca new file mode 100644 index 00000000..cd203e91 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/214eed01e3e1e6bc89feb981863192ca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21597b8c4e5b9cee1f98a99f6bb3b575 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21597b8c4e5b9cee1f98a99f6bb3b575 new file mode 100644 index 00000000..c6d1ea5b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21597b8c4e5b9cee1f98a99f6bb3b575 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/2183482ab0fb794752d6c657d4270648 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/2183482ab0fb794752d6c657d4270648 new file mode 100644 index 00000000..cfa5e5b7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/2183482ab0fb794752d6c657d4270648 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21912277c92fdfa27686d7c64bffda36 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21912277c92fdfa27686d7c64bffda36 new file mode 100644 index 00000000..7b83c1e0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21912277c92fdfa27686d7c64bffda36 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/219ad78f9d93a84ef6f7640ace30b464 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/219ad78f9d93a84ef6f7640ace30b464 new file mode 100644 index 00000000..389362db Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/219ad78f9d93a84ef6f7640ace30b464 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21cd76f1d9deb17bdb389aca326fe6f6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21cd76f1d9deb17bdb389aca326fe6f6 new file mode 100644 index 00000000..ca8949f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21cd76f1d9deb17bdb389aca326fe6f6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21f227b232eb394c4fc12289bf75104c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21f227b232eb394c4fc12289bf75104c new file mode 100644 index 00000000..cc5fb307 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21f227b232eb394c4fc12289bf75104c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21f6dd5048ef2b80774e8e9cf6433e9d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21f6dd5048ef2b80774e8e9cf6433e9d new file mode 100644 index 00000000..40a13129 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/21/21f6dd5048ef2b80774e8e9cf6433e9d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/2203680aa4479246e91bc17559f904d0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/2203680aa4479246e91bc17559f904d0 new file mode 100644 index 00000000..890f7fef Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/2203680aa4479246e91bc17559f904d0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/221327c98604a7076e1d667485ba577f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/221327c98604a7076e1d667485ba577f new file mode 100644 index 00000000..b160dfd6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/221327c98604a7076e1d667485ba577f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/2218581467a97d0494e6a22b552cf061 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/2218581467a97d0494e6a22b552cf061 new file mode 100644 index 00000000..503cbce8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/2218581467a97d0494e6a22b552cf061 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22368dc30bea3b3f7865001979592b32 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22368dc30bea3b3f7865001979592b32 new file mode 100644 index 00000000..6ed1d780 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22368dc30bea3b3f7865001979592b32 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/225c73295e095d4a304ff9595aaad231 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/225c73295e095d4a304ff9595aaad231 new file mode 100644 index 00000000..0523a112 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/225c73295e095d4a304ff9595aaad231 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/225e903ddbc5191f2ce7e4c40a5832e9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/225e903ddbc5191f2ce7e4c40a5832e9 new file mode 100644 index 00000000..8f0ca82f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/225e903ddbc5191f2ce7e4c40a5832e9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/2261f739aa967a600c64c2c58ced7a03 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/2261f739aa967a600c64c2c58ced7a03 new file mode 100644 index 00000000..d7acdd04 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/2261f739aa967a600c64c2c58ced7a03 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/226fed76139124338fc84a6fe4ab8261 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/226fed76139124338fc84a6fe4ab8261 new file mode 100644 index 00000000..77338ea5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/226fed76139124338fc84a6fe4ab8261 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/228112485edaaf08b11632e5043beb99 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/228112485edaaf08b11632e5043beb99 new file mode 100644 index 00000000..ebae73fc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/228112485edaaf08b11632e5043beb99 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22968ce9f47806550b6b1585060ae89b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22968ce9f47806550b6b1585060ae89b new file mode 100644 index 00000000..1fd98a87 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22968ce9f47806550b6b1585060ae89b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22af13f74fdacacc1215c5c0d7993f08 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22af13f74fdacacc1215c5c0d7993f08 new file mode 100644 index 00000000..64412ca2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22af13f74fdacacc1215c5c0d7993f08 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22b1cc9150b4262be43f3d3db61a1ab3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22b1cc9150b4262be43f3d3db61a1ab3 new file mode 100644 index 00000000..8822254f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22b1cc9150b4262be43f3d3db61a1ab3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22c9599502213a086f70547a7455ca36 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22c9599502213a086f70547a7455ca36 new file mode 100644 index 00000000..82c1d6c9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22c9599502213a086f70547a7455ca36 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22d8914738ec4cc411e8b7d9fb9dda6f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22d8914738ec4cc411e8b7d9fb9dda6f new file mode 100644 index 00000000..77a46933 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22d8914738ec4cc411e8b7d9fb9dda6f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22e1ebe9842e47f719d9831e6e289a84 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22e1ebe9842e47f719d9831e6e289a84 new file mode 100644 index 00000000..e8624987 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22e1ebe9842e47f719d9831e6e289a84 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22e3b877075ad6e0ff3b686cf1d0a862 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22e3b877075ad6e0ff3b686cf1d0a862 new file mode 100644 index 00000000..63f46adb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22e3b877075ad6e0ff3b686cf1d0a862 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22e48a7a276829bf5118318dc4ae5ff3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22e48a7a276829bf5118318dc4ae5ff3 new file mode 100644 index 00000000..22e08a7a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22e48a7a276829bf5118318dc4ae5ff3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22e72e5a97746bae3507416ed7a3543e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22e72e5a97746bae3507416ed7a3543e new file mode 100644 index 00000000..0347b5b6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22e72e5a97746bae3507416ed7a3543e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22ea8a963dc999053f321147ed585533 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22ea8a963dc999053f321147ed585533 new file mode 100644 index 00000000..f5477136 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/22/22ea8a963dc999053f321147ed585533 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2300570ab163a07d7fa9763840bd8d63 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2300570ab163a07d7fa9763840bd8d63 new file mode 100644 index 00000000..0cd660bc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2300570ab163a07d7fa9763840bd8d63 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/231e4e6d0f350d9414c367e7baf7f8f4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/231e4e6d0f350d9414c367e7baf7f8f4 new file mode 100644 index 00000000..f689c940 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/231e4e6d0f350d9414c367e7baf7f8f4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23260e878e82efdf299be2505937c199 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23260e878e82efdf299be2505937c199 new file mode 100644 index 00000000..eb21367f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23260e878e82efdf299be2505937c199 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/232a0f6c30a8ef378dec3a6a303dc6d2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/232a0f6c30a8ef378dec3a6a303dc6d2 new file mode 100644 index 00000000..451fcc00 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/232a0f6c30a8ef378dec3a6a303dc6d2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2344a6196f3c8d694d3dba7b5f0702d0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2344a6196f3c8d694d3dba7b5f0702d0 new file mode 100644 index 00000000..5da3f58e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2344a6196f3c8d694d3dba7b5f0702d0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23524770a27a035e301f3196287ddf64 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23524770a27a035e301f3196287ddf64 new file mode 100644 index 00000000..74dc8acc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23524770a27a035e301f3196287ddf64 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2356afee7f0da9ed37a1af530d868261 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2356afee7f0da9ed37a1af530d868261 new file mode 100644 index 00000000..62394d40 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2356afee7f0da9ed37a1af530d868261 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2365d37e1bf6a829398dc19bb255d57a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2365d37e1bf6a829398dc19bb255d57a new file mode 100644 index 00000000..ea705dae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2365d37e1bf6a829398dc19bb255d57a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2367732f939ed2d43a6c1fc251bb9370 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2367732f939ed2d43a6c1fc251bb9370 new file mode 100644 index 00000000..5ddd8943 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2367732f939ed2d43a6c1fc251bb9370 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2367d230f2651267c21d807d3fce3c50 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2367d230f2651267c21d807d3fce3c50 new file mode 100644 index 00000000..7dc6e7c8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/2367d230f2651267c21d807d3fce3c50 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23768853018d7eae60d9cb1c0d2717b9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23768853018d7eae60d9cb1c0d2717b9 new file mode 100644 index 00000000..4a96d4db Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23768853018d7eae60d9cb1c0d2717b9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23954117361461e2af1d22524d0b6dcb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23954117361461e2af1d22524d0b6dcb new file mode 100644 index 00000000..81f45b47 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23954117361461e2af1d22524d0b6dcb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/239eafe60cf6afa92b94b22e6ed1f2a0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/239eafe60cf6afa92b94b22e6ed1f2a0 new file mode 100644 index 00000000..f486b0ff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/239eafe60cf6afa92b94b22e6ed1f2a0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23cb73a83034d41097b239b8558b5bea b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23cb73a83034d41097b239b8558b5bea new file mode 100644 index 00000000..739ca626 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23cb73a83034d41097b239b8558b5bea differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23d39c18f6d930d57b045c690521e934 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23d39c18f6d930d57b045c690521e934 new file mode 100644 index 00000000..c6bf8549 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23d39c18f6d930d57b045c690521e934 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23d6e5f3b594b8897c296d0e888328a3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23d6e5f3b594b8897c296d0e888328a3 new file mode 100644 index 00000000..908d9a10 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23d6e5f3b594b8897c296d0e888328a3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23df671fb6faca7e6a5ce2f4e43336eb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23df671fb6faca7e6a5ce2f4e43336eb new file mode 100644 index 00000000..49937bb1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23df671fb6faca7e6a5ce2f4e43336eb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23e03a0d1114d3a0800850f3d4187801 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23e03a0d1114d3a0800850f3d4187801 new file mode 100644 index 00000000..1489f06c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23e03a0d1114d3a0800850f3d4187801 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23e4d55521502f6b6c3634ed531838dc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23e4d55521502f6b6c3634ed531838dc new file mode 100644 index 00000000..f86b6343 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23e4d55521502f6b6c3634ed531838dc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23f72fa1ba55db391f4c6a6b7b1bb555 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23f72fa1ba55db391f4c6a6b7b1bb555 new file mode 100644 index 00000000..01048d79 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/23/23f72fa1ba55db391f4c6a6b7b1bb555 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/2427577c1f2857aeeafd8c48b027e778 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/2427577c1f2857aeeafd8c48b027e778 new file mode 100644 index 00000000..a0cf14e4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/2427577c1f2857aeeafd8c48b027e778 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/2427ae8535cc916378e8f40e6da1dd06 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/2427ae8535cc916378e8f40e6da1dd06 new file mode 100644 index 00000000..1bcbd371 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/2427ae8535cc916378e8f40e6da1dd06 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/242bd893ed5161f24679a0ab099f4539 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/242bd893ed5161f24679a0ab099f4539 new file mode 100644 index 00000000..8ba0da03 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/242bd893ed5161f24679a0ab099f4539 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/2436558df29406fee0c5dcacd733560f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/2436558df29406fee0c5dcacd733560f new file mode 100644 index 00000000..2d09187c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/2436558df29406fee0c5dcacd733560f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/243aa9b00a7983785c683106df15b473 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/243aa9b00a7983785c683106df15b473 new file mode 100644 index 00000000..5f88fb5e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/243aa9b00a7983785c683106df15b473 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/245f42ae54d8587d2d11ebafec364e3b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/245f42ae54d8587d2d11ebafec364e3b new file mode 100644 index 00000000..0f875f0e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/245f42ae54d8587d2d11ebafec364e3b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/248d5d9ae4a761fb5e3d6dd212b502e8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/248d5d9ae4a761fb5e3d6dd212b502e8 new file mode 100644 index 00000000..42959534 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/248d5d9ae4a761fb5e3d6dd212b502e8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/24904fbbee3afaf51c1d58ddcd60c96b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/24904fbbee3afaf51c1d58ddcd60c96b new file mode 100644 index 00000000..79718e00 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/24904fbbee3afaf51c1d58ddcd60c96b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/24c984a57ad28f9170e60268bbac9353 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/24c984a57ad28f9170e60268bbac9353 new file mode 100644 index 00000000..82953588 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/24c984a57ad28f9170e60268bbac9353 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/24dc413457370dac778d6065a72ffbb8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/24dc413457370dac778d6065a72ffbb8 new file mode 100644 index 00000000..8b30a1e9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/24dc413457370dac778d6065a72ffbb8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/24de95d7d9e69164f815a2fc151770f7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/24de95d7d9e69164f815a2fc151770f7 new file mode 100644 index 00000000..bbdc45fa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/24/24de95d7d9e69164f815a2fc151770f7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/2521783ea7ad71c69433f1682b22fd28 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/2521783ea7ad71c69433f1682b22fd28 new file mode 100644 index 00000000..c5909439 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/2521783ea7ad71c69433f1682b22fd28 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/252ac7c6413fc2a34c5eaea269ebd74f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/252ac7c6413fc2a34c5eaea269ebd74f new file mode 100644 index 00000000..95d8c6bd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/252ac7c6413fc2a34c5eaea269ebd74f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/254d27b952b4f8f349851bbc8445b53f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/254d27b952b4f8f349851bbc8445b53f new file mode 100644 index 00000000..c55f4dd2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/254d27b952b4f8f349851bbc8445b53f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/257a26f1d72abc7714310e203e70b6ac b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/257a26f1d72abc7714310e203e70b6ac new file mode 100644 index 00000000..c12e5d5c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/257a26f1d72abc7714310e203e70b6ac differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/258c08afb2a992164c0ae3f52551d435 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/258c08afb2a992164c0ae3f52551d435 new file mode 100644 index 00000000..37bffe44 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/258c08afb2a992164c0ae3f52551d435 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/258cbecb4968a61180a4bb0e5ce1ca53 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/258cbecb4968a61180a4bb0e5ce1ca53 new file mode 100644 index 00000000..1e509bfa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/258cbecb4968a61180a4bb0e5ce1ca53 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25bc6174f26e7e2248e9fe13c970e24a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25bc6174f26e7e2248e9fe13c970e24a new file mode 100644 index 00000000..7dd39770 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25bc6174f26e7e2248e9fe13c970e24a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25bc934af33649a44aa67d928c058d43 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25bc934af33649a44aa67d928c058d43 new file mode 100644 index 00000000..3ee05b65 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25bc934af33649a44aa67d928c058d43 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25c5618347a8a3d79c68e6c1ad4edbf3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25c5618347a8a3d79c68e6c1ad4edbf3 new file mode 100644 index 00000000..b2b9b877 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25c5618347a8a3d79c68e6c1ad4edbf3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25da645f27d760d928f4226fe3f857b9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25da645f27d760d928f4226fe3f857b9 new file mode 100644 index 00000000..47380c9f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25da645f27d760d928f4226fe3f857b9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25ee861590cc67a836899624a718608b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25ee861590cc67a836899624a718608b new file mode 100644 index 00000000..cfbb83f0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25ee861590cc67a836899624a718608b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25f441bc0acde018b162b394bfd0c0d3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25f441bc0acde018b162b394bfd0c0d3 new file mode 100644 index 00000000..82847e63 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25f441bc0acde018b162b394bfd0c0d3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25f4fdd9df9a78dfbc27384f5b69bf0e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25f4fdd9df9a78dfbc27384f5b69bf0e new file mode 100644 index 00000000..5caf421e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25f4fdd9df9a78dfbc27384f5b69bf0e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25f8fc0856465b1a93846cf21992d5bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25f8fc0856465b1a93846cf21992d5bc new file mode 100644 index 00000000..4897136c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/25/25f8fc0856465b1a93846cf21992d5bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/2606a5b303fde30179a6732b2e762d0b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/2606a5b303fde30179a6732b2e762d0b new file mode 100644 index 00000000..12c44c45 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/2606a5b303fde30179a6732b2e762d0b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/261178045a10bfc9a1df0c99b6570919 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/261178045a10bfc9a1df0c99b6570919 new file mode 100644 index 00000000..0ed5f7ac Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/261178045a10bfc9a1df0c99b6570919 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26142d64e8e4541b3bfd24c34e8a61a4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26142d64e8e4541b3bfd24c34e8a61a4 new file mode 100644 index 00000000..7fb64136 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26142d64e8e4541b3bfd24c34e8a61a4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/2638adf530494cb82f7ea4ea67dc3375 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/2638adf530494cb82f7ea4ea67dc3375 new file mode 100644 index 00000000..70938110 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/2638adf530494cb82f7ea4ea67dc3375 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/263b6b04a90a7b17f8bd9c800969c6a8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/263b6b04a90a7b17f8bd9c800969c6a8 new file mode 100644 index 00000000..34e2ae54 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/263b6b04a90a7b17f8bd9c800969c6a8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26693cb8917063247dfff77a7f7cb1e8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26693cb8917063247dfff77a7f7cb1e8 new file mode 100644 index 00000000..a55dafeb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26693cb8917063247dfff77a7f7cb1e8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/2675663955345764353761e833611f35 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/2675663955345764353761e833611f35 new file mode 100644 index 00000000..243a62d4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/2675663955345764353761e833611f35 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/2684cf95b2a394a76c3ef2acef09e99e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/2684cf95b2a394a76c3ef2acef09e99e new file mode 100644 index 00000000..9261eef0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/2684cf95b2a394a76c3ef2acef09e99e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26a88b4088957dd0a95388bf4bde8e3b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26a88b4088957dd0a95388bf4bde8e3b new file mode 100644 index 00000000..10448fd5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26a88b4088957dd0a95388bf4bde8e3b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26b1d634357e98e6a3858b1e4fbb087b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26b1d634357e98e6a3858b1e4fbb087b new file mode 100644 index 00000000..10a506cd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26b1d634357e98e6a3858b1e4fbb087b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26b552963d0616dd5d80b2755840ce8b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26b552963d0616dd5d80b2755840ce8b new file mode 100644 index 00000000..97ffd248 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26b552963d0616dd5d80b2755840ce8b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26bb74dfa292e877d709ece9b385e784 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26bb74dfa292e877d709ece9b385e784 new file mode 100644 index 00000000..fd508abf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26bb74dfa292e877d709ece9b385e784 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26cf1d6ab13efcfc1f83f6c4eb00a617 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26cf1d6ab13efcfc1f83f6c4eb00a617 new file mode 100644 index 00000000..f179cf15 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26cf1d6ab13efcfc1f83f6c4eb00a617 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26edd8f7484edaee35416d9bde6ca4e1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26edd8f7484edaee35416d9bde6ca4e1 new file mode 100644 index 00000000..173db865 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26edd8f7484edaee35416d9bde6ca4e1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26f3bdc1dc9413770e218c4a261d42bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26f3bdc1dc9413770e218c4a261d42bc new file mode 100644 index 00000000..3ca724d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26f3bdc1dc9413770e218c4a261d42bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26f63420a824c76aa8ce5f6ddf6362d1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26f63420a824c76aa8ce5f6ddf6362d1 new file mode 100644 index 00000000..d9aea4e0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26f63420a824c76aa8ce5f6ddf6362d1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26fb387a0c6bcd07ddf9faad30918286 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26fb387a0c6bcd07ddf9faad30918286 new file mode 100644 index 00000000..3d345458 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26fb387a0c6bcd07ddf9faad30918286 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26fc0f9f30242172ecb41a6dfa7c0be1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26fc0f9f30242172ecb41a6dfa7c0be1 new file mode 100644 index 00000000..3da0e496 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/26/26fc0f9f30242172ecb41a6dfa7c0be1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/270b837f97434afd097a34634927e821 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/270b837f97434afd097a34634927e821 new file mode 100644 index 00000000..ff796a66 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/270b837f97434afd097a34634927e821 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/271c3d1e9d2b337a1d4ae31dd53593cf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/271c3d1e9d2b337a1d4ae31dd53593cf new file mode 100644 index 00000000..c3e0cfc3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/271c3d1e9d2b337a1d4ae31dd53593cf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/272bd1f1d47e2a4f6b27a16f0f8fddc1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/272bd1f1d47e2a4f6b27a16f0f8fddc1 new file mode 100644 index 00000000..8d7c5892 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/272bd1f1d47e2a4f6b27a16f0f8fddc1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/273feaf95075a12ec8a2f1b71ad3b619 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/273feaf95075a12ec8a2f1b71ad3b619 new file mode 100644 index 00000000..e1075141 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/273feaf95075a12ec8a2f1b71ad3b619 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/274c66a92f732bdde7f57a125ae25cfa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/274c66a92f732bdde7f57a125ae25cfa new file mode 100644 index 00000000..ff199907 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/274c66a92f732bdde7f57a125ae25cfa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/275db18d10f4c57d2a514621de72b66d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/275db18d10f4c57d2a514621de72b66d new file mode 100644 index 00000000..a98fa35c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/275db18d10f4c57d2a514621de72b66d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/276141b803b5210e952de350fbee82f1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/276141b803b5210e952de350fbee82f1 new file mode 100644 index 00000000..f0634269 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/276141b803b5210e952de350fbee82f1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/2773d35bc9574a0d900253b7aa6d4ada b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/2773d35bc9574a0d900253b7aa6d4ada new file mode 100644 index 00000000..62319c41 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/2773d35bc9574a0d900253b7aa6d4ada differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/277de4525df7b01310483bc4b4eadc8a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/277de4525df7b01310483bc4b4eadc8a new file mode 100644 index 00000000..01bef7f7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/277de4525df7b01310483bc4b4eadc8a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27804a8496c184b34784c2d9dda9ea8a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27804a8496c184b34784c2d9dda9ea8a new file mode 100644 index 00000000..ba5c49d2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27804a8496c184b34784c2d9dda9ea8a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/2787b04e1961a9e96fda375cc0593906 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/2787b04e1961a9e96fda375cc0593906 new file mode 100644 index 00000000..1f746671 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/2787b04e1961a9e96fda375cc0593906 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27b9c3e9e688e0c183f25baadd41cc2f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27b9c3e9e688e0c183f25baadd41cc2f new file mode 100644 index 00000000..cec0a7a7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27b9c3e9e688e0c183f25baadd41cc2f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27d7d6ffaade3eaa0091ea6da4b759d6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27d7d6ffaade3eaa0091ea6da4b759d6 new file mode 100644 index 00000000..53c8c66c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27d7d6ffaade3eaa0091ea6da4b759d6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27eecb540a2b119d2924b385ee93dff7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27eecb540a2b119d2924b385ee93dff7 new file mode 100644 index 00000000..64e2ff09 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27eecb540a2b119d2924b385ee93dff7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27f5fbab684befb5802f1856098709bd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27f5fbab684befb5802f1856098709bd new file mode 100644 index 00000000..74482cf8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27f5fbab684befb5802f1856098709bd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27f8c6442a5ce1e454ff644bae7b807d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27f8c6442a5ce1e454ff644bae7b807d new file mode 100644 index 00000000..840c7723 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/27/27f8c6442a5ce1e454ff644bae7b807d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28002d25b0258626faa63ec86c96c5f9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28002d25b0258626faa63ec86c96c5f9 new file mode 100644 index 00000000..06de56eb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28002d25b0258626faa63ec86c96c5f9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/280eae61e24399c9198ca8c1f61d7fe2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/280eae61e24399c9198ca8c1f61d7fe2 new file mode 100644 index 00000000..79ad3b04 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/280eae61e24399c9198ca8c1f61d7fe2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/280fa425d174855b70de1309d4db3fc7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/280fa425d174855b70de1309d4db3fc7 new file mode 100644 index 00000000..d118d524 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/280fa425d174855b70de1309d4db3fc7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/2816de1866560d465b96848ba538401f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/2816de1866560d465b96848ba538401f new file mode 100644 index 00000000..afc3dc11 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/2816de1866560d465b96848ba538401f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/283cf402c55e101f7ea142a795d64da5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/283cf402c55e101f7ea142a795d64da5 new file mode 100644 index 00000000..08f531fd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/283cf402c55e101f7ea142a795d64da5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/283fc96c7711570dbc95088c70635c82 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/283fc96c7711570dbc95088c70635c82 new file mode 100644 index 00000000..bb47b9dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/283fc96c7711570dbc95088c70635c82 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28588bd5e8452734db77aef65eba4aa7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28588bd5e8452734db77aef65eba4aa7 new file mode 100644 index 00000000..a0181ca0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28588bd5e8452734db77aef65eba4aa7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28697084835206657d42801770d66ef2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28697084835206657d42801770d66ef2 new file mode 100644 index 00000000..226c75dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28697084835206657d42801770d66ef2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/286c97276c368dd2bbcd9d3acc9507a4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/286c97276c368dd2bbcd9d3acc9507a4 new file mode 100644 index 00000000..3c82242f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/286c97276c368dd2bbcd9d3acc9507a4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28713c24c4047de4bd0309e1c8da481d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28713c24c4047de4bd0309e1c8da481d new file mode 100644 index 00000000..ac7e865b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28713c24c4047de4bd0309e1c8da481d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28744292c34d2e5568c3446c15518651 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28744292c34d2e5568c3446c15518651 new file mode 100644 index 00000000..13f37074 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28744292c34d2e5568c3446c15518651 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/287711140074b4c2736ae5651508adc1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/287711140074b4c2736ae5651508adc1 new file mode 100644 index 00000000..3471e2dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/287711140074b4c2736ae5651508adc1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/288a4480df3a0b44eb7f8ec7db20fb8f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/288a4480df3a0b44eb7f8ec7db20fb8f new file mode 100644 index 00000000..48ed5871 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/288a4480df3a0b44eb7f8ec7db20fb8f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/289dfd3b0a18b0222c7c78e13ba87609 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/289dfd3b0a18b0222c7c78e13ba87609 new file mode 100644 index 00000000..b67c4fa8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/289dfd3b0a18b0222c7c78e13ba87609 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28d280e926777c28af372480a194ec8d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28d280e926777c28af372480a194ec8d new file mode 100644 index 00000000..aa2f4b65 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28d280e926777c28af372480a194ec8d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28d97f73ae0131f4867d906303e6ef11 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28d97f73ae0131f4867d906303e6ef11 new file mode 100644 index 00000000..04cac8cc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28d97f73ae0131f4867d906303e6ef11 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28e1f3d32954efc084785466ba7eb0b8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28e1f3d32954efc084785466ba7eb0b8 new file mode 100644 index 00000000..0e5f979c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28e1f3d32954efc084785466ba7eb0b8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28eb41e785f4c187b7bf612eb76c951e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28eb41e785f4c187b7bf612eb76c951e new file mode 100644 index 00000000..8127ff91 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/28/28eb41e785f4c187b7bf612eb76c951e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/2922c5969519847cdf5670d4a75bb762 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/2922c5969519847cdf5670d4a75bb762 new file mode 100644 index 00000000..e6f7610f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/2922c5969519847cdf5670d4a75bb762 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/293b054a7b6f84129e60cf7bcdd1c11e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/293b054a7b6f84129e60cf7bcdd1c11e new file mode 100644 index 00000000..d24a6b2a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/293b054a7b6f84129e60cf7bcdd1c11e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/293c56fb773596849b1cfea6a3370e2c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/293c56fb773596849b1cfea6a3370e2c new file mode 100644 index 00000000..b0e95735 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/293c56fb773596849b1cfea6a3370e2c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/293dc75467449f136ce532de4f320ecc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/293dc75467449f136ce532de4f320ecc new file mode 100644 index 00000000..df8cd2a9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/293dc75467449f136ce532de4f320ecc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/294655fbd8381d5139ac948681be4c81 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/294655fbd8381d5139ac948681be4c81 new file mode 100644 index 00000000..556be429 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/294655fbd8381d5139ac948681be4c81 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29558e9c96584fc2bf2b04a0b6565013 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29558e9c96584fc2bf2b04a0b6565013 new file mode 100644 index 00000000..6b11300d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29558e9c96584fc2bf2b04a0b6565013 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/2956c2684bb5b452acc58fa5cde4c014 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/2956c2684bb5b452acc58fa5cde4c014 new file mode 100644 index 00000000..26f192bc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/2956c2684bb5b452acc58fa5cde4c014 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/296315429b87d9a6a59c38a491899cf1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/296315429b87d9a6a59c38a491899cf1 new file mode 100644 index 00000000..3e4f0177 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/296315429b87d9a6a59c38a491899cf1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/296f0ba6b84636d0935d5fb97b8f96a5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/296f0ba6b84636d0935d5fb97b8f96a5 new file mode 100644 index 00000000..064e4588 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/296f0ba6b84636d0935d5fb97b8f96a5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29a70f829283af1a4645b14bfd65c9a0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29a70f829283af1a4645b14bfd65c9a0 new file mode 100644 index 00000000..3dd4202e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29a70f829283af1a4645b14bfd65c9a0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29ad2667fb02d9b4dbcf820c309ff203 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29ad2667fb02d9b4dbcf820c309ff203 new file mode 100644 index 00000000..5c571c53 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29ad2667fb02d9b4dbcf820c309ff203 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29add2053bcfd9184e4b5dc2febcfc3a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29add2053bcfd9184e4b5dc2febcfc3a new file mode 100644 index 00000000..f339ae02 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29add2053bcfd9184e4b5dc2febcfc3a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29bd25adf5df9dffce6a6c68f30b9b1b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29bd25adf5df9dffce6a6c68f30b9b1b new file mode 100644 index 00000000..b6885e99 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29bd25adf5df9dffce6a6c68f30b9b1b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29cd0fdeb447e0ae3d3f0119af9e31ad b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29cd0fdeb447e0ae3d3f0119af9e31ad new file mode 100644 index 00000000..bfc7555a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29cd0fdeb447e0ae3d3f0119af9e31ad differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29cfd8477f5cfc472dc295bd2b425560 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29cfd8477f5cfc472dc295bd2b425560 new file mode 100644 index 00000000..ead2c335 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29cfd8477f5cfc472dc295bd2b425560 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29e3614f2e23547f4743caaf3ed06417 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29e3614f2e23547f4743caaf3ed06417 new file mode 100644 index 00000000..7d963e74 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29e3614f2e23547f4743caaf3ed06417 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29eb0c66d1414fd0e2f7a27ac3911b51 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29eb0c66d1414fd0e2f7a27ac3911b51 new file mode 100644 index 00000000..37eac570 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/29/29eb0c66d1414fd0e2f7a27ac3911b51 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a036f8334a32c284600dc88f0b5ef97 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a036f8334a32c284600dc88f0b5ef97 new file mode 100644 index 00000000..6c99abb8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a036f8334a32c284600dc88f0b5ef97 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a19a5eca1f8b9d0fa92fe1131f87e83 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a19a5eca1f8b9d0fa92fe1131f87e83 new file mode 100644 index 00000000..c5806e7f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a19a5eca1f8b9d0fa92fe1131f87e83 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a1d47d65a22188f50e1ae01329a34fd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a1d47d65a22188f50e1ae01329a34fd new file mode 100644 index 00000000..f70205f3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a1d47d65a22188f50e1ae01329a34fd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a23023becfda7e3f503eb42b1d8cdf1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a23023becfda7e3f503eb42b1d8cdf1 new file mode 100644 index 00000000..a4de5c2e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a23023becfda7e3f503eb42b1d8cdf1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a25cc70d832be7a91714be880b091b8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a25cc70d832be7a91714be880b091b8 new file mode 100644 index 00000000..1bdd0594 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a25cc70d832be7a91714be880b091b8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a4a221f7f5d0c928b1156cfa1a8e472 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a4a221f7f5d0c928b1156cfa1a8e472 new file mode 100644 index 00000000..d293579d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a4a221f7f5d0c928b1156cfa1a8e472 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a4afaeb26a73efec8fd99ce5d13cb23 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a4afaeb26a73efec8fd99ce5d13cb23 new file mode 100644 index 00000000..05f1159c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a4afaeb26a73efec8fd99ce5d13cb23 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a705996effa9d27a372ce5688271706 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a705996effa9d27a372ce5688271706 new file mode 100644 index 00000000..03a1ff04 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a705996effa9d27a372ce5688271706 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a76035edda20430c2b787c3f13517fe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a76035edda20430c2b787c3f13517fe new file mode 100644 index 00000000..4a58b707 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a76035edda20430c2b787c3f13517fe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a8956914d4f9cdf89112cc361ee41d7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a8956914d4f9cdf89112cc361ee41d7 new file mode 100644 index 00000000..ca5de037 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2a8956914d4f9cdf89112cc361ee41d7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2aa1558a87366de7445f97b580ff5f3a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2aa1558a87366de7445f97b580ff5f3a new file mode 100644 index 00000000..c4078938 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2aa1558a87366de7445f97b580ff5f3a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2aa54f8a5f924a465e36bde0df69269b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2aa54f8a5f924a465e36bde0df69269b new file mode 100644 index 00000000..b937df07 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2aa54f8a5f924a465e36bde0df69269b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2ab3a46d6aa958ae140f1dfae9df7576 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2ab3a46d6aa958ae140f1dfae9df7576 new file mode 100644 index 00000000..d5515ea4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2ab3a46d6aa958ae140f1dfae9df7576 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2ad56d50df080399aace1bfc1c07ca6f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2ad56d50df080399aace1bfc1c07ca6f new file mode 100644 index 00000000..ecccd871 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2ad56d50df080399aace1bfc1c07ca6f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2adccc3f5cfd1952bd8412ff636e1873 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2adccc3f5cfd1952bd8412ff636e1873 new file mode 100644 index 00000000..15586471 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2adccc3f5cfd1952bd8412ff636e1873 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2aedad87008fae6266322083abc13207 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2aedad87008fae6266322083abc13207 new file mode 100644 index 00000000..187dc524 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2aedad87008fae6266322083abc13207 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2afd195d3b8dd07e8d47d8419327dce0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2afd195d3b8dd07e8d47d8419327dce0 new file mode 100644 index 00000000..a19d2f5b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2afd195d3b8dd07e8d47d8419327dce0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2afe942edee5276ad5393fdb96b200d7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2afe942edee5276ad5393fdb96b200d7 new file mode 100644 index 00000000..95e0c737 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2a/2afe942edee5276ad5393fdb96b200d7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b1634d5046a61361af92f5bd055af4f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b1634d5046a61361af92f5bd055af4f new file mode 100644 index 00000000..37167e17 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b1634d5046a61361af92f5bd055af4f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b41d76d8ad755b3027d253fdba99843 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b41d76d8ad755b3027d253fdba99843 new file mode 100644 index 00000000..b8edbf75 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b41d76d8ad755b3027d253fdba99843 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b516d54f22885fa760157ad86035267 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b516d54f22885fa760157ad86035267 new file mode 100644 index 00000000..bd2afec3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b516d54f22885fa760157ad86035267 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b5ab5a648c3dbc3897afc2a595ee7a2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b5ab5a648c3dbc3897afc2a595ee7a2 new file mode 100644 index 00000000..f40730ab Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b5ab5a648c3dbc3897afc2a595ee7a2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b5f069b95a2e90102e05caf2303994e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b5f069b95a2e90102e05caf2303994e new file mode 100644 index 00000000..ffc361a8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b5f069b95a2e90102e05caf2303994e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b8ab34c831df3b6b415ad516617320f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b8ab34c831df3b6b415ad516617320f new file mode 100644 index 00000000..4e37e174 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b8ab34c831df3b6b415ad516617320f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b8ee73048446838134f7db7dff69250 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b8ee73048446838134f7db7dff69250 new file mode 100644 index 00000000..ca8dd7af Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2b8ee73048446838134f7db7dff69250 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2baa43097aff01bc2b06345e330e155c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2baa43097aff01bc2b06345e330e155c new file mode 100644 index 00000000..054b0e5d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2b/2baa43097aff01bc2b06345e330e155c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2c10fb98c53062d9a77f604b03aed1ce b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2c10fb98c53062d9a77f604b03aed1ce new file mode 100644 index 00000000..37cebdc7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2c10fb98c53062d9a77f604b03aed1ce differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2c3c30499135584db62c8ba038dabf31 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2c3c30499135584db62c8ba038dabf31 new file mode 100644 index 00000000..c2d8dc30 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2c3c30499135584db62c8ba038dabf31 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2c6faa2a875a363c84f61e1e4478a42e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2c6faa2a875a363c84f61e1e4478a42e new file mode 100644 index 00000000..bc6a1c49 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2c6faa2a875a363c84f61e1e4478a42e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2c8c10aa7791852f585312ef5ff2303d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2c8c10aa7791852f585312ef5ff2303d new file mode 100644 index 00000000..227790d1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2c8c10aa7791852f585312ef5ff2303d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cacc4bec8ff89d922657ee707f91879 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cacc4bec8ff89d922657ee707f91879 new file mode 100644 index 00000000..4db20a13 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cacc4bec8ff89d922657ee707f91879 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cad14ccc8dbef8404f4f27176f3f93a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cad14ccc8dbef8404f4f27176f3f93a new file mode 100644 index 00000000..270bbe5d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cad14ccc8dbef8404f4f27176f3f93a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cb29e9ab948d5dcc9eb196a5b28521f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cb29e9ab948d5dcc9eb196a5b28521f new file mode 100644 index 00000000..76a93384 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cb29e9ab948d5dcc9eb196a5b28521f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cb79b3b25a6253df21c86fc010aee62 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cb79b3b25a6253df21c86fc010aee62 new file mode 100644 index 00000000..f8bf8a18 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cb79b3b25a6253df21c86fc010aee62 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cc102bbe12434aa99ed58c527d1ca15 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cc102bbe12434aa99ed58c527d1ca15 new file mode 100644 index 00000000..68a2a1bb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cc102bbe12434aa99ed58c527d1ca15 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cefec3dab02c0dcf428a30307de9a7c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cefec3dab02c0dcf428a30307de9a7c new file mode 100644 index 00000000..cde15fbd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cefec3dab02c0dcf428a30307de9a7c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cfbf9db5c861d3cd7cca948ae5c98bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cfbf9db5c861d3cd7cca948ae5c98bc new file mode 100644 index 00000000..099ae168 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2c/2cfbf9db5c861d3cd7cca948ae5c98bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2d1a62fd075040d1e059c3699bbd5c55 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2d1a62fd075040d1e059c3699bbd5c55 new file mode 100644 index 00000000..182108ba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2d1a62fd075040d1e059c3699bbd5c55 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2d38dafb97aa4489a1fb6b93cb7540dc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2d38dafb97aa4489a1fb6b93cb7540dc new file mode 100644 index 00000000..ceb9d52f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2d38dafb97aa4489a1fb6b93cb7540dc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2d5a664eb50be3db580125c079a2f6c1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2d5a664eb50be3db580125c079a2f6c1 new file mode 100644 index 00000000..74ab8abb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2d5a664eb50be3db580125c079a2f6c1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2d6a308663465d1ece7e3a0fc6bb97ad b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2d6a308663465d1ece7e3a0fc6bb97ad new file mode 100644 index 00000000..0cc1984c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2d6a308663465d1ece7e3a0fc6bb97ad differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2da05dc2ae7ced9d125f2f3dec9a7925 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2da05dc2ae7ced9d125f2f3dec9a7925 new file mode 100644 index 00000000..4f4dcacf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2da05dc2ae7ced9d125f2f3dec9a7925 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2da8d66272dc0c585cee43f6d101f639 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2da8d66272dc0c585cee43f6d101f639 new file mode 100644 index 00000000..05986f9a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2da8d66272dc0c585cee43f6d101f639 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2db600db1d3b89215a8df35f85ac872b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2db600db1d3b89215a8df35f85ac872b new file mode 100644 index 00000000..7bbd8fbb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2db600db1d3b89215a8df35f85ac872b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2db6f4338ac41f4227a7b6a424c3a479 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2db6f4338ac41f4227a7b6a424c3a479 new file mode 100644 index 00000000..7ec561ee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2db6f4338ac41f4227a7b6a424c3a479 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2dc60e655cf4d15b89f367c2c80428ad b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2dc60e655cf4d15b89f367c2c80428ad new file mode 100644 index 00000000..0e9b4bfc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2dc60e655cf4d15b89f367c2c80428ad differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2ddc89f41fbe4351af797493d1f320f4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2ddc89f41fbe4351af797493d1f320f4 new file mode 100644 index 00000000..cbb7f92e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2d/2ddc89f41fbe4351af797493d1f320f4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e0cca4831b92774cd98f28ea9cce5ce b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e0cca4831b92774cd98f28ea9cce5ce new file mode 100644 index 00000000..d70b92a9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e0cca4831b92774cd98f28ea9cce5ce differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e0fe0da3d8ba13f8e27e9dcc345930f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e0fe0da3d8ba13f8e27e9dcc345930f new file mode 100644 index 00000000..76c12adb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e0fe0da3d8ba13f8e27e9dcc345930f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e0fe4e58232eebdf17c47300f8a5c34 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e0fe4e58232eebdf17c47300f8a5c34 new file mode 100644 index 00000000..78c63b11 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e0fe4e58232eebdf17c47300f8a5c34 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e3e6f6423d71a629c8c0df6100fb7d6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e3e6f6423d71a629c8c0df6100fb7d6 new file mode 100644 index 00000000..199b2734 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e3e6f6423d71a629c8c0df6100fb7d6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e62bc104007d8612c763343594b0563 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e62bc104007d8612c763343594b0563 new file mode 100644 index 00000000..1d704390 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e62bc104007d8612c763343594b0563 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e849fe9beb22d0b07a736eeee93d3da b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e849fe9beb22d0b07a736eeee93d3da new file mode 100644 index 00000000..d00febda Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e849fe9beb22d0b07a736eeee93d3da differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e8c9c9bc4deef9caa2fa64e53c6f9dc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e8c9c9bc4deef9caa2fa64e53c6f9dc new file mode 100644 index 00000000..2736934d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e8c9c9bc4deef9caa2fa64e53c6f9dc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e9f899a6540858de6898c026b204f8a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e9f899a6540858de6898c026b204f8a new file mode 100644 index 00000000..f70afb13 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2e9f899a6540858de6898c026b204f8a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2ea262b9604ad8e36f42d0d60721061f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2ea262b9604ad8e36f42d0d60721061f new file mode 100644 index 00000000..9bc826c8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2ea262b9604ad8e36f42d0d60721061f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2eab08fe9ae42759ad99498a3db9edf1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2eab08fe9ae42759ad99498a3db9edf1 new file mode 100644 index 00000000..ea86cf8c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2eab08fe9ae42759ad99498a3db9edf1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2eb2837ac22b0634df3dc9a7b12739ee b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2eb2837ac22b0634df3dc9a7b12739ee new file mode 100644 index 00000000..4ae55ec8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2eb2837ac22b0634df3dc9a7b12739ee differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2ec9b84b9293a3f26c231254bbfed6b8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2ec9b84b9293a3f26c231254bbfed6b8 new file mode 100644 index 00000000..80197822 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2ec9b84b9293a3f26c231254bbfed6b8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2ed276b6f401c4676f18056b7c0fab0f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2ed276b6f401c4676f18056b7c0fab0f new file mode 100644 index 00000000..9ff56286 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2ed276b6f401c4676f18056b7c0fab0f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2edf583e0e94f77a96f9f11baf68e441 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2edf583e0e94f77a96f9f11baf68e441 new file mode 100644 index 00000000..a692e45b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2e/2edf583e0e94f77a96f9f11baf68e441 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f0480052fd96cf8711faad4a80f1209 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f0480052fd96cf8711faad4a80f1209 new file mode 100644 index 00000000..248dde91 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f0480052fd96cf8711faad4a80f1209 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f128c69b4746f2b40505d4ddcc8a3d8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f128c69b4746f2b40505d4ddcc8a3d8 new file mode 100644 index 00000000..2684d1bc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f128c69b4746f2b40505d4ddcc8a3d8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f17216bf27e9e0b0a38c5047db86792 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f17216bf27e9e0b0a38c5047db86792 new file mode 100644 index 00000000..db8c529a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f17216bf27e9e0b0a38c5047db86792 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f181fe9603f17dd5d89db4358d39ee7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f181fe9603f17dd5d89db4358d39ee7 new file mode 100644 index 00000000..4a38f79c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f181fe9603f17dd5d89db4358d39ee7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f19c520397ddf95a801bc1e414e7ead b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f19c520397ddf95a801bc1e414e7ead new file mode 100644 index 00000000..dc457330 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f19c520397ddf95a801bc1e414e7ead differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f2fbe46c05b37c849a9548838e5cf6e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f2fbe46c05b37c849a9548838e5cf6e new file mode 100644 index 00000000..8d2196e5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f2fbe46c05b37c849a9548838e5cf6e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f4ce9dd79fbc8c92fe587bed620e65e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f4ce9dd79fbc8c92fe587bed620e65e new file mode 100644 index 00000000..74279a1a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f4ce9dd79fbc8c92fe587bed620e65e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f522dd1be2b3c33ca71d0fe5cc34b0a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f522dd1be2b3c33ca71d0fe5cc34b0a new file mode 100644 index 00000000..178b28e8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f522dd1be2b3c33ca71d0fe5cc34b0a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f8817ea8cff520c82afde76a8d98450 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f8817ea8cff520c82afde76a8d98450 new file mode 100644 index 00000000..75aeac10 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f8817ea8cff520c82afde76a8d98450 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f88696d3d51606372a245495f547f13 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f88696d3d51606372a245495f547f13 new file mode 100644 index 00000000..649e5ec6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f88696d3d51606372a245495f547f13 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f95542fcfbd5e9f75d4bdbed25621cd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f95542fcfbd5e9f75d4bdbed25621cd new file mode 100644 index 00000000..b1b9f62f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f95542fcfbd5e9f75d4bdbed25621cd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f9b3c1d622eca599ed1a68770f03a0a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f9b3c1d622eca599ed1a68770f03a0a new file mode 100644 index 00000000..5521688e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2f9b3c1d622eca599ed1a68770f03a0a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2fb08c8cc1da81ff146bd0febc3f1c31 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2fb08c8cc1da81ff146bd0febc3f1c31 new file mode 100644 index 00000000..2ed4361c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2fb08c8cc1da81ff146bd0febc3f1c31 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2fe491e98d4dd076181ab2de0fbf5096 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2fe491e98d4dd076181ab2de0fbf5096 new file mode 100644 index 00000000..222a490d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2fe491e98d4dd076181ab2de0fbf5096 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2ff0890f173866d0a37ae502cc523c6f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2ff0890f173866d0a37ae502cc523c6f new file mode 100644 index 00000000..0a63ee3f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/2f/2ff0890f173866d0a37ae502cc523c6f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30001af2b1a6bbe121d0d98cd5b8fcc7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30001af2b1a6bbe121d0d98cd5b8fcc7 new file mode 100644 index 00000000..c78d0303 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30001af2b1a6bbe121d0d98cd5b8fcc7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/3001033e22041baba5c3e755975df66a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/3001033e22041baba5c3e755975df66a new file mode 100644 index 00000000..1b7cae51 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/3001033e22041baba5c3e755975df66a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/3023d15dc016111396de164a510bc3d3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/3023d15dc016111396de164a510bc3d3 new file mode 100644 index 00000000..6e08ffaf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/3023d15dc016111396de164a510bc3d3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/3057f8739d5a267e7a8b8c46640cb69d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/3057f8739d5a267e7a8b8c46640cb69d new file mode 100644 index 00000000..34f23e03 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/3057f8739d5a267e7a8b8c46640cb69d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30582a122285bb7b6420f1ff11f579ab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30582a122285bb7b6420f1ff11f579ab new file mode 100644 index 00000000..e063b2e9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30582a122285bb7b6420f1ff11f579ab differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/307745163e8abe98b1b910450d8d2eb2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/307745163e8abe98b1b910450d8d2eb2 new file mode 100644 index 00000000..a16e8c20 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/307745163e8abe98b1b910450d8d2eb2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/308582d1bc8647f012fb79c43039648e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/308582d1bc8647f012fb79c43039648e new file mode 100644 index 00000000..afef6431 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/308582d1bc8647f012fb79c43039648e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30ab6c895bb7022173397785ec1c2800 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30ab6c895bb7022173397785ec1c2800 new file mode 100644 index 00000000..9400a8ce Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30ab6c895bb7022173397785ec1c2800 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30c2827a48c3736a3b9ea5e677df865a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30c2827a48c3736a3b9ea5e677df865a new file mode 100644 index 00000000..3b4bd560 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30c2827a48c3736a3b9ea5e677df865a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30de4be05f21125da44c52a1a4b1339c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30de4be05f21125da44c52a1a4b1339c new file mode 100644 index 00000000..93fede3e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30de4be05f21125da44c52a1a4b1339c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30ea9e11cf3a11dc98d5c3a8c2f0e462 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30ea9e11cf3a11dc98d5c3a8c2f0e462 new file mode 100644 index 00000000..2d3de6e0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30ea9e11cf3a11dc98d5c3a8c2f0e462 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30ee4eb60a3858e2adb1958cdbcc0bb2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30ee4eb60a3858e2adb1958cdbcc0bb2 new file mode 100644 index 00000000..b87983f9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30ee4eb60a3858e2adb1958cdbcc0bb2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30f8e5d9a78449a1174ca7cb56c2c753 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30f8e5d9a78449a1174ca7cb56c2c753 new file mode 100644 index 00000000..741b1980 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/30/30f8e5d9a78449a1174ca7cb56c2c753 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/310b153194f119f40389a2d17b9d7841 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/310b153194f119f40389a2d17b9d7841 new file mode 100644 index 00000000..0f6a255c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/310b153194f119f40389a2d17b9d7841 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31188abb77538c66955e129aa2f22d3b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31188abb77538c66955e129aa2f22d3b new file mode 100644 index 00000000..3ef56382 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31188abb77538c66955e129aa2f22d3b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/311cc754b34e800ebca1529d57541597 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/311cc754b34e800ebca1529d57541597 new file mode 100644 index 00000000..3a5831ab Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/311cc754b34e800ebca1529d57541597 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/3125dbf80573f83c77013f53f7d8d9c4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/3125dbf80573f83c77013f53f7d8d9c4 new file mode 100644 index 00000000..8c02f60a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/3125dbf80573f83c77013f53f7d8d9c4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31435794616588c9cce882f27d5a87ff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31435794616588c9cce882f27d5a87ff new file mode 100644 index 00000000..97dbbfdb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31435794616588c9cce882f27d5a87ff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/314fbaf6cc391c5d20de7f066d3281f1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/314fbaf6cc391c5d20de7f066d3281f1 new file mode 100644 index 00000000..5acfee0c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/314fbaf6cc391c5d20de7f066d3281f1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/3153422d375bdd9287797485a8860497 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/3153422d375bdd9287797485a8860497 new file mode 100644 index 00000000..6ae797fb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/3153422d375bdd9287797485a8860497 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/315a0b8f9511fef0bdbdffc03194ccdc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/315a0b8f9511fef0bdbdffc03194ccdc new file mode 100644 index 00000000..f0166a28 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/315a0b8f9511fef0bdbdffc03194ccdc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/3178cb4fd166332d08668f9e4e864cf4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/3178cb4fd166332d08668f9e4e864cf4 new file mode 100644 index 00000000..b1ed03f3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/3178cb4fd166332d08668f9e4e864cf4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/319e1dd71e56e74bdfd2132daa5fb8f7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/319e1dd71e56e74bdfd2132daa5fb8f7 new file mode 100644 index 00000000..88c02f19 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/319e1dd71e56e74bdfd2132daa5fb8f7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31a024af604df557308315c270bb2548 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31a024af604df557308315c270bb2548 new file mode 100644 index 00000000..91e1a0b1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31a024af604df557308315c270bb2548 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31b24473a9a67d854c6005319f11dfde b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31b24473a9a67d854c6005319f11dfde new file mode 100644 index 00000000..400c8328 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31b24473a9a67d854c6005319f11dfde differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31ccfb043f8ab3b1633ffdac4f2b2d6a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31ccfb043f8ab3b1633ffdac4f2b2d6a new file mode 100644 index 00000000..5ccb9e72 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31ccfb043f8ab3b1633ffdac4f2b2d6a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31f1f487ce985a822bbb1600ed84ce77 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31f1f487ce985a822bbb1600ed84ce77 new file mode 100644 index 00000000..c6c0b1ca Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31f1f487ce985a822bbb1600ed84ce77 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31f2fbdf22a2b5e7ec4cdaa72cc52f50 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31f2fbdf22a2b5e7ec4cdaa72cc52f50 new file mode 100644 index 00000000..bccb114f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/31/31f2fbdf22a2b5e7ec4cdaa72cc52f50 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/3205d73eb4f37352b41b10e13a498ccf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/3205d73eb4f37352b41b10e13a498ccf new file mode 100644 index 00000000..61a78aa6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/3205d73eb4f37352b41b10e13a498ccf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32204e4136bdd0d0a4c9cb8109fb7075 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32204e4136bdd0d0a4c9cb8109fb7075 new file mode 100644 index 00000000..8b382d90 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32204e4136bdd0d0a4c9cb8109fb7075 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/322da754dcb272349b1febf7ca1822dd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/322da754dcb272349b1febf7ca1822dd new file mode 100644 index 00000000..dc828113 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/322da754dcb272349b1febf7ca1822dd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/3248a6c2f576db2d267992a113035173 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/3248a6c2f576db2d267992a113035173 new file mode 100644 index 00000000..ed634d8c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/3248a6c2f576db2d267992a113035173 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/325b88f5204522d4d9e473e7fd218101 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/325b88f5204522d4d9e473e7fd218101 new file mode 100644 index 00000000..f3ef9421 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/325b88f5204522d4d9e473e7fd218101 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/327fa906fdab23392c64ada9479378a8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/327fa906fdab23392c64ada9479378a8 new file mode 100644 index 00000000..47387935 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/327fa906fdab23392c64ada9479378a8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32801dc1d817ef4c0b7e1b8b12edbefd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32801dc1d817ef4c0b7e1b8b12edbefd new file mode 100644 index 00000000..9d28c6fd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32801dc1d817ef4c0b7e1b8b12edbefd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/3281f6decd647ad8d8079b26c5d68b4d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/3281f6decd647ad8d8079b26c5d68b4d new file mode 100644 index 00000000..4132b9b8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/3281f6decd647ad8d8079b26c5d68b4d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/3284c2b4f20b01ea92151c316f122e77 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/3284c2b4f20b01ea92151c316f122e77 new file mode 100644 index 00000000..53e4dac1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/3284c2b4f20b01ea92151c316f122e77 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/329e1ae12cff800d1456d25803181eca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/329e1ae12cff800d1456d25803181eca new file mode 100644 index 00000000..e3f657ae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/329e1ae12cff800d1456d25803181eca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32a175e3edd4724b45ed9e44b77fc153 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32a175e3edd4724b45ed9e44b77fc153 new file mode 100644 index 00000000..b5a50e31 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32a175e3edd4724b45ed9e44b77fc153 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32b4ba3be2027700b9e6325ca72ba572 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32b4ba3be2027700b9e6325ca72ba572 new file mode 100644 index 00000000..4db02cf5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32b4ba3be2027700b9e6325ca72ba572 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32da62ecdf36e7f1f9eccbbc5b9f9d99 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32da62ecdf36e7f1f9eccbbc5b9f9d99 new file mode 100644 index 00000000..e610c744 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32da62ecdf36e7f1f9eccbbc5b9f9d99 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32e1e87c6e8283172ae96cd9e4c9c651 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32e1e87c6e8283172ae96cd9e4c9c651 new file mode 100644 index 00000000..b6f7df67 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32e1e87c6e8283172ae96cd9e4c9c651 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32e7d8698ab55976d24aa4cdd4807292 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32e7d8698ab55976d24aa4cdd4807292 new file mode 100644 index 00000000..6a221ec0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32e7d8698ab55976d24aa4cdd4807292 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32e8cb5ebfeb7a43369430b2bb5048bd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32e8cb5ebfeb7a43369430b2bb5048bd new file mode 100644 index 00000000..7f266f81 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/32/32e8cb5ebfeb7a43369430b2bb5048bd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/3321f1b0f7aacdd5f2a06bcd9e328605 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/3321f1b0f7aacdd5f2a06bcd9e328605 new file mode 100644 index 00000000..d02919dc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/3321f1b0f7aacdd5f2a06bcd9e328605 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33225490b10a45e9f1d052e2e1694121 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33225490b10a45e9f1d052e2e1694121 new file mode 100644 index 00000000..b4b77caf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33225490b10a45e9f1d052e2e1694121 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33369115bb2cb553869a6c3574ef00ec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33369115bb2cb553869a6c3574ef00ec new file mode 100644 index 00000000..935a18ea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33369115bb2cb553869a6c3574ef00ec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/334412990fff340b8e605841ee94e9f8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/334412990fff340b8e605841ee94e9f8 new file mode 100644 index 00000000..d3c5f355 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/334412990fff340b8e605841ee94e9f8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/3347f107a2e4448dfe496dc1451e02a7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/3347f107a2e4448dfe496dc1451e02a7 new file mode 100644 index 00000000..ef23828d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/3347f107a2e4448dfe496dc1451e02a7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/335f1432012b6d4cc7b16b1634b0dcf2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/335f1432012b6d4cc7b16b1634b0dcf2 new file mode 100644 index 00000000..c03450c9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/335f1432012b6d4cc7b16b1634b0dcf2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/336ed976138bd48aa3d1de5a06ba0e07 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/336ed976138bd48aa3d1de5a06ba0e07 new file mode 100644 index 00000000..29461f8f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/336ed976138bd48aa3d1de5a06ba0e07 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33788edf6cc92d8b036a1b8b881f436e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33788edf6cc92d8b036a1b8b881f436e new file mode 100644 index 00000000..5f03b941 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33788edf6cc92d8b036a1b8b881f436e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/338ea0677551fb5f00d7e5cbe709da67 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/338ea0677551fb5f00d7e5cbe709da67 new file mode 100644 index 00000000..9828429d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/338ea0677551fb5f00d7e5cbe709da67 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/339bde62246c8657ca2e86f295f9a98c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/339bde62246c8657ca2e86f295f9a98c new file mode 100644 index 00000000..4aa344db Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/339bde62246c8657ca2e86f295f9a98c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33c98e19e6eca82a8000c39529521f01 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33c98e19e6eca82a8000c39529521f01 new file mode 100644 index 00000000..cd572104 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33c98e19e6eca82a8000c39529521f01 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33ca24f8680e9efd4751423373d4b09d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33ca24f8680e9efd4751423373d4b09d new file mode 100644 index 00000000..d09f8f23 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33ca24f8680e9efd4751423373d4b09d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33d9ac6f7ed3663aaac09680c79b51d1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33d9ac6f7ed3663aaac09680c79b51d1 new file mode 100644 index 00000000..87a610ec Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/33/33d9ac6f7ed3663aaac09680c79b51d1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/3406bfd2a55a9372670953dd8673ec8f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/3406bfd2a55a9372670953dd8673ec8f new file mode 100644 index 00000000..bc65918c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/3406bfd2a55a9372670953dd8673ec8f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/3414212898b6a3afd6fe839ec7e08a53 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/3414212898b6a3afd6fe839ec7e08a53 new file mode 100644 index 00000000..8ace1d27 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/3414212898b6a3afd6fe839ec7e08a53 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/347972a0cae0c822ab6008eeae759df9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/347972a0cae0c822ab6008eeae759df9 new file mode 100644 index 00000000..a3651704 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/347972a0cae0c822ab6008eeae759df9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/348d98691d8a58fe84ea9bd9c8feb186 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/348d98691d8a58fe84ea9bd9c8feb186 new file mode 100644 index 00000000..2c0f0f7c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/348d98691d8a58fe84ea9bd9c8feb186 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/34b93b06b47c1ae72722df857703c3e5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/34b93b06b47c1ae72722df857703c3e5 new file mode 100644 index 00000000..d67f8a1e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/34b93b06b47c1ae72722df857703c3e5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/34b9924df65fc08613ad078517c94778 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/34b9924df65fc08613ad078517c94778 new file mode 100644 index 00000000..40290357 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/34b9924df65fc08613ad078517c94778 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/34d391dbf3a4b3f36c671d7247fd59ba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/34d391dbf3a4b3f36c671d7247fd59ba new file mode 100644 index 00000000..e542e4fb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/34d391dbf3a4b3f36c671d7247fd59ba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/34ef0eaf39eb38b115ef6005eb280c0a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/34ef0eaf39eb38b115ef6005eb280c0a new file mode 100644 index 00000000..600d7c28 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/34/34ef0eaf39eb38b115ef6005eb280c0a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/352144688359d8fcbebc371ee532dd53 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/352144688359d8fcbebc371ee532dd53 new file mode 100644 index 00000000..2d241032 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/352144688359d8fcbebc371ee532dd53 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/354e105b37bf8b107ff822047a6b4ae0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/354e105b37bf8b107ff822047a6b4ae0 new file mode 100644 index 00000000..4022fe6a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/354e105b37bf8b107ff822047a6b4ae0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/357cd9f9815690c9c8f8c92221a75de7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/357cd9f9815690c9c8f8c92221a75de7 new file mode 100644 index 00000000..2e832f5c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/357cd9f9815690c9c8f8c92221a75de7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/35963732964b37dde5bf893ee23bc7dd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/35963732964b37dde5bf893ee23bc7dd new file mode 100644 index 00000000..3e2f1fc0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/35963732964b37dde5bf893ee23bc7dd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/359f884f80034507f976048a763035ec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/359f884f80034507f976048a763035ec new file mode 100644 index 00000000..b4328d09 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/359f884f80034507f976048a763035ec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/35af675c24a056948fcc9536dfdec92d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/35af675c24a056948fcc9536dfdec92d new file mode 100644 index 00000000..94317a1b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/35af675c24a056948fcc9536dfdec92d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/35b62563b877caa0cf2675d15a7d676f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/35b62563b877caa0cf2675d15a7d676f new file mode 100644 index 00000000..af810a59 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/35b62563b877caa0cf2675d15a7d676f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/35fa424524e8d00ae26c1826303ab736 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/35fa424524e8d00ae26c1826303ab736 new file mode 100644 index 00000000..af3f6de7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/35/35fa424524e8d00ae26c1826303ab736 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/360d35bd3c08c0e0f6be0f6e243be93a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/360d35bd3c08c0e0f6be0f6e243be93a new file mode 100644 index 00000000..fd0ceae7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/360d35bd3c08c0e0f6be0f6e243be93a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/360e2fba6114d93a7ae827a6abc952bf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/360e2fba6114d93a7ae827a6abc952bf new file mode 100644 index 00000000..f84c1b3c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/360e2fba6114d93a7ae827a6abc952bf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/360e8e7bb3042e853b1451e5a9634f7c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/360e8e7bb3042e853b1451e5a9634f7c new file mode 100644 index 00000000..c583c6d4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/360e8e7bb3042e853b1451e5a9634f7c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/361f9e0afe18b59cb8b427642f0fc367 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/361f9e0afe18b59cb8b427642f0fc367 new file mode 100644 index 00000000..8d6bce69 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/361f9e0afe18b59cb8b427642f0fc367 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/362289d2a80796a62d71d126b8e8b614 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/362289d2a80796a62d71d126b8e8b614 new file mode 100644 index 00000000..af8d51fc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/362289d2a80796a62d71d126b8e8b614 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/36adccd6cb56bf67f7e0e0a90e60bc4f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/36adccd6cb56bf67f7e0e0a90e60bc4f new file mode 100644 index 00000000..eae021af Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/36adccd6cb56bf67f7e0e0a90e60bc4f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/36c5453152489ab45fa93b71199f8d64 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/36c5453152489ab45fa93b71199f8d64 new file mode 100644 index 00000000..722e0e61 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/36/36c5453152489ab45fa93b71199f8d64 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/3707d91f720c0e4469ec5aa4abe37799 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/3707d91f720c0e4469ec5aa4abe37799 new file mode 100644 index 00000000..cd28d264 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/3707d91f720c0e4469ec5aa4abe37799 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/3735113775a0579171a79e8ba5c9f853 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/3735113775a0579171a79e8ba5c9f853 new file mode 100644 index 00000000..67345449 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/3735113775a0579171a79e8ba5c9f853 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/3758464aad7fe4bd461b300a7d2f4ab5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/3758464aad7fe4bd461b300a7d2f4ab5 new file mode 100644 index 00000000..6fb0e42c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/3758464aad7fe4bd461b300a7d2f4ab5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/375aac0615c08afe143ecddff6264782 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/375aac0615c08afe143ecddff6264782 new file mode 100644 index 00000000..50726d01 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/375aac0615c08afe143ecddff6264782 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/375e03ae10b8281a264dc99bc673c950 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/375e03ae10b8281a264dc99bc673c950 new file mode 100644 index 00000000..999a77c4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/375e03ae10b8281a264dc99bc673c950 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/377e402224dbe53488e1c22034ca996f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/377e402224dbe53488e1c22034ca996f new file mode 100644 index 00000000..8aa0d932 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/377e402224dbe53488e1c22034ca996f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/3799d5cc1dd8690cacca4c7999911379 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/3799d5cc1dd8690cacca4c7999911379 new file mode 100644 index 00000000..c8d4b6d5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/3799d5cc1dd8690cacca4c7999911379 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37afbd2d0c3451f8faa5e976064ced85 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37afbd2d0c3451f8faa5e976064ced85 new file mode 100644 index 00000000..644ac0f7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37afbd2d0c3451f8faa5e976064ced85 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37e18ea2b0a68396b1e08fd4bd34f17d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37e18ea2b0a68396b1e08fd4bd34f17d new file mode 100644 index 00000000..714c5803 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37e18ea2b0a68396b1e08fd4bd34f17d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37e1f6c3ebedd9542497411488fa1f42 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37e1f6c3ebedd9542497411488fa1f42 new file mode 100644 index 00000000..08b837d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37e1f6c3ebedd9542497411488fa1f42 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37f3b45101c7eb401c4abdc5178bfe1d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37f3b45101c7eb401c4abdc5178bfe1d new file mode 100644 index 00000000..44490d34 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37f3b45101c7eb401c4abdc5178bfe1d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37f4f4ecb3c111bc21c5206b84190c04 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37f4f4ecb3c111bc21c5206b84190c04 new file mode 100644 index 00000000..a7d010f7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37f4f4ecb3c111bc21c5206b84190c04 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37fc262e2eeb98298e47a3c67ecf3d6c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37fc262e2eeb98298e47a3c67ecf3d6c new file mode 100644 index 00000000..f0ac35ed Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/37/37fc262e2eeb98298e47a3c67ecf3d6c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/3821e0053f790f8872f036408cb06eb4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/3821e0053f790f8872f036408cb06eb4 new file mode 100644 index 00000000..dbc7895a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/3821e0053f790f8872f036408cb06eb4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/383d71f981171468a922efb9f36356aa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/383d71f981171468a922efb9f36356aa new file mode 100644 index 00000000..c078d1c7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/383d71f981171468a922efb9f36356aa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/3877ecf5d968b423d50ecf3379a92b30 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/3877ecf5d968b423d50ecf3379a92b30 new file mode 100644 index 00000000..916a345f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/3877ecf5d968b423d50ecf3379a92b30 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38881e5248761a7e9e937026bc998a57 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38881e5248761a7e9e937026bc998a57 new file mode 100644 index 00000000..b273178c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38881e5248761a7e9e937026bc998a57 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/389e578f3b5b666d2a7850c09e2fdd57 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/389e578f3b5b666d2a7850c09e2fdd57 new file mode 100644 index 00000000..3f346df7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/389e578f3b5b666d2a7850c09e2fdd57 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38a8d3ffb4aa3d3b947d2c1d43b1a36a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38a8d3ffb4aa3d3b947d2c1d43b1a36a new file mode 100644 index 00000000..dd054abf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38a8d3ffb4aa3d3b947d2c1d43b1a36a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38d3a123604353a11890e09ceed57249 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38d3a123604353a11890e09ceed57249 new file mode 100644 index 00000000..27d42397 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38d3a123604353a11890e09ceed57249 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38eec0f8d929d5fe885e35a28d34499e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38eec0f8d929d5fe885e35a28d34499e new file mode 100644 index 00000000..93422045 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38eec0f8d929d5fe885e35a28d34499e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38f7b3af18f7f803f96d17a3c19fa49e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38f7b3af18f7f803f96d17a3c19fa49e new file mode 100644 index 00000000..0e15c75b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/38/38f7b3af18f7f803f96d17a3c19fa49e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/390436f81fd52c45a1de142130609443 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/390436f81fd52c45a1de142130609443 new file mode 100644 index 00000000..4499459b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/390436f81fd52c45a1de142130609443 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39305862fd6e9a509be14e25b1148136 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39305862fd6e9a509be14e25b1148136 new file mode 100644 index 00000000..f97fc540 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39305862fd6e9a509be14e25b1148136 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39496281a990dc16430eb470734e1481 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39496281a990dc16430eb470734e1481 new file mode 100644 index 00000000..e71434b0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39496281a990dc16430eb470734e1481 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/395b0a3d85d9b8556848c18b8c575f62 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/395b0a3d85d9b8556848c18b8c575f62 new file mode 100644 index 00000000..6d6df5b0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/395b0a3d85d9b8556848c18b8c575f62 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/396aa06907b2e84430a2b494040e30bb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/396aa06907b2e84430a2b494040e30bb new file mode 100644 index 00000000..7306f1b6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/396aa06907b2e84430a2b494040e30bb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/396bf81e43e7567eb417e935ffbc1cea b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/396bf81e43e7567eb417e935ffbc1cea new file mode 100644 index 00000000..06708c96 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/396bf81e43e7567eb417e935ffbc1cea differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/398b0f0e0a58bb20c64dddd14a3a8df8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/398b0f0e0a58bb20c64dddd14a3a8df8 new file mode 100644 index 00000000..d446ec47 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/398b0f0e0a58bb20c64dddd14a3a8df8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39a55c1caafd55e449f8e6789046d7ca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39a55c1caafd55e449f8e6789046d7ca new file mode 100644 index 00000000..5907c8c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39a55c1caafd55e449f8e6789046d7ca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39a69fb800de81620761fe1a0a722bb4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39a69fb800de81620761fe1a0a722bb4 new file mode 100644 index 00000000..6f0ed451 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39a69fb800de81620761fe1a0a722bb4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39c0839e7d80dd567da8b48999ac4f19 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39c0839e7d80dd567da8b48999ac4f19 new file mode 100644 index 00000000..65cb5ffa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39c0839e7d80dd567da8b48999ac4f19 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39c26eef3ce498b3df6eda4c9cf2d2f7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39c26eef3ce498b3df6eda4c9cf2d2f7 new file mode 100644 index 00000000..75880818 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39c26eef3ce498b3df6eda4c9cf2d2f7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39cb935c8c34522ffaa1ba9ef5b39d96 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39cb935c8c34522ffaa1ba9ef5b39d96 new file mode 100644 index 00000000..065bedac Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39cb935c8c34522ffaa1ba9ef5b39d96 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39d73dfb791c87653f4a20ae31c4bca1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39d73dfb791c87653f4a20ae31c4bca1 new file mode 100644 index 00000000..ee439da3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39d73dfb791c87653f4a20ae31c4bca1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39d7b729f84b6e68f526996ce3814128 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39d7b729f84b6e68f526996ce3814128 new file mode 100644 index 00000000..407af044 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39d7b729f84b6e68f526996ce3814128 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39f20a53bd1858d5cacf56c8687ac312 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39f20a53bd1858d5cacf56c8687ac312 new file mode 100644 index 00000000..ccd5b380 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/39/39f20a53bd1858d5cacf56c8687ac312 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a0b77288a6de7e21f75d0027a55d3f8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a0b77288a6de7e21f75d0027a55d3f8 new file mode 100644 index 00000000..a25b8b36 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a0b77288a6de7e21f75d0027a55d3f8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a1135868be64b1d1d561d695250e674 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a1135868be64b1d1d561d695250e674 new file mode 100644 index 00000000..56e87bf2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a1135868be64b1d1d561d695250e674 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a19a9cfcf3ffa59659afc2c667079a0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a19a9cfcf3ffa59659afc2c667079a0 new file mode 100644 index 00000000..2bd84921 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a19a9cfcf3ffa59659afc2c667079a0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a21f997a0ca6fc2b8e112c3c742db2e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a21f997a0ca6fc2b8e112c3c742db2e new file mode 100644 index 00000000..bd31f07b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a21f997a0ca6fc2b8e112c3c742db2e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a78856bdf2bcd0b4ef1463c729bc443 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a78856bdf2bcd0b4ef1463c729bc443 new file mode 100644 index 00000000..fec59f95 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a78856bdf2bcd0b4ef1463c729bc443 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a86025aa0b79b5b38c5c50029bb2dc5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a86025aa0b79b5b38c5c50029bb2dc5 new file mode 100644 index 00000000..20958f14 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3a86025aa0b79b5b38c5c50029bb2dc5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3aa3391e96dd3fe8be01122eda2f3705 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3aa3391e96dd3fe8be01122eda2f3705 new file mode 100644 index 00000000..8a371c9f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3aa3391e96dd3fe8be01122eda2f3705 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3adf715c7d1613a8f2826b4e2b805697 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3adf715c7d1613a8f2826b4e2b805697 new file mode 100644 index 00000000..c4a0e7d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3adf715c7d1613a8f2826b4e2b805697 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3afebe2fff931eed61e0443725b6ae93 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3afebe2fff931eed61e0443725b6ae93 new file mode 100644 index 00000000..68008ebf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3a/3afebe2fff931eed61e0443725b6ae93 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b0fe95259ed5917e12762f236e6881f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b0fe95259ed5917e12762f236e6881f new file mode 100644 index 00000000..320accfb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b0fe95259ed5917e12762f236e6881f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b2718502c9f943b7893c26a76612cf4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b2718502c9f943b7893c26a76612cf4 new file mode 100644 index 00000000..951d98e8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b2718502c9f943b7893c26a76612cf4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b3f2c2a76d336e68cd84013315f35f7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b3f2c2a76d336e68cd84013315f35f7 new file mode 100644 index 00000000..60ac9de7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b3f2c2a76d336e68cd84013315f35f7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b54f11da4d40597fb12d9075e9e4795 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b54f11da4d40597fb12d9075e9e4795 new file mode 100644 index 00000000..b58324d2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b54f11da4d40597fb12d9075e9e4795 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b936e32ae6a5eee0917e76b045dded8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b936e32ae6a5eee0917e76b045dded8 new file mode 100644 index 00000000..f22ac6a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b936e32ae6a5eee0917e76b045dded8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b9386c46d8826c62754e337c6411c61 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b9386c46d8826c62754e337c6411c61 new file mode 100644 index 00000000..03f64b28 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b9386c46d8826c62754e337c6411c61 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b9fa7d4156a49c8894ee41dc3942dec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b9fa7d4156a49c8894ee41dc3942dec new file mode 100644 index 00000000..5df2e017 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3b9fa7d4156a49c8894ee41dc3942dec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bad73a2433c369b8fc161a67d614eb1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bad73a2433c369b8fc161a67d614eb1 new file mode 100644 index 00000000..7fb78134 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bad73a2433c369b8fc161a67d614eb1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bb06f0e6d61e3563680442ec0c418e9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bb06f0e6d61e3563680442ec0c418e9 new file mode 100644 index 00000000..44db8a7c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bb06f0e6d61e3563680442ec0c418e9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bbb2be96226f922ab9b403ba993e4e0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bbb2be96226f922ab9b403ba993e4e0 new file mode 100644 index 00000000..2e8ea451 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bbb2be96226f922ab9b403ba993e4e0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bbeab3fcd8b2af984359642806809a3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bbeab3fcd8b2af984359642806809a3 new file mode 100644 index 00000000..b956884a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bbeab3fcd8b2af984359642806809a3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bc00c8576744d8fd51becedf2727b0f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bc00c8576744d8fd51becedf2727b0f new file mode 100644 index 00000000..7db07d62 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bc00c8576744d8fd51becedf2727b0f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bcef68debcd1d7c38056ddbc8d89d54 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bcef68debcd1d7c38056ddbc8d89d54 new file mode 100644 index 00000000..badc1206 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bcef68debcd1d7c38056ddbc8d89d54 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bd1755dec6b2635e3e785c6c290ff8f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bd1755dec6b2635e3e785c6c290ff8f new file mode 100644 index 00000000..d6c971ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bd1755dec6b2635e3e785c6c290ff8f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3be4c0373d5b2d37979762544933b64f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3be4c0373d5b2d37979762544933b64f new file mode 100644 index 00000000..590f9786 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3be4c0373d5b2d37979762544933b64f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3be9750cf2d0d19e6872c3cee6639b87 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3be9750cf2d0d19e6872c3cee6639b87 new file mode 100644 index 00000000..f0190e0e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3be9750cf2d0d19e6872c3cee6639b87 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bf50e910afcc6bb0fea0d656e72be1a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bf50e910afcc6bb0fea0d656e72be1a new file mode 100644 index 00000000..969fa590 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bf50e910afcc6bb0fea0d656e72be1a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bfc866eae8e6fd89daaa715fa4ca024 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bfc866eae8e6fd89daaa715fa4ca024 new file mode 100644 index 00000000..453f39f4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3b/3bfc866eae8e6fd89daaa715fa4ca024 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c1cb01ba8fc7e8c873e7010242d3017 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c1cb01ba8fc7e8c873e7010242d3017 new file mode 100644 index 00000000..839f5a9e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c1cb01ba8fc7e8c873e7010242d3017 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c444939c3bd2c134c89fb94b7c51c78 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c444939c3bd2c134c89fb94b7c51c78 new file mode 100644 index 00000000..41b2c33f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c444939c3bd2c134c89fb94b7c51c78 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c4bfbdca8b0807114b1cf4566872ca3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c4bfbdca8b0807114b1cf4566872ca3 new file mode 100644 index 00000000..a00f267d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c4bfbdca8b0807114b1cf4566872ca3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c5150590971f121ee996bd64a3a2a24 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c5150590971f121ee996bd64a3a2a24 new file mode 100644 index 00000000..160d04f6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c5150590971f121ee996bd64a3a2a24 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c6c7494c1d62317d1b762f9e2ba58c4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c6c7494c1d62317d1b762f9e2ba58c4 new file mode 100644 index 00000000..cfb297bb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c6c7494c1d62317d1b762f9e2ba58c4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c6f5373ab117ea70f2ddcea87772670 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c6f5373ab117ea70f2ddcea87772670 new file mode 100644 index 00000000..460dbc7c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c6f5373ab117ea70f2ddcea87772670 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c8de561862a36b566528b78747d4fd3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c8de561862a36b566528b78747d4fd3 new file mode 100644 index 00000000..0d99ab75 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c8de561862a36b566528b78747d4fd3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c932004ac38dd82fb23a7519445b4ab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c932004ac38dd82fb23a7519445b4ab new file mode 100644 index 00000000..830327d4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c932004ac38dd82fb23a7519445b4ab differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c9d7d52bb1ee6b5da10c68a65cc1236 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c9d7d52bb1ee6b5da10c68a65cc1236 new file mode 100644 index 00000000..6e5853d1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3c9d7d52bb1ee6b5da10c68a65cc1236 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3cd68ec47fe8327c3c1d1c5ad16966e5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3cd68ec47fe8327c3c1d1c5ad16966e5 new file mode 100644 index 00000000..220fe417 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3cd68ec47fe8327c3c1d1c5ad16966e5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3cd92b458d18fec6ebe0f94659dbf77f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3cd92b458d18fec6ebe0f94659dbf77f new file mode 100644 index 00000000..eceba2e6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3cd92b458d18fec6ebe0f94659dbf77f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3cf382c9f3d0214daa367b7367a3b766 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3cf382c9f3d0214daa367b7367a3b766 new file mode 100644 index 00000000..f8ce3468 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3c/3cf382c9f3d0214daa367b7367a3b766 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d025a5b7bcd6d53bf9c80d15b7145b6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d025a5b7bcd6d53bf9c80d15b7145b6 new file mode 100644 index 00000000..30ce7df4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d025a5b7bcd6d53bf9c80d15b7145b6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d0ec65d516687c94fcf4a9fc45339af b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d0ec65d516687c94fcf4a9fc45339af new file mode 100644 index 00000000..c546c828 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d0ec65d516687c94fcf4a9fc45339af differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d26fcd0695db54b217627ecac842a7b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d26fcd0695db54b217627ecac842a7b new file mode 100644 index 00000000..5d66df0f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d26fcd0695db54b217627ecac842a7b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d272b25a02f9739a9e4f1b80a06cce3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d272b25a02f9739a9e4f1b80a06cce3 new file mode 100644 index 00000000..53a3bceb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d272b25a02f9739a9e4f1b80a06cce3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d5cab15c04c9cf5b6c90dffe66a80e1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d5cab15c04c9cf5b6c90dffe66a80e1 new file mode 100644 index 00000000..909675bf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d5cab15c04c9cf5b6c90dffe66a80e1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d5e27025d24534417d873857485dfc6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d5e27025d24534417d873857485dfc6 new file mode 100644 index 00000000..1371c9d2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d5e27025d24534417d873857485dfc6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d60ace5e6e6af6643010e127dd581b2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d60ace5e6e6af6643010e127dd581b2 new file mode 100644 index 00000000..03f12d0a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d60ace5e6e6af6643010e127dd581b2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d6f81281dfb48e7351c011d8e71837d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d6f81281dfb48e7351c011d8e71837d new file mode 100644 index 00000000..0ffa25ec Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d6f81281dfb48e7351c011d8e71837d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d7a30f7c759c61d5901c82e7c467552 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d7a30f7c759c61d5901c82e7c467552 new file mode 100644 index 00000000..028fb494 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d7a30f7c759c61d5901c82e7c467552 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d7ae965733683bbe669890c06cbd247 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d7ae965733683bbe669890c06cbd247 new file mode 100644 index 00000000..822aaad0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d7ae965733683bbe669890c06cbd247 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d7db2f1c77154dad75e103f2c28637f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d7db2f1c77154dad75e103f2c28637f new file mode 100644 index 00000000..7e57af17 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d7db2f1c77154dad75e103f2c28637f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d8f05b4e4b563778fb5ee4d69784613 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d8f05b4e4b563778fb5ee4d69784613 new file mode 100644 index 00000000..d78680d3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d8f05b4e4b563778fb5ee4d69784613 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d8f3a804eca63002702c116ba20c474 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d8f3a804eca63002702c116ba20c474 new file mode 100644 index 00000000..0d025716 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3d8f3a804eca63002702c116ba20c474 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3da906d85f889f1c231527ab5cf49c44 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3da906d85f889f1c231527ab5cf49c44 new file mode 100644 index 00000000..68f7cc6a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3da906d85f889f1c231527ab5cf49c44 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3dabfbbd2ffe43450ef347c9510ffb44 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3dabfbbd2ffe43450ef347c9510ffb44 new file mode 100644 index 00000000..68de47ea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3dabfbbd2ffe43450ef347c9510ffb44 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3db6c6cb463865991700a4ab7405e781 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3db6c6cb463865991700a4ab7405e781 new file mode 100644 index 00000000..d37ab481 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3db6c6cb463865991700a4ab7405e781 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3dd3d6542d1fe47fc5f9d93d00645387 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3dd3d6542d1fe47fc5f9d93d00645387 new file mode 100644 index 00000000..25765475 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3dd3d6542d1fe47fc5f9d93d00645387 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3de0ef6489d56cb5f1cabed3ffb86640 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3de0ef6489d56cb5f1cabed3ffb86640 new file mode 100644 index 00000000..ba23ce95 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3de0ef6489d56cb5f1cabed3ffb86640 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3de75945f77e3a6070ee4b41a7e8a330 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3de75945f77e3a6070ee4b41a7e8a330 new file mode 100644 index 00000000..bae53eee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3de75945f77e3a6070ee4b41a7e8a330 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3df16d0e9976dc558b580fd509b87f0f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3df16d0e9976dc558b580fd509b87f0f new file mode 100644 index 00000000..ace0b303 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3d/3df16d0e9976dc558b580fd509b87f0f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e10cc549ec73be639afc19077f890d3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e10cc549ec73be639afc19077f890d3 new file mode 100644 index 00000000..b59c1e25 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e10cc549ec73be639afc19077f890d3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e1a4685db85538aa88493b9ffe803d3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e1a4685db85538aa88493b9ffe803d3 new file mode 100644 index 00000000..72d39fae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e1a4685db85538aa88493b9ffe803d3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e2035371347c6b73500f97f97c7c41b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e2035371347c6b73500f97f97c7c41b new file mode 100644 index 00000000..2eacfa5a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e2035371347c6b73500f97f97c7c41b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e32744e90c84af6db21d0ca6c47687f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e32744e90c84af6db21d0ca6c47687f new file mode 100644 index 00000000..5cbddfbb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e32744e90c84af6db21d0ca6c47687f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e5af92cf683030b12aac70a70e496b7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e5af92cf683030b12aac70a70e496b7 new file mode 100644 index 00000000..46699637 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e5af92cf683030b12aac70a70e496b7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e8e0d7838edca070d0453f19f2ba2a3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e8e0d7838edca070d0453f19f2ba2a3 new file mode 100644 index 00000000..75c66e7d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3e8e0d7838edca070d0453f19f2ba2a3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ea4d9b1d3b58d5903fb36dde572e3c7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ea4d9b1d3b58d5903fb36dde572e3c7 new file mode 100644 index 00000000..dff6bca3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ea4d9b1d3b58d5903fb36dde572e3c7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ec517bf1161e3e731053438e4709176 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ec517bf1161e3e731053438e4709176 new file mode 100644 index 00000000..c778d3f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ec517bf1161e3e731053438e4709176 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ecaf07f9f199b099c6dd408cccbb8ee b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ecaf07f9f199b099c6dd408cccbb8ee new file mode 100644 index 00000000..81961860 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ecaf07f9f199b099c6dd408cccbb8ee differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ed41432afd3dd397784c7ce9fbfd421 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ed41432afd3dd397784c7ce9fbfd421 new file mode 100644 index 00000000..e6a8b61d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ed41432afd3dd397784c7ce9fbfd421 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ee40cc065b014e6093865419d32e634 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ee40cc065b014e6093865419d32e634 new file mode 100644 index 00000000..703f7a5a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ee40cc065b014e6093865419d32e634 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ef2c88f1d76b7b9e78f28314330b386 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ef2c88f1d76b7b9e78f28314330b386 new file mode 100644 index 00000000..c680ed3b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3e/3ef2c88f1d76b7b9e78f28314330b386 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f19d3abc7a8c3d2732461afe188da9b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f19d3abc7a8c3d2732461afe188da9b new file mode 100644 index 00000000..fc9d081f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f19d3abc7a8c3d2732461afe188da9b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f2474ac73b93b118ccb4cc1cedd6d76 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f2474ac73b93b118ccb4cc1cedd6d76 new file mode 100644 index 00000000..8da0570a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f2474ac73b93b118ccb4cc1cedd6d76 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f2e74c4d27f6d592506e7d6ed7286b1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f2e74c4d27f6d592506e7d6ed7286b1 new file mode 100644 index 00000000..203d076a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f2e74c4d27f6d592506e7d6ed7286b1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f46033b0d35337f93de766f543f024b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f46033b0d35337f93de766f543f024b new file mode 100644 index 00000000..c7f561a8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f46033b0d35337f93de766f543f024b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f4b520dc0b84778b5cf4d0cbdd70873 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f4b520dc0b84778b5cf4d0cbdd70873 new file mode 100644 index 00000000..e1467136 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f4b520dc0b84778b5cf4d0cbdd70873 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f4dfa8de8f5277ed970a6d4412f72c8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f4dfa8de8f5277ed970a6d4412f72c8 new file mode 100644 index 00000000..7f310175 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f4dfa8de8f5277ed970a6d4412f72c8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f6bf5fc5e1ea00a8194a5d7a584bfc4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f6bf5fc5e1ea00a8194a5d7a584bfc4 new file mode 100644 index 00000000..86df5c5e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f6bf5fc5e1ea00a8194a5d7a584bfc4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f6c93e08bb042d87aa54385f0523c74 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f6c93e08bb042d87aa54385f0523c74 new file mode 100644 index 00000000..6f5e3fc0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f6c93e08bb042d87aa54385f0523c74 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f86119a7d0baa7dbdea54ba0b97f829 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f86119a7d0baa7dbdea54ba0b97f829 new file mode 100644 index 00000000..2dd94448 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f86119a7d0baa7dbdea54ba0b97f829 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f899ce53f0d0f350fb4477f79bf10e5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f899ce53f0d0f350fb4477f79bf10e5 new file mode 100644 index 00000000..70072e76 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f899ce53f0d0f350fb4477f79bf10e5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f95ce1516380370f5e92f9c38497181 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f95ce1516380370f5e92f9c38497181 new file mode 100644 index 00000000..4e5e8b8a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f95ce1516380370f5e92f9c38497181 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f9e2091d9732a10436dcfce8454e03e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f9e2091d9732a10436dcfce8454e03e new file mode 100644 index 00000000..30ce9613 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3f9e2091d9732a10436dcfce8454e03e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3facc92c5ca4aae893ad1b131f5ad204 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3facc92c5ca4aae893ad1b131f5ad204 new file mode 100644 index 00000000..4937b604 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3facc92c5ca4aae893ad1b131f5ad204 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fadbf6378d4d7ecf89fca62e20b7c93 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fadbf6378d4d7ecf89fca62e20b7c93 new file mode 100644 index 00000000..4d8565a8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fadbf6378d4d7ecf89fca62e20b7c93 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fc2642aa99ec08e5b61422d2f0a8c33 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fc2642aa99ec08e5b61422d2f0a8c33 new file mode 100644 index 00000000..8295ed4c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fc2642aa99ec08e5b61422d2f0a8c33 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fc82ae9127491ecbdec7abf1ee4c836 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fc82ae9127491ecbdec7abf1ee4c836 new file mode 100644 index 00000000..552414ae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fc82ae9127491ecbdec7abf1ee4c836 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fd6b39e1dbb5de0edfb0b07dd20d178 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fd6b39e1dbb5de0edfb0b07dd20d178 new file mode 100644 index 00000000..276b183a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fd6b39e1dbb5de0edfb0b07dd20d178 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fd947b82e6abec1429c4a54f0417b2c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fd947b82e6abec1429c4a54f0417b2c new file mode 100644 index 00000000..381df0f2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fd947b82e6abec1429c4a54f0417b2c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fe10f436c558f9b078663c4b265bff6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fe10f436c558f9b078663c4b265bff6 new file mode 100644 index 00000000..6efd83d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/3f/3fe10f436c558f9b078663c4b265bff6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40033978a2d7bb85a1b3a24a0c622495 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40033978a2d7bb85a1b3a24a0c622495 new file mode 100644 index 00000000..aaf37be6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40033978a2d7bb85a1b3a24a0c622495 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40047c08d3595d382d2c72638311e23a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40047c08d3595d382d2c72638311e23a new file mode 100644 index 00000000..1b2361be Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40047c08d3595d382d2c72638311e23a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/4008ea83345a640514de6fde7c44ded3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/4008ea83345a640514de6fde7c44ded3 new file mode 100644 index 00000000..6dc21afa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/4008ea83345a640514de6fde7c44ded3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/401daf3f49e8c30c7c3714ff667a9ca2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/401daf3f49e8c30c7c3714ff667a9ca2 new file mode 100644 index 00000000..5c093448 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/401daf3f49e8c30c7c3714ff667a9ca2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40283e7b5c330a6bc81df2d43d597ab0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40283e7b5c330a6bc81df2d43d597ab0 new file mode 100644 index 00000000..2f923d87 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40283e7b5c330a6bc81df2d43d597ab0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/404d4f3564fa727638ea8e48bcc5bebd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/404d4f3564fa727638ea8e48bcc5bebd new file mode 100644 index 00000000..ee508aaa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/404d4f3564fa727638ea8e48bcc5bebd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/405d8c4314e83ae9aabce33d7e58debc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/405d8c4314e83ae9aabce33d7e58debc new file mode 100644 index 00000000..c6ba9d13 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/405d8c4314e83ae9aabce33d7e58debc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40638ab8e9eb44d26d530983de0c8880 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40638ab8e9eb44d26d530983de0c8880 new file mode 100644 index 00000000..e60be43a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40638ab8e9eb44d26d530983de0c8880 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/407c01617425ef1f2aa5951f8904ca53 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/407c01617425ef1f2aa5951f8904ca53 new file mode 100644 index 00000000..85e37d04 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/407c01617425ef1f2aa5951f8904ca53 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/4098f2aabd2300f67b5cad0284ef060e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/4098f2aabd2300f67b5cad0284ef060e new file mode 100644 index 00000000..e6cb5598 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/4098f2aabd2300f67b5cad0284ef060e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40b2cc1accc502f25de4ec80e10a22a1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40b2cc1accc502f25de4ec80e10a22a1 new file mode 100644 index 00000000..2579a5c8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40b2cc1accc502f25de4ec80e10a22a1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40db81c2a8e239a85ffce956a4da9582 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40db81c2a8e239a85ffce956a4da9582 new file mode 100644 index 00000000..ad2c37b1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40db81c2a8e239a85ffce956a4da9582 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40e3bfc7c3eae448a89bfccd18fd9aa2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40e3bfc7c3eae448a89bfccd18fd9aa2 new file mode 100644 index 00000000..7a34b742 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40e3bfc7c3eae448a89bfccd18fd9aa2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40ebd9d8c9000624355ecd5f84205513 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40ebd9d8c9000624355ecd5f84205513 new file mode 100644 index 00000000..1be45da9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/40/40ebd9d8c9000624355ecd5f84205513 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/4106e299bb8677f365df6e8dcb69acb1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/4106e299bb8677f365df6e8dcb69acb1 new file mode 100644 index 00000000..9da09ddf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/4106e299bb8677f365df6e8dcb69acb1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41332347429d0c222d4da258729ea21d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41332347429d0c222d4da258729ea21d new file mode 100644 index 00000000..c5dee4c2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41332347429d0c222d4da258729ea21d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41472ee0262b052da83336dc85b5c01c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41472ee0262b052da83336dc85b5c01c new file mode 100644 index 00000000..5630077d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41472ee0262b052da83336dc85b5c01c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/414ceae7e3576c40313ae7fca07a2a1f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/414ceae7e3576c40313ae7fca07a2a1f new file mode 100644 index 00000000..d54b0460 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/414ceae7e3576c40313ae7fca07a2a1f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41675d7b641fe561d70cbd2b20a0d3b7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41675d7b641fe561d70cbd2b20a0d3b7 new file mode 100644 index 00000000..50cfbee9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41675d7b641fe561d70cbd2b20a0d3b7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/416e2e2a69e8a5a1064a878f76d0a157 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/416e2e2a69e8a5a1064a878f76d0a157 new file mode 100644 index 00000000..b961d3ed Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/416e2e2a69e8a5a1064a878f76d0a157 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/417c1b7135e25bcf95857c1a8d62b417 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/417c1b7135e25bcf95857c1a8d62b417 new file mode 100644 index 00000000..2faddca9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/417c1b7135e25bcf95857c1a8d62b417 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/417f50622d256fb439a0ff87182414a7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/417f50622d256fb439a0ff87182414a7 new file mode 100644 index 00000000..42258bf4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/417f50622d256fb439a0ff87182414a7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/418765248f43642ccc80e3e674a91625 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/418765248f43642ccc80e3e674a91625 new file mode 100644 index 00000000..6f7f4e79 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/418765248f43642ccc80e3e674a91625 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/418956d3689e60dbefe5c704e1eb5a32 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/418956d3689e60dbefe5c704e1eb5a32 new file mode 100644 index 00000000..b3c24d38 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/418956d3689e60dbefe5c704e1eb5a32 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41aa4f00afcc8a6294f5269a01b8c28c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41aa4f00afcc8a6294f5269a01b8c28c new file mode 100644 index 00000000..d8bb565e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41aa4f00afcc8a6294f5269a01b8c28c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41c5104b6663555fdefabfd60761e039 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41c5104b6663555fdefabfd60761e039 new file mode 100644 index 00000000..643a0118 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41c5104b6663555fdefabfd60761e039 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41c8817c89f3ebc2b45e03e19999cc5a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41c8817c89f3ebc2b45e03e19999cc5a new file mode 100644 index 00000000..748c8f46 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41c8817c89f3ebc2b45e03e19999cc5a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41de608599b7e0250c1b93049c9cf1f5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41de608599b7e0250c1b93049c9cf1f5 new file mode 100644 index 00000000..d0eaac81 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41de608599b7e0250c1b93049c9cf1f5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41ef04460a54477ed563acdf9a744022 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41ef04460a54477ed563acdf9a744022 new file mode 100644 index 00000000..5ad6f2fa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/41/41ef04460a54477ed563acdf9a744022 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/421f3a79e32a801e7b5a23e25833f034 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/421f3a79e32a801e7b5a23e25833f034 new file mode 100644 index 00000000..2a46ea10 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/421f3a79e32a801e7b5a23e25833f034 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/4230c2b68cc1c744d6e7277d06f0e906 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/4230c2b68cc1c744d6e7277d06f0e906 new file mode 100644 index 00000000..57ac136d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/4230c2b68cc1c744d6e7277d06f0e906 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/423ece7a643e74c26eb6e858a18fc56b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/423ece7a643e74c26eb6e858a18fc56b new file mode 100644 index 00000000..c429c6a1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/423ece7a643e74c26eb6e858a18fc56b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42487327d2aaf0426b5ce230944cb421 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42487327d2aaf0426b5ce230944cb421 new file mode 100644 index 00000000..bd36acbe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42487327d2aaf0426b5ce230944cb421 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/425f8be7e8db9a4efb80a40172253e0e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/425f8be7e8db9a4efb80a40172253e0e new file mode 100644 index 00000000..38f7c69e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/425f8be7e8db9a4efb80a40172253e0e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/4261c3de5c821cfb5489558ab5a09d9a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/4261c3de5c821cfb5489558ab5a09d9a new file mode 100644 index 00000000..778c2bfa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/4261c3de5c821cfb5489558ab5a09d9a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/427cd2029d907c76011b4a238c105bed b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/427cd2029d907c76011b4a238c105bed new file mode 100644 index 00000000..eea7b2c1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/427cd2029d907c76011b4a238c105bed differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42ab81ada7ea5f134376658df27c9677 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42ab81ada7ea5f134376658df27c9677 new file mode 100644 index 00000000..a31e3ebc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42ab81ada7ea5f134376658df27c9677 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42af604678d0f4f8c98e77323b402769 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42af604678d0f4f8c98e77323b402769 new file mode 100644 index 00000000..4705bc18 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42af604678d0f4f8c98e77323b402769 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42b268ebd4707198f937ec41b96d3c2c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42b268ebd4707198f937ec41b96d3c2c new file mode 100644 index 00000000..d3ada7ca Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42b268ebd4707198f937ec41b96d3c2c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42b793e44e96a2909524cf0046020087 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42b793e44e96a2909524cf0046020087 new file mode 100644 index 00000000..59de20c9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42b793e44e96a2909524cf0046020087 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42b9b86ddf189aa3fded18dcc47e545c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42b9b86ddf189aa3fded18dcc47e545c new file mode 100644 index 00000000..5625276b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42b9b86ddf189aa3fded18dcc47e545c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42baaf2968e8fdfda3b7d00cce601ef2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42baaf2968e8fdfda3b7d00cce601ef2 new file mode 100644 index 00000000..8e51ce61 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42baaf2968e8fdfda3b7d00cce601ef2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42bc58ac2f2c785743533ed4d2325fcf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42bc58ac2f2c785743533ed4d2325fcf new file mode 100644 index 00000000..27abd883 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42bc58ac2f2c785743533ed4d2325fcf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42cc930c64883750ba24f069024b99db b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42cc930c64883750ba24f069024b99db new file mode 100644 index 00000000..d7e3de14 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42cc930c64883750ba24f069024b99db differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42daa26eeb97a739afaf541fe4be948d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42daa26eeb97a739afaf541fe4be948d new file mode 100644 index 00000000..8d78a909 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/42/42daa26eeb97a739afaf541fe4be948d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4321aaa5899b3d117c09f23e4991ea9d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4321aaa5899b3d117c09f23e4991ea9d new file mode 100644 index 00000000..b7cda90d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4321aaa5899b3d117c09f23e4991ea9d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4325d2139016a8b047c406003e84bcc0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4325d2139016a8b047c406003e84bcc0 new file mode 100644 index 00000000..8916157b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4325d2139016a8b047c406003e84bcc0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4326f71a6d36c58c9b8942c7fb59f040 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4326f71a6d36c58c9b8942c7fb59f040 new file mode 100644 index 00000000..e6c466f9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4326f71a6d36c58c9b8942c7fb59f040 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/433621f3ff43f39d80d303ad6a4b9d44 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/433621f3ff43f39d80d303ad6a4b9d44 new file mode 100644 index 00000000..6981205a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/433621f3ff43f39d80d303ad6a4b9d44 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43596a45fde138fb5294ea773659cf0d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43596a45fde138fb5294ea773659cf0d new file mode 100644 index 00000000..80f2a497 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43596a45fde138fb5294ea773659cf0d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/435e54ca3d3eea6e34ce2cea4688a7ac b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/435e54ca3d3eea6e34ce2cea4688a7ac new file mode 100644 index 00000000..0e6d0db7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/435e54ca3d3eea6e34ce2cea4688a7ac differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/435f24f3ae5febc816753aac2070a08b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/435f24f3ae5febc816753aac2070a08b new file mode 100644 index 00000000..d2a815a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/435f24f3ae5febc816753aac2070a08b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4360170f46f4bf0e03980b8c7bfee401 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4360170f46f4bf0e03980b8c7bfee401 new file mode 100644 index 00000000..d8d7e176 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4360170f46f4bf0e03980b8c7bfee401 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43604d42af74855e4abc8459e6232df3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43604d42af74855e4abc8459e6232df3 new file mode 100644 index 00000000..efcd862b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43604d42af74855e4abc8459e6232df3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4370aafa2feaf6226de80c5587ca4938 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4370aafa2feaf6226de80c5587ca4938 new file mode 100644 index 00000000..81b71687 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4370aafa2feaf6226de80c5587ca4938 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/437377bc5498b22dd0a07eebff859eef b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/437377bc5498b22dd0a07eebff859eef new file mode 100644 index 00000000..343c05b1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/437377bc5498b22dd0a07eebff859eef differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4373ed21aa7f32904389bc5a307b1a00 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4373ed21aa7f32904389bc5a307b1a00 new file mode 100644 index 00000000..e967872e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/4373ed21aa7f32904389bc5a307b1a00 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/438277114630a22069e9c6b416092bb9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/438277114630a22069e9c6b416092bb9 new file mode 100644 index 00000000..be72941d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/438277114630a22069e9c6b416092bb9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/438a6ffe8210d1bfab91734c66074a20 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/438a6ffe8210d1bfab91734c66074a20 new file mode 100644 index 00000000..fee87d70 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/438a6ffe8210d1bfab91734c66074a20 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43a11292383cf62563e967545e489a0e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43a11292383cf62563e967545e489a0e new file mode 100644 index 00000000..197cc493 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43a11292383cf62563e967545e489a0e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43a2a3449f278e0fb70acffb31d5d80b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43a2a3449f278e0fb70acffb31d5d80b new file mode 100644 index 00000000..a08343bc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43a2a3449f278e0fb70acffb31d5d80b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43b679c9bd290a167376fb2201a4ac1b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43b679c9bd290a167376fb2201a4ac1b new file mode 100644 index 00000000..6d221aeb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43b679c9bd290a167376fb2201a4ac1b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43c1e254c4941127d36ee03dd6acb0f0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43c1e254c4941127d36ee03dd6acb0f0 new file mode 100644 index 00000000..e2dff0c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43c1e254c4941127d36ee03dd6acb0f0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43c914733a94708b292de44e4497b32e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43c914733a94708b292de44e4497b32e new file mode 100644 index 00000000..e201880a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43c914733a94708b292de44e4497b32e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43ddcdc3f0b1ee7e3648eacec2e3371e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43ddcdc3f0b1ee7e3648eacec2e3371e new file mode 100644 index 00000000..8044fbf4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43ddcdc3f0b1ee7e3648eacec2e3371e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43f1b0801ffa3530634709308ce90f6a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43f1b0801ffa3530634709308ce90f6a new file mode 100644 index 00000000..ceba48ab Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43f1b0801ffa3530634709308ce90f6a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43f3733cf77d69d595cad714925dd0d4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43f3733cf77d69d595cad714925dd0d4 new file mode 100644 index 00000000..09b06d0b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43f3733cf77d69d595cad714925dd0d4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43fa65e849a6468891070c00591381a0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43fa65e849a6468891070c00591381a0 new file mode 100644 index 00000000..fbdd7f10 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43fa65e849a6468891070c00591381a0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43fb193a54a2cd3867d8bec8f086bfba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43fb193a54a2cd3867d8bec8f086bfba new file mode 100644 index 00000000..a26dc735 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43fb193a54a2cd3867d8bec8f086bfba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43fc6271c921e2012d0708048e669514 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43fc6271c921e2012d0708048e669514 new file mode 100644 index 00000000..de5cf7d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/43/43fc6271c921e2012d0708048e669514 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44137f4c8706a1ae3cfa5615f5cc611c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44137f4c8706a1ae3cfa5615f5cc611c new file mode 100644 index 00000000..11e1959b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44137f4c8706a1ae3cfa5615f5cc611c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/4422eeaf10c67a01889c2b5b784db040 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/4422eeaf10c67a01889c2b5b784db040 new file mode 100644 index 00000000..7a9ece86 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/4422eeaf10c67a01889c2b5b784db040 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/446d907c07d74be3d8d6233582d81dcb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/446d907c07d74be3d8d6233582d81dcb new file mode 100644 index 00000000..12036477 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/446d907c07d74be3d8d6233582d81dcb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/447a68311b68ebd95bad2df9f47771ac b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/447a68311b68ebd95bad2df9f47771ac new file mode 100644 index 00000000..9fd3e24c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/447a68311b68ebd95bad2df9f47771ac differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/447c5d2158f71c768f0b4fb96fd27c71 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/447c5d2158f71c768f0b4fb96fd27c71 new file mode 100644 index 00000000..4b930fb9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/447c5d2158f71c768f0b4fb96fd27c71 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/447ddd80b46d6dba6b3da74e1c8c8f3c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/447ddd80b46d6dba6b3da74e1c8c8f3c new file mode 100644 index 00000000..f1becf03 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/447ddd80b46d6dba6b3da74e1c8c8f3c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44930b65bf92bf4cd1fcd9217a6362d0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44930b65bf92bf4cd1fcd9217a6362d0 new file mode 100644 index 00000000..ffdd262f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44930b65bf92bf4cd1fcd9217a6362d0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/449803b342d402b3bcc4eab090612a56 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/449803b342d402b3bcc4eab090612a56 new file mode 100644 index 00000000..7be92ae4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/449803b342d402b3bcc4eab090612a56 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44982c00d5a46ef1245890b1f761082f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44982c00d5a46ef1245890b1f761082f new file mode 100644 index 00000000..7f1b4407 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44982c00d5a46ef1245890b1f761082f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44aeef941a05fec4610870c0cae67e24 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44aeef941a05fec4610870c0cae67e24 new file mode 100644 index 00000000..0c56e33c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44aeef941a05fec4610870c0cae67e24 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44b6565d57ed5738d96c4e45d02daf94 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44b6565d57ed5738d96c4e45d02daf94 new file mode 100644 index 00000000..9d02db7e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44b6565d57ed5738d96c4e45d02daf94 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44cdfcc2c3ec447ab7a9c8b4c4513c94 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44cdfcc2c3ec447ab7a9c8b4c4513c94 new file mode 100644 index 00000000..f5adbeac Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44cdfcc2c3ec447ab7a9c8b4c4513c94 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44cf8541adb8399bc0cfae63e1317d5b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44cf8541adb8399bc0cfae63e1317d5b new file mode 100644 index 00000000..fa5c65a7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44cf8541adb8399bc0cfae63e1317d5b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44de285ae517f1ab10753b0dda722637 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44de285ae517f1ab10753b0dda722637 new file mode 100644 index 00000000..2425d2aa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44de285ae517f1ab10753b0dda722637 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44e1b8192a9e9b195531ea26e5c839f7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44e1b8192a9e9b195531ea26e5c839f7 new file mode 100644 index 00000000..3c74f0e5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44e1b8192a9e9b195531ea26e5c839f7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44f4343278dd2b6a1fecf657e1bac81a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44f4343278dd2b6a1fecf657e1bac81a new file mode 100644 index 00000000..e0383816 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/44/44f4343278dd2b6a1fecf657e1bac81a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45022cc253f43d942861c2605cb70ef9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45022cc253f43d942861c2605cb70ef9 new file mode 100644 index 00000000..ccba8a70 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45022cc253f43d942861c2605cb70ef9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/450eec0b8155203c56967d4d5b1aad93 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/450eec0b8155203c56967d4d5b1aad93 new file mode 100644 index 00000000..1ad94e27 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/450eec0b8155203c56967d4d5b1aad93 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/451add6277e7704caff64d14fae9a25d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/451add6277e7704caff64d14fae9a25d new file mode 100644 index 00000000..ba73210d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/451add6277e7704caff64d14fae9a25d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/451c6f16b6c5b87377395330d0c468a0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/451c6f16b6c5b87377395330d0c468a0 new file mode 100644 index 00000000..6bf67602 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/451c6f16b6c5b87377395330d0c468a0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/4540982b17d2df2a600f8276e2e8ecc6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/4540982b17d2df2a600f8276e2e8ecc6 new file mode 100644 index 00000000..20d2b6e5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/4540982b17d2df2a600f8276e2e8ecc6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/455122c466127a568ff5a9eba890a548 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/455122c466127a568ff5a9eba890a548 new file mode 100644 index 00000000..30c686c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/455122c466127a568ff5a9eba890a548 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/456652dadb9b6c32ea83642600f4ba26 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/456652dadb9b6c32ea83642600f4ba26 new file mode 100644 index 00000000..cb297964 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/456652dadb9b6c32ea83642600f4ba26 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/457322f72890ac9df4608be32ddfa0cf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/457322f72890ac9df4608be32ddfa0cf new file mode 100644 index 00000000..75ef2895 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/457322f72890ac9df4608be32ddfa0cf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/457a7fd166d7282d47bdc71c678bc4d2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/457a7fd166d7282d47bdc71c678bc4d2 new file mode 100644 index 00000000..c3e78cfa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/457a7fd166d7282d47bdc71c678bc4d2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/458d9327f7a4a9a94d7952b4d1bc7dee b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/458d9327f7a4a9a94d7952b4d1bc7dee new file mode 100644 index 00000000..d662f823 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/458d9327f7a4a9a94d7952b4d1bc7dee differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45ac0eba1b3d945691b55f8192e81c23 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45ac0eba1b3d945691b55f8192e81c23 new file mode 100644 index 00000000..bb4c2704 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45ac0eba1b3d945691b55f8192e81c23 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45bce022b9ccea56a4571b1154a8ef27 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45bce022b9ccea56a4571b1154a8ef27 new file mode 100644 index 00000000..e953fafa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45bce022b9ccea56a4571b1154a8ef27 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45d579105d4a46d243233bd8ab0817ab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45d579105d4a46d243233bd8ab0817ab new file mode 100644 index 00000000..5179bafa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45d579105d4a46d243233bd8ab0817ab differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45f42c2cc90067d2d60904633d8cda43 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45f42c2cc90067d2d60904633d8cda43 new file mode 100644 index 00000000..9bff7156 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/45/45f42c2cc90067d2d60904633d8cda43 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46031f8803a0898e1a1f09f8e74242ed b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46031f8803a0898e1a1f09f8e74242ed new file mode 100644 index 00000000..a540a48a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46031f8803a0898e1a1f09f8e74242ed differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/460b88ebee9c00a1273f107c6a139579 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/460b88ebee9c00a1273f107c6a139579 new file mode 100644 index 00000000..cdcf8f37 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/460b88ebee9c00a1273f107c6a139579 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/4616277a5d7e04d0a73df41a1d5aaed2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/4616277a5d7e04d0a73df41a1d5aaed2 new file mode 100644 index 00000000..8946694b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/4616277a5d7e04d0a73df41a1d5aaed2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46170a79cc4571ad4d8d20962fc5c229 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46170a79cc4571ad4d8d20962fc5c229 new file mode 100644 index 00000000..db17bc2f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46170a79cc4571ad4d8d20962fc5c229 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46191aaf29d80b02e7ae48f4dafa47ca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46191aaf29d80b02e7ae48f4dafa47ca new file mode 100644 index 00000000..17502167 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46191aaf29d80b02e7ae48f4dafa47ca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/463c1e38453923f581192ac5f75ca8ea b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/463c1e38453923f581192ac5f75ca8ea new file mode 100644 index 00000000..ba2ddf46 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/463c1e38453923f581192ac5f75ca8ea differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/4653b910eb8f7b13c838e366e0d922f0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/4653b910eb8f7b13c838e366e0d922f0 new file mode 100644 index 00000000..d27eb1e4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/4653b910eb8f7b13c838e366e0d922f0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46699441383cd2da2a5becd945461c79 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46699441383cd2da2a5becd945461c79 new file mode 100644 index 00000000..37ea1757 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46699441383cd2da2a5becd945461c79 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/4671091245e4240b0ab8a5216522b278 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/4671091245e4240b0ab8a5216522b278 new file mode 100644 index 00000000..4bf7a829 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/4671091245e4240b0ab8a5216522b278 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/468c51235b007b18cc346a689703eebb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/468c51235b007b18cc346a689703eebb new file mode 100644 index 00000000..e9abf526 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/468c51235b007b18cc346a689703eebb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46bc72d62e9981229bf346061dde7fdf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46bc72d62e9981229bf346061dde7fdf new file mode 100644 index 00000000..e98a7a25 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46bc72d62e9981229bf346061dde7fdf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46daef3c72e11b487d6c190e435d51dd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46daef3c72e11b487d6c190e435d51dd new file mode 100644 index 00000000..5f34ceb3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46daef3c72e11b487d6c190e435d51dd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46f7495e2942d1429440c26993375b76 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46f7495e2942d1429440c26993375b76 new file mode 100644 index 00000000..4ea2df57 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46f7495e2942d1429440c26993375b76 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46ff80122d217cfb976529295befef13 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46ff80122d217cfb976529295befef13 new file mode 100644 index 00000000..34850fb9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46ff80122d217cfb976529295befef13 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46ffe48e46c9a86e8e646b8efdd571ee b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46ffe48e46c9a86e8e646b8efdd571ee new file mode 100644 index 00000000..5b25f427 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/46/46ffe48e46c9a86e8e646b8efdd571ee differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47108774f7af1964171f67b55897656f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47108774f7af1964171f67b55897656f new file mode 100644 index 00000000..abd8a153 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47108774f7af1964171f67b55897656f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/471325af911a2834cbf0ab2de47bbb48 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/471325af911a2834cbf0ab2de47bbb48 new file mode 100644 index 00000000..421f2c6d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/471325af911a2834cbf0ab2de47bbb48 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/473c6d2ddf14ace98f5b62bfd1b2105b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/473c6d2ddf14ace98f5b62bfd1b2105b new file mode 100644 index 00000000..d9f4cdb0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/473c6d2ddf14ace98f5b62bfd1b2105b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/474f920c5778c1d9538c80781b9c782a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/474f920c5778c1d9538c80781b9c782a new file mode 100644 index 00000000..49b86159 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/474f920c5778c1d9538c80781b9c782a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/4769787b22bdf43d3f85e9cf2b696617 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/4769787b22bdf43d3f85e9cf2b696617 new file mode 100644 index 00000000..39ded176 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/4769787b22bdf43d3f85e9cf2b696617 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/476d222ebbf825de8d01def56538ef59 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/476d222ebbf825de8d01def56538ef59 new file mode 100644 index 00000000..3f6db932 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/476d222ebbf825de8d01def56538ef59 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47728a45b4780356711775b3c7641424 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47728a45b4780356711775b3c7641424 new file mode 100644 index 00000000..f578bcaf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47728a45b4780356711775b3c7641424 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/4773f4cb0b838df9f6d51f2e12127a56 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/4773f4cb0b838df9f6d51f2e12127a56 new file mode 100644 index 00000000..001d479f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/4773f4cb0b838df9f6d51f2e12127a56 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47755d0f7035fa9b0e91eb8c576c1fe3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47755d0f7035fa9b0e91eb8c576c1fe3 new file mode 100644 index 00000000..25d7541c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47755d0f7035fa9b0e91eb8c576c1fe3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/477c70a6ec8e2805d9aac4292c7dbf40 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/477c70a6ec8e2805d9aac4292c7dbf40 new file mode 100644 index 00000000..1a413ed5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/477c70a6ec8e2805d9aac4292c7dbf40 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/478f4dd09bdb5dd43d94ab082436ee38 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/478f4dd09bdb5dd43d94ab082436ee38 new file mode 100644 index 00000000..12664305 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/478f4dd09bdb5dd43d94ab082436ee38 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/479b3a14cf844c4ecdc528a0e85dd3b0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/479b3a14cf844c4ecdc528a0e85dd3b0 new file mode 100644 index 00000000..6a3521da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/479b3a14cf844c4ecdc528a0e85dd3b0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47b5443aea4f1bc629b02d3deff4aac0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47b5443aea4f1bc629b02d3deff4aac0 new file mode 100644 index 00000000..77849628 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47b5443aea4f1bc629b02d3deff4aac0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47c1fc593ed3053ebb3115294a1e30b8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47c1fc593ed3053ebb3115294a1e30b8 new file mode 100644 index 00000000..6444317d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47c1fc593ed3053ebb3115294a1e30b8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47c9f5d06a2f9fe3f685b0551ba139c0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47c9f5d06a2f9fe3f685b0551ba139c0 new file mode 100644 index 00000000..dea9ba86 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47c9f5d06a2f9fe3f685b0551ba139c0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47e58685cfaf63a63eec2b079b81bec9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47e58685cfaf63a63eec2b079b81bec9 new file mode 100644 index 00000000..00f8d195 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47e58685cfaf63a63eec2b079b81bec9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47e9610bfe6a085509e7eb028cb38d17 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47e9610bfe6a085509e7eb028cb38d17 new file mode 100644 index 00000000..87b1a72e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47e9610bfe6a085509e7eb028cb38d17 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47f0eaba26e0353bd5429db3db04f53e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47f0eaba26e0353bd5429db3db04f53e new file mode 100644 index 00000000..bd1cbdad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47f0eaba26e0353bd5429db3db04f53e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47f597df5c80cae66b20f4d906e071c5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47f597df5c80cae66b20f4d906e071c5 new file mode 100644 index 00000000..ef23196f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/47/47f597df5c80cae66b20f4d906e071c5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/4808e815c82aab4ae83ffa23a2aa9a26 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/4808e815c82aab4ae83ffa23a2aa9a26 new file mode 100644 index 00000000..324ba19a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/4808e815c82aab4ae83ffa23a2aa9a26 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/480f911c1a2de3efeabf793035af1563 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/480f911c1a2de3efeabf793035af1563 new file mode 100644 index 00000000..9f94b93b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/480f911c1a2de3efeabf793035af1563 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/480ff4d745a346dba4d264df1737bbeb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/480ff4d745a346dba4d264df1737bbeb new file mode 100644 index 00000000..a26817e1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/480ff4d745a346dba4d264df1737bbeb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/482a8557c32070a55c49688b66d7bf08 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/482a8557c32070a55c49688b66d7bf08 new file mode 100644 index 00000000..17cb1d24 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/482a8557c32070a55c49688b66d7bf08 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/4842cb3f8b152c35ad4b6820d6423324 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/4842cb3f8b152c35ad4b6820d6423324 new file mode 100644 index 00000000..a193d539 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/4842cb3f8b152c35ad4b6820d6423324 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/4853c9d58a771dcb24b1f569dc1c4e65 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/4853c9d58a771dcb24b1f569dc1c4e65 new file mode 100644 index 00000000..894a532e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/4853c9d58a771dcb24b1f569dc1c4e65 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/4854561ec8e481ec036a71b6c1a71319 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/4854561ec8e481ec036a71b6c1a71319 new file mode 100644 index 00000000..0ca5f938 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/4854561ec8e481ec036a71b6c1a71319 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/48b79c0f7c75cdf2baebcc91a7591d89 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/48b79c0f7c75cdf2baebcc91a7591d89 new file mode 100644 index 00000000..8e0e7329 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/48b79c0f7c75cdf2baebcc91a7591d89 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/48d7731a5d7e647265d43d3eaa29cd26 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/48d7731a5d7e647265d43d3eaa29cd26 new file mode 100644 index 00000000..bf399674 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/48d7731a5d7e647265d43d3eaa29cd26 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/48e88093388ebfd6abb6a45d656abef0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/48e88093388ebfd6abb6a45d656abef0 new file mode 100644 index 00000000..aa98e8ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/48e88093388ebfd6abb6a45d656abef0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/48eeda452d2d4f140a3b9e83416c7cef b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/48eeda452d2d4f140a3b9e83416c7cef new file mode 100644 index 00000000..cfe41916 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/48/48eeda452d2d4f140a3b9e83416c7cef differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/4914caeb4ee49aad608f61de7cb30698 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/4914caeb4ee49aad608f61de7cb30698 new file mode 100644 index 00000000..c8eb88d1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/4914caeb4ee49aad608f61de7cb30698 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/491577cb01cc15d80e67aaea877a3a19 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/491577cb01cc15d80e67aaea877a3a19 new file mode 100644 index 00000000..f8921a9e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/491577cb01cc15d80e67aaea877a3a19 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/4929050cf068fde857983d214af86bec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/4929050cf068fde857983d214af86bec new file mode 100644 index 00000000..025c4dfa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/4929050cf068fde857983d214af86bec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/492e6c28eb1a1423a59d9c2733e15508 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/492e6c28eb1a1423a59d9c2733e15508 new file mode 100644 index 00000000..82e71615 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/492e6c28eb1a1423a59d9c2733e15508 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/4943440c918fda8fb7e7896e0da5a5e6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/4943440c918fda8fb7e7896e0da5a5e6 new file mode 100644 index 00000000..ff8e0da4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/4943440c918fda8fb7e7896e0da5a5e6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49522d966c6eaf87b94023b1d296628a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49522d966c6eaf87b94023b1d296628a new file mode 100644 index 00000000..8666383a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49522d966c6eaf87b94023b1d296628a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/496a9c4771a5b14d2c2ee7b47ddbb7e9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/496a9c4771a5b14d2c2ee7b47ddbb7e9 new file mode 100644 index 00000000..8b2a1546 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/496a9c4771a5b14d2c2ee7b47ddbb7e9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/497182c14de52e413182613e1b79be96 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/497182c14de52e413182613e1b79be96 new file mode 100644 index 00000000..e9ac44f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/497182c14de52e413182613e1b79be96 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49b7265d5ae67c5d58498ca67169aeff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49b7265d5ae67c5d58498ca67169aeff new file mode 100644 index 00000000..79ff70c9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49b7265d5ae67c5d58498ca67169aeff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49bf58c97d37e5e87c098684c241f877 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49bf58c97d37e5e87c098684c241f877 new file mode 100644 index 00000000..96dcf1b9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49bf58c97d37e5e87c098684c241f877 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49c6a90ea7cc8a2daa183272af765a5a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49c6a90ea7cc8a2daa183272af765a5a new file mode 100644 index 00000000..4ffc886b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49c6a90ea7cc8a2daa183272af765a5a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49d2eeea2671ac045c01db8d4d0b370c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49d2eeea2671ac045c01db8d4d0b370c new file mode 100644 index 00000000..eeaf3351 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49d2eeea2671ac045c01db8d4d0b370c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49dfeb1a1f3c278795ce5ef81afb4804 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49dfeb1a1f3c278795ce5ef81afb4804 new file mode 100644 index 00000000..832a1fac Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49dfeb1a1f3c278795ce5ef81afb4804 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49f6a0175675b8b24bf1d37f5c8b0946 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49f6a0175675b8b24bf1d37f5c8b0946 new file mode 100644 index 00000000..8cb67649 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49f6a0175675b8b24bf1d37f5c8b0946 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49fb90171c6f1886c142cc209cad29fa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49fb90171c6f1886c142cc209cad29fa new file mode 100644 index 00000000..b153ee5c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/49/49fb90171c6f1886c142cc209cad29fa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a031fe175640b006a99d0956039c33d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a031fe175640b006a99d0956039c33d new file mode 100644 index 00000000..ec2ec3f1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a031fe175640b006a99d0956039c33d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a05916b2ac0b3e47b63f2510eb4f48e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a05916b2ac0b3e47b63f2510eb4f48e new file mode 100644 index 00000000..34aabd47 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a05916b2ac0b3e47b63f2510eb4f48e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a0b42e90a82ad88ea72c1cd69cf0f88 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a0b42e90a82ad88ea72c1cd69cf0f88 new file mode 100644 index 00000000..c1f54ba8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a0b42e90a82ad88ea72c1cd69cf0f88 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a1482af7d300c75286e848a760f6261 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a1482af7d300c75286e848a760f6261 new file mode 100644 index 00000000..8b20031b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a1482af7d300c75286e848a760f6261 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a25d2e819b28d907eee9c365c7939ee b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a25d2e819b28d907eee9c365c7939ee new file mode 100644 index 00000000..5d1beaa9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a25d2e819b28d907eee9c365c7939ee differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a6616d319cb010d0512e9bbb4bdb881 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a6616d319cb010d0512e9bbb4bdb881 new file mode 100644 index 00000000..fb1cfa1c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a6616d319cb010d0512e9bbb4bdb881 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a7476e297520a55c1101330412f615c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a7476e297520a55c1101330412f615c new file mode 100644 index 00000000..74c693d0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4a7476e297520a55c1101330412f615c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4ac2928479f4ad04d360fef1060eeb86 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4ac2928479f4ad04d360fef1060eeb86 new file mode 100644 index 00000000..ceeab1d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4ac2928479f4ad04d360fef1060eeb86 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4ac4549bb9cc3f37fc279c96e81cc6b7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4ac4549bb9cc3f37fc279c96e81cc6b7 new file mode 100644 index 00000000..dd6c0a09 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4ac4549bb9cc3f37fc279c96e81cc6b7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4af91e7c09ba9c57ce9a6a883f5b7b3f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4af91e7c09ba9c57ce9a6a883f5b7b3f new file mode 100644 index 00000000..e641a050 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4a/4af91e7c09ba9c57ce9a6a883f5b7b3f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b0ba75639b7f7b5c090270721fde9ac b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b0ba75639b7f7b5c090270721fde9ac new file mode 100644 index 00000000..0674ce4c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b0ba75639b7f7b5c090270721fde9ac differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b1734faf37223286125a6f4077e3b98 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b1734faf37223286125a6f4077e3b98 new file mode 100644 index 00000000..40fd31ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b1734faf37223286125a6f4077e3b98 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b1fbe509311592cb31262ce8e42a52e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b1fbe509311592cb31262ce8e42a52e new file mode 100644 index 00000000..a5f9288d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b1fbe509311592cb31262ce8e42a52e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b3c858bee622005db9088c4cef80fd9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b3c858bee622005db9088c4cef80fd9 new file mode 100644 index 00000000..93a95b44 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b3c858bee622005db9088c4cef80fd9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b3fd19d31fb52aab6d81a3fdf438100 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b3fd19d31fb52aab6d81a3fdf438100 new file mode 100644 index 00000000..8c9d16a1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b3fd19d31fb52aab6d81a3fdf438100 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b4062aea1ffe96decd4034b52c8b548 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b4062aea1ffe96decd4034b52c8b548 new file mode 100644 index 00000000..74ab8e65 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b4062aea1ffe96decd4034b52c8b548 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b58a65f1ffb98b64b36912ce7efbac9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b58a65f1ffb98b64b36912ce7efbac9 new file mode 100644 index 00000000..df03e0f6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b58a65f1ffb98b64b36912ce7efbac9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b60a91a641a6c68939e5d2a1998835f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b60a91a641a6c68939e5d2a1998835f new file mode 100644 index 00000000..55d087f9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b60a91a641a6c68939e5d2a1998835f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b794d332b081f1e75a7843f57b5d61e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b794d332b081f1e75a7843f57b5d61e new file mode 100644 index 00000000..20f62d2a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b794d332b081f1e75a7843f57b5d61e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b9b645e2fda0cc0778cbe669a47fdb1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b9b645e2fda0cc0778cbe669a47fdb1 new file mode 100644 index 00000000..6c00047c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4b9b645e2fda0cc0778cbe669a47fdb1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4ba2e99e9132d4f6620b7f8303314ed2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4ba2e99e9132d4f6620b7f8303314ed2 new file mode 100644 index 00000000..7f3ebaf4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4ba2e99e9132d4f6620b7f8303314ed2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4bcbda8c84f759c6ff9dc69a95057779 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4bcbda8c84f759c6ff9dc69a95057779 new file mode 100644 index 00000000..ed2befe7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4bcbda8c84f759c6ff9dc69a95057779 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4bd946438916ffec09948d7d9017858d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4bd946438916ffec09948d7d9017858d new file mode 100644 index 00000000..b375352e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4bd946438916ffec09948d7d9017858d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4bf22379c15baf90b4fe1c53040c58bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4bf22379c15baf90b4fe1c53040c58bc new file mode 100644 index 00000000..75266989 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4b/4bf22379c15baf90b4fe1c53040c58bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c01613b9fdd827fa8ee1528c94ea87a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c01613b9fdd827fa8ee1528c94ea87a new file mode 100644 index 00000000..bd0eb2af Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c01613b9fdd827fa8ee1528c94ea87a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c0a93ee6b251a9db48b2a382b1ac5f5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c0a93ee6b251a9db48b2a382b1ac5f5 new file mode 100644 index 00000000..3a24e70e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c0a93ee6b251a9db48b2a382b1ac5f5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c0e1935bc5c0729d104bf1f288ead33 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c0e1935bc5c0729d104bf1f288ead33 new file mode 100644 index 00000000..2523464d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c0e1935bc5c0729d104bf1f288ead33 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c0e8b6462b0fa2977c13b98d184cede b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c0e8b6462b0fa2977c13b98d184cede new file mode 100644 index 00000000..4012bea2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c0e8b6462b0fa2977c13b98d184cede differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c1a2683a48bf3120da546886264d719 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c1a2683a48bf3120da546886264d719 new file mode 100644 index 00000000..d1e1fce5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c1a2683a48bf3120da546886264d719 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c29e809acf1baf781dfbd5b6cc7b274 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c29e809acf1baf781dfbd5b6cc7b274 new file mode 100644 index 00000000..f9305f57 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c29e809acf1baf781dfbd5b6cc7b274 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c35dab3c6e22c64e31152f75e4429c9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c35dab3c6e22c64e31152f75e4429c9 new file mode 100644 index 00000000..9446853d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c35dab3c6e22c64e31152f75e4429c9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c3960108b73fed03d3a8462e6527f97 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c3960108b73fed03d3a8462e6527f97 new file mode 100644 index 00000000..5b14918b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c3960108b73fed03d3a8462e6527f97 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c73f635b073509b6791441adc3dcdba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c73f635b073509b6791441adc3dcdba new file mode 100644 index 00000000..f47ce1ab Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c73f635b073509b6791441adc3dcdba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c80dac1d3bc4e27872b7eac6e34e47e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c80dac1d3bc4e27872b7eac6e34e47e new file mode 100644 index 00000000..3b3d6f45 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c80dac1d3bc4e27872b7eac6e34e47e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c871a8c80b7f5cfcfbe1cc2bad2f097 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c871a8c80b7f5cfcfbe1cc2bad2f097 new file mode 100644 index 00000000..7033d447 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c871a8c80b7f5cfcfbe1cc2bad2f097 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c90d1be7ee609f715680d55e85ad8ed b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c90d1be7ee609f715680d55e85ad8ed new file mode 100644 index 00000000..b0098e7c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4c90d1be7ee609f715680d55e85ad8ed differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4ca7732ce5f1c17f49f5ef69c8c074f7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4ca7732ce5f1c17f49f5ef69c8c074f7 new file mode 100644 index 00000000..96adfb34 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4ca7732ce5f1c17f49f5ef69c8c074f7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cb731b39acd6a0011cb85e5118ab150 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cb731b39acd6a0011cb85e5118ab150 new file mode 100644 index 00000000..83bb4c5c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cb731b39acd6a0011cb85e5118ab150 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cba399a1e25f36b6c7eef32205478e7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cba399a1e25f36b6c7eef32205478e7 new file mode 100644 index 00000000..5c79bfbe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cba399a1e25f36b6c7eef32205478e7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cc1523473cbfe01007c444dcc449672 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cc1523473cbfe01007c444dcc449672 new file mode 100644 index 00000000..87f29627 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cc1523473cbfe01007c444dcc449672 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cc15a14189b4b0e1b4daf232cd60de6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cc15a14189b4b0e1b4daf232cd60de6 new file mode 100644 index 00000000..ba7239bc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cc15a14189b4b0e1b4daf232cd60de6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cf4dc6ac8beadc340b16a6d3cc70a71 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cf4dc6ac8beadc340b16a6d3cc70a71 new file mode 100644 index 00000000..edca1e30 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4c/4cf4dc6ac8beadc340b16a6d3cc70a71 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d321c71e51ca49ee869caf4f4af6803 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d321c71e51ca49ee869caf4f4af6803 new file mode 100644 index 00000000..675d4932 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d321c71e51ca49ee869caf4f4af6803 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d362111095036ca99fcb3f172d4d842 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d362111095036ca99fcb3f172d4d842 new file mode 100644 index 00000000..505d1ae3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d362111095036ca99fcb3f172d4d842 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d75682ef40ba050913d4e8e9ed38797 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d75682ef40ba050913d4e8e9ed38797 new file mode 100644 index 00000000..b89dcc25 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d75682ef40ba050913d4e8e9ed38797 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d80bae05628ff2bd3ebd94857aff0f5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d80bae05628ff2bd3ebd94857aff0f5 new file mode 100644 index 00000000..71721b65 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d80bae05628ff2bd3ebd94857aff0f5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d847d1bf9116f6ec151668e11944d57 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d847d1bf9116f6ec151668e11944d57 new file mode 100644 index 00000000..a4b10276 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4d847d1bf9116f6ec151668e11944d57 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4dd034984b6fc7d5b970492e2c24ee54 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4dd034984b6fc7d5b970492e2c24ee54 new file mode 100644 index 00000000..8e24c642 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4d/4dd034984b6fc7d5b970492e2c24ee54 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e0d6d4e95fc2b585789a7b80eeef0bd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e0d6d4e95fc2b585789a7b80eeef0bd new file mode 100644 index 00000000..6665c4f2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e0d6d4e95fc2b585789a7b80eeef0bd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e2583af99c2d9c363114eab74fff5e2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e2583af99c2d9c363114eab74fff5e2 new file mode 100644 index 00000000..5ac49488 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e2583af99c2d9c363114eab74fff5e2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e43215a77be5de091b333e6e0365222 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e43215a77be5de091b333e6e0365222 new file mode 100644 index 00000000..5c303295 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e43215a77be5de091b333e6e0365222 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e50a8b9dce54ed1c5ea6aef1a2b5e27 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e50a8b9dce54ed1c5ea6aef1a2b5e27 new file mode 100644 index 00000000..3cacf8ea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e50a8b9dce54ed1c5ea6aef1a2b5e27 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e6baf9af8d85bf18a786dec4b341f17 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e6baf9af8d85bf18a786dec4b341f17 new file mode 100644 index 00000000..a151edf8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e6baf9af8d85bf18a786dec4b341f17 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e7fb3cbc6e8621733d8588c5faf0dd8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e7fb3cbc6e8621733d8588c5faf0dd8 new file mode 100644 index 00000000..16c18814 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e7fb3cbc6e8621733d8588c5faf0dd8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e84baa0099401406b1fc9ce04e9212d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e84baa0099401406b1fc9ce04e9212d new file mode 100644 index 00000000..63c1d743 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e84baa0099401406b1fc9ce04e9212d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e8676b4bae0bf7184ff0712eead0588 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e8676b4bae0bf7184ff0712eead0588 new file mode 100644 index 00000000..a8210748 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4e8676b4bae0bf7184ff0712eead0588 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ea198c7deaad7220582f20a049fa256 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ea198c7deaad7220582f20a049fa256 new file mode 100644 index 00000000..9a40dace Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ea198c7deaad7220582f20a049fa256 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ea3f154ac94b4c010a8de6e5a5e24fd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ea3f154ac94b4c010a8de6e5a5e24fd new file mode 100644 index 00000000..0bbfb273 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ea3f154ac94b4c010a8de6e5a5e24fd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ea7e645b2ba746670da2ee44b9c9eb6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ea7e645b2ba746670da2ee44b9c9eb6 new file mode 100644 index 00000000..6d6146c4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ea7e645b2ba746670da2ee44b9c9eb6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4eb08689c7e4371f823967ac36d6de0b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4eb08689c7e4371f823967ac36d6de0b new file mode 100644 index 00000000..c7a968b4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4eb08689c7e4371f823967ac36d6de0b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ee77415426ec25952e39e9ac7283fe0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ee77415426ec25952e39e9ac7283fe0 new file mode 100644 index 00000000..5ec620dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ee77415426ec25952e39e9ac7283fe0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ee8d583219332b5601b44b8296e624a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ee8d583219332b5601b44b8296e624a new file mode 100644 index 00000000..408587dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ee8d583219332b5601b44b8296e624a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ef3ce0608f21c29c56b5dc6e822df0c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ef3ce0608f21c29c56b5dc6e822df0c new file mode 100644 index 00000000..404a7199 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4e/4ef3ce0608f21c29c56b5dc6e822df0c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f07115907e7b71d4656e3a098556fc3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f07115907e7b71d4656e3a098556fc3 new file mode 100644 index 00000000..7d73741c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f07115907e7b71d4656e3a098556fc3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f2c06b6198334d8c57a12f14d9dfc0d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f2c06b6198334d8c57a12f14d9dfc0d new file mode 100644 index 00000000..bed279db Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f2c06b6198334d8c57a12f14d9dfc0d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f335cdd4719a6b7697d1a4fa71d60ff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f335cdd4719a6b7697d1a4fa71d60ff new file mode 100644 index 00000000..08a2ac08 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f335cdd4719a6b7697d1a4fa71d60ff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f3a3e6e581a86ac84d125c9a84174b4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f3a3e6e581a86ac84d125c9a84174b4 new file mode 100644 index 00000000..2be3d67e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f3a3e6e581a86ac84d125c9a84174b4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f3e3b49fc9a2fd37bbc0a2c8bf21c17 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f3e3b49fc9a2fd37bbc0a2c8bf21c17 new file mode 100644 index 00000000..5e8415a9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f3e3b49fc9a2fd37bbc0a2c8bf21c17 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f3effa66aa179996d52f174256c5ba5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f3effa66aa179996d52f174256c5ba5 new file mode 100644 index 00000000..e1bfbdc5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f3effa66aa179996d52f174256c5ba5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f47473733ee80a7a0cb39e7ea020819 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f47473733ee80a7a0cb39e7ea020819 new file mode 100644 index 00000000..86f3e5fa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f47473733ee80a7a0cb39e7ea020819 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f57eed28e315f892b14a235bdde9b08 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f57eed28e315f892b14a235bdde9b08 new file mode 100644 index 00000000..e2370249 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f57eed28e315f892b14a235bdde9b08 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f5dba59e3d282de337da0a72063c0c4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f5dba59e3d282de337da0a72063c0c4 new file mode 100644 index 00000000..69a73c6f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f5dba59e3d282de337da0a72063c0c4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f5f8ecc705e883a0794fa7e9f0f0b4e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f5f8ecc705e883a0794fa7e9f0f0b4e new file mode 100644 index 00000000..a8961f31 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f5f8ecc705e883a0794fa7e9f0f0b4e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f645ce74a858ccdec9aa45de552e095 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f645ce74a858ccdec9aa45de552e095 new file mode 100644 index 00000000..debbdae3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f645ce74a858ccdec9aa45de552e095 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f700395ff15de34f546b18b37c429de b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f700395ff15de34f546b18b37c429de new file mode 100644 index 00000000..3e5fd8c5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f700395ff15de34f546b18b37c429de differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f736bd2279d1cd32a156dbade212c95 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f736bd2279d1cd32a156dbade212c95 new file mode 100644 index 00000000..7c9ee049 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f736bd2279d1cd32a156dbade212c95 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f88aafd41f27608785eb297dda4af47 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f88aafd41f27608785eb297dda4af47 new file mode 100644 index 00000000..32fed976 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f88aafd41f27608785eb297dda4af47 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f90ddecedc790265ebb1622ead66193 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f90ddecedc790265ebb1622ead66193 new file mode 100644 index 00000000..abd2ff8a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4f90ddecedc790265ebb1622ead66193 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4fa2bbce815dfbea2ee92ecdc54c2280 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4fa2bbce815dfbea2ee92ecdc54c2280 new file mode 100644 index 00000000..14642cc7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4fa2bbce815dfbea2ee92ecdc54c2280 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4fc5e55beca6cb4fbe986db5201eb415 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4fc5e55beca6cb4fbe986db5201eb415 new file mode 100644 index 00000000..a9387328 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4fc5e55beca6cb4fbe986db5201eb415 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4fd567ba63ed9008250dc64e28f54bca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4fd567ba63ed9008250dc64e28f54bca new file mode 100644 index 00000000..189a04e2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4fd567ba63ed9008250dc64e28f54bca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4ff66c9a2fa0e4cc88613afef5d30e43 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4ff66c9a2fa0e4cc88613afef5d30e43 new file mode 100644 index 00000000..a70199c6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/4f/4ff66c9a2fa0e4cc88613afef5d30e43 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/500a242391de52ac15db93f20a578282 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/500a242391de52ac15db93f20a578282 new file mode 100644 index 00000000..dede2e60 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/500a242391de52ac15db93f20a578282 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50252955eae08914ca401123b3a2586e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50252955eae08914ca401123b3a2586e new file mode 100644 index 00000000..852658c3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50252955eae08914ca401123b3a2586e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50311b123d550b99f61c7edd93b9e16d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50311b123d550b99f61c7edd93b9e16d new file mode 100644 index 00000000..3c4330a0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50311b123d550b99f61c7edd93b9e16d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/503f98a0738f055e80448ddcbbe38449 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/503f98a0738f055e80448ddcbbe38449 new file mode 100644 index 00000000..b05da5cb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/503f98a0738f055e80448ddcbbe38449 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50412abb57b0d0821828836d25d4de0f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50412abb57b0d0821828836d25d4de0f new file mode 100644 index 00000000..ee7c3fbd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50412abb57b0d0821828836d25d4de0f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/505a6f1415fb850355edb5c8a6f435bb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/505a6f1415fb850355edb5c8a6f435bb new file mode 100644 index 00000000..20b6e572 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/505a6f1415fb850355edb5c8a6f435bb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/5069f4223c6ccea21677134cbba2d2f2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/5069f4223c6ccea21677134cbba2d2f2 new file mode 100644 index 00000000..049eb0c7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/5069f4223c6ccea21677134cbba2d2f2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/5073e125be49e5879011f5e4b5356c1c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/5073e125be49e5879011f5e4b5356c1c new file mode 100644 index 00000000..48506696 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/5073e125be49e5879011f5e4b5356c1c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50a54cdb825ea5012450b3d439e26fe2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50a54cdb825ea5012450b3d439e26fe2 new file mode 100644 index 00000000..db99b3c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50a54cdb825ea5012450b3d439e26fe2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50a9b30045f267de6b0e0a184948e4fd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50a9b30045f267de6b0e0a184948e4fd new file mode 100644 index 00000000..9ad1c669 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50a9b30045f267de6b0e0a184948e4fd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50ad6900efec730b943b061933e56efa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50ad6900efec730b943b061933e56efa new file mode 100644 index 00000000..2014f6e6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50ad6900efec730b943b061933e56efa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50afe369491e3641f5a32b9bdaf5721b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50afe369491e3641f5a32b9bdaf5721b new file mode 100644 index 00000000..f9056049 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50afe369491e3641f5a32b9bdaf5721b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50b024915464152ddcec154f1cbc7f42 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50b024915464152ddcec154f1cbc7f42 new file mode 100644 index 00000000..5a408cd7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50b024915464152ddcec154f1cbc7f42 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50bae22c47a4edc9b887cf1c2f430d83 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50bae22c47a4edc9b887cf1c2f430d83 new file mode 100644 index 00000000..fb938532 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50bae22c47a4edc9b887cf1c2f430d83 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50d579ab890ab4ddf413ba0279e3f796 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50d579ab890ab4ddf413ba0279e3f796 new file mode 100644 index 00000000..a7fe38f4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50d579ab890ab4ddf413ba0279e3f796 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50e173751878715655edfc55f4ee89c9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50e173751878715655edfc55f4ee89c9 new file mode 100644 index 00000000..d03f6661 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50e173751878715655edfc55f4ee89c9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50e34640a16af535938883d224258b77 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50e34640a16af535938883d224258b77 new file mode 100644 index 00000000..f46402ca Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/50/50e34640a16af535938883d224258b77 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/510add01ce3801a4b1f6a03eaf97a1f3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/510add01ce3801a4b1f6a03eaf97a1f3 new file mode 100644 index 00000000..2c030d0c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/510add01ce3801a4b1f6a03eaf97a1f3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/5110c5ff5cb6ea8e811a38847e5e7a61 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/5110c5ff5cb6ea8e811a38847e5e7a61 new file mode 100644 index 00000000..b58cb49f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/5110c5ff5cb6ea8e811a38847e5e7a61 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/5110d5ad24d5f6c6a1da36b58ec7e4f8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/5110d5ad24d5f6c6a1da36b58ec7e4f8 new file mode 100644 index 00000000..06694431 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/5110d5ad24d5f6c6a1da36b58ec7e4f8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/511d9cc0e4b703a99c94e170c722e03c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/511d9cc0e4b703a99c94e170c722e03c new file mode 100644 index 00000000..3b0076d7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/511d9cc0e4b703a99c94e170c722e03c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/5141be0e93d1ed8a9e2ae8c605b84756 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/5141be0e93d1ed8a9e2ae8c605b84756 new file mode 100644 index 00000000..e8b93402 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/5141be0e93d1ed8a9e2ae8c605b84756 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51512c95a1049e4bac0e4766298388cb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51512c95a1049e4bac0e4766298388cb new file mode 100644 index 00000000..aced6e77 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51512c95a1049e4bac0e4766298388cb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51550b9fdf06bb0ff16b7af682ad83c2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51550b9fdf06bb0ff16b7af682ad83c2 new file mode 100644 index 00000000..bd2df596 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51550b9fdf06bb0ff16b7af682ad83c2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51592ffee0d99200324d51515101705b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51592ffee0d99200324d51515101705b new file mode 100644 index 00000000..cf46b710 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51592ffee0d99200324d51515101705b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/5169f196d3fa947c6a9f547d6454ccc8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/5169f196d3fa947c6a9f547d6454ccc8 new file mode 100644 index 00000000..2bcc0b80 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/5169f196d3fa947c6a9f547d6454ccc8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/517c2cdf02a7fda1d7b5f63f68f90697 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/517c2cdf02a7fda1d7b5f63f68f90697 new file mode 100644 index 00000000..f522f91d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/517c2cdf02a7fda1d7b5f63f68f90697 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/518471dd65ea5726832c6c3197b2b020 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/518471dd65ea5726832c6c3197b2b020 new file mode 100644 index 00000000..0f4788b7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/518471dd65ea5726832c6c3197b2b020 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51921eefa781746cb0318d3b3f897f04 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51921eefa781746cb0318d3b3f897f04 new file mode 100644 index 00000000..14829482 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51921eefa781746cb0318d3b3f897f04 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51b5576ed16536b6f17827abff4e11f9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51b5576ed16536b6f17827abff4e11f9 new file mode 100644 index 00000000..737bbbdd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51b5576ed16536b6f17827abff4e11f9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51c0a64cbd387a2179f1120f9bf4eb54 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51c0a64cbd387a2179f1120f9bf4eb54 new file mode 100644 index 00000000..b96cdc73 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51c0a64cbd387a2179f1120f9bf4eb54 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51cf0ab6f9e8121124936e4fdc3665e6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51cf0ab6f9e8121124936e4fdc3665e6 new file mode 100644 index 00000000..3aec176e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51cf0ab6f9e8121124936e4fdc3665e6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51e581cf421d9c00b635bc51414012a4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51e581cf421d9c00b635bc51414012a4 new file mode 100644 index 00000000..3c2d0eee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51e581cf421d9c00b635bc51414012a4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51ef6b7f429b9eebc03fabdaa83ac221 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51ef6b7f429b9eebc03fabdaa83ac221 new file mode 100644 index 00000000..9a451a5a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51ef6b7f429b9eebc03fabdaa83ac221 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51f426e588a8c0eea9c5c81209881169 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51f426e588a8c0eea9c5c81209881169 new file mode 100644 index 00000000..e6c1d42d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/51/51f426e588a8c0eea9c5c81209881169 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/52072345f0a7843f730a4f103d269e4c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/52072345f0a7843f730a4f103d269e4c new file mode 100644 index 00000000..0bd280a6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/52072345f0a7843f730a4f103d269e4c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5220f634bc501c473307299a65ac404d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5220f634bc501c473307299a65ac404d new file mode 100644 index 00000000..476b0e5e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5220f634bc501c473307299a65ac404d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/523abe31cea29bc0cb1fa9250a22dbcc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/523abe31cea29bc0cb1fa9250a22dbcc new file mode 100644 index 00000000..00d503af Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/523abe31cea29bc0cb1fa9250a22dbcc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/523c952f0781e630a733cd1236b9af78 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/523c952f0781e630a733cd1236b9af78 new file mode 100644 index 00000000..5f11b30d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/523c952f0781e630a733cd1236b9af78 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5252aa97de196e247acb85bf01cb42ed b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5252aa97de196e247acb85bf01cb42ed new file mode 100644 index 00000000..ed9337b2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5252aa97de196e247acb85bf01cb42ed differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5256e627d53264983f21f0e3ff20b1c9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5256e627d53264983f21f0e3ff20b1c9 new file mode 100644 index 00000000..e8ba1856 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5256e627d53264983f21f0e3ff20b1c9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5266caf6c6889b182e3e27348bae021d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5266caf6c6889b182e3e27348bae021d new file mode 100644 index 00000000..b279619c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5266caf6c6889b182e3e27348bae021d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/526df731c5c6e7d7efc192c92b467ab2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/526df731c5c6e7d7efc192c92b467ab2 new file mode 100644 index 00000000..2cd57172 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/526df731c5c6e7d7efc192c92b467ab2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5281e00ff6e1ccf5812c9c3f434dca87 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5281e00ff6e1ccf5812c9c3f434dca87 new file mode 100644 index 00000000..d32ffd49 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5281e00ff6e1ccf5812c9c3f434dca87 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5283ba31e7dda8c92271d26cb9a44267 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5283ba31e7dda8c92271d26cb9a44267 new file mode 100644 index 00000000..dd9cf8c9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/5283ba31e7dda8c92271d26cb9a44267 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/52a6a95c83baa401c063328052328faf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/52a6a95c83baa401c063328052328faf new file mode 100644 index 00000000..8e4e4252 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/52a6a95c83baa401c063328052328faf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/52c3eb24f1fd6bff86ffde13271bb842 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/52c3eb24f1fd6bff86ffde13271bb842 new file mode 100644 index 00000000..30ce7476 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/52/52c3eb24f1fd6bff86ffde13271bb842 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5303b609ecf1530c5f53f0e49011bcc3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5303b609ecf1530c5f53f0e49011bcc3 new file mode 100644 index 00000000..8796fc8a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5303b609ecf1530c5f53f0e49011bcc3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5318dce8345ddc539e047d1292bdc4eb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5318dce8345ddc539e047d1292bdc4eb new file mode 100644 index 00000000..6c10d4f7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5318dce8345ddc539e047d1292bdc4eb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5329d62a6d06f49e44f691d819ec76fa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5329d62a6d06f49e44f691d819ec76fa new file mode 100644 index 00000000..94831bef Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5329d62a6d06f49e44f691d819ec76fa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/532d4ed4eb0983f96480e5bf4d040f1e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/532d4ed4eb0983f96480e5bf4d040f1e new file mode 100644 index 00000000..ea01efbf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/532d4ed4eb0983f96480e5bf4d040f1e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/532e29a4f61124843f9662d9cd3c987e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/532e29a4f61124843f9662d9cd3c987e new file mode 100644 index 00000000..7d6432f0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/532e29a4f61124843f9662d9cd3c987e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/532ef1aff115678b606360899c7dd298 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/532ef1aff115678b606360899c7dd298 new file mode 100644 index 00000000..6c27ca70 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/532ef1aff115678b606360899c7dd298 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5343aa7cf4cf01d52403d04a6060eda1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5343aa7cf4cf01d52403d04a6060eda1 new file mode 100644 index 00000000..b0b68b55 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5343aa7cf4cf01d52403d04a6060eda1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5362fde2994268625db274a5b89f2dcd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5362fde2994268625db274a5b89f2dcd new file mode 100644 index 00000000..b8ebf34e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5362fde2994268625db274a5b89f2dcd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/536c5c134a8cc6e2bb68ef242db657c4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/536c5c134a8cc6e2bb68ef242db657c4 new file mode 100644 index 00000000..b258be95 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/536c5c134a8cc6e2bb68ef242db657c4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5384a9cad5cc42fc2a5a6e3b3251348b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5384a9cad5cc42fc2a5a6e3b3251348b new file mode 100644 index 00000000..b5aa2e51 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/5384a9cad5cc42fc2a5a6e3b3251348b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/538fa2866c4bc9b715d94b34c1e802b4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/538fa2866c4bc9b715d94b34c1e802b4 new file mode 100644 index 00000000..92102ac0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/538fa2866c4bc9b715d94b34c1e802b4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/53a35e63982f5975bf3843c66f44ffd5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/53a35e63982f5975bf3843c66f44ffd5 new file mode 100644 index 00000000..0245764f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/53a35e63982f5975bf3843c66f44ffd5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/53b5b0ca19e4894977f89daf916862d2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/53b5b0ca19e4894977f89daf916862d2 new file mode 100644 index 00000000..19e511b0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/53b5b0ca19e4894977f89daf916862d2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/53f0aa7084d165b6f38f4a9f97afb856 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/53f0aa7084d165b6f38f4a9f97afb856 new file mode 100644 index 00000000..957914b9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/53/53f0aa7084d165b6f38f4a9f97afb856 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/541d0c2aa20e602e0aa326096017ec47 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/541d0c2aa20e602e0aa326096017ec47 new file mode 100644 index 00000000..9d9b08a1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/541d0c2aa20e602e0aa326096017ec47 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5421506324b126b477cd6c7e876cfa3b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5421506324b126b477cd6c7e876cfa3b new file mode 100644 index 00000000..5dcf070d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5421506324b126b477cd6c7e876cfa3b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54256c3fc7b792e0f7d72d18e5454936 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54256c3fc7b792e0f7d72d18e5454936 new file mode 100644 index 00000000..9abf59be Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54256c3fc7b792e0f7d72d18e5454936 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54343b041da81fe9bf682da3ca6b1c8d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54343b041da81fe9bf682da3ca6b1c8d new file mode 100644 index 00000000..12a6bc50 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54343b041da81fe9bf682da3ca6b1c8d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5435112ce70850fb767f4891cb78a000 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5435112ce70850fb767f4891cb78a000 new file mode 100644 index 00000000..9f026052 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5435112ce70850fb767f4891cb78a000 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5437ecb203cd55c8513e60336806679a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5437ecb203cd55c8513e60336806679a new file mode 100644 index 00000000..af5f8104 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5437ecb203cd55c8513e60336806679a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/543db113b654842eaff4e6fcf120d2f4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/543db113b654842eaff4e6fcf120d2f4 new file mode 100644 index 00000000..87599458 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/543db113b654842eaff4e6fcf120d2f4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5447997b0043658c5d2640ab0bf4e8cb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5447997b0043658c5d2640ab0bf4e8cb new file mode 100644 index 00000000..a9539312 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5447997b0043658c5d2640ab0bf4e8cb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/545bfed8e7d9cefd400a6e5246bdb747 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/545bfed8e7d9cefd400a6e5246bdb747 new file mode 100644 index 00000000..ccee4dd9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/545bfed8e7d9cefd400a6e5246bdb747 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5479b2cbfe8fedc16e50a3bfea6737eb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5479b2cbfe8fedc16e50a3bfea6737eb new file mode 100644 index 00000000..24dc4ec1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/5479b2cbfe8fedc16e50a3bfea6737eb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54918e7dd33f54b807d1a26369e63bc5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54918e7dd33f54b807d1a26369e63bc5 new file mode 100644 index 00000000..9626f236 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54918e7dd33f54b807d1a26369e63bc5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/549bd709c101951d8f39a7b66ff50a2a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/549bd709c101951d8f39a7b66ff50a2a new file mode 100644 index 00000000..e3584282 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/549bd709c101951d8f39a7b66ff50a2a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54a1dca5879945555d2c8267cd9c8770 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54a1dca5879945555d2c8267cd9c8770 new file mode 100644 index 00000000..b2719056 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54a1dca5879945555d2c8267cd9c8770 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54be5839735a0946878db212fd7605de b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54be5839735a0946878db212fd7605de new file mode 100644 index 00000000..9f1ae184 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54be5839735a0946878db212fd7605de differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54cbd39f95faf35e6b7f5e2cf791a433 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54cbd39f95faf35e6b7f5e2cf791a433 new file mode 100644 index 00000000..5a387c0f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54cbd39f95faf35e6b7f5e2cf791a433 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54edc30eda9168d707f51197afd4057e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54edc30eda9168d707f51197afd4057e new file mode 100644 index 00000000..c3c1b288 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54edc30eda9168d707f51197afd4057e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54f5d49cdf9524e6a84e181c15cf2f90 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54f5d49cdf9524e6a84e181c15cf2f90 new file mode 100644 index 00000000..fee357cf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/54/54f5d49cdf9524e6a84e181c15cf2f90 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5509d5ddba6da43fe7820e1f3c244099 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5509d5ddba6da43fe7820e1f3c244099 new file mode 100644 index 00000000..401ea6d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5509d5ddba6da43fe7820e1f3c244099 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5521cf9fdfd7a8e52bd6ebdb282edd30 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5521cf9fdfd7a8e52bd6ebdb282edd30 new file mode 100644 index 00000000..bf90e30f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5521cf9fdfd7a8e52bd6ebdb282edd30 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/553716b712a1d3b60bd71b7906cd571f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/553716b712a1d3b60bd71b7906cd571f new file mode 100644 index 00000000..fc4c651c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/553716b712a1d3b60bd71b7906cd571f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5538709c7f875d17bc5365bd3469ed62 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5538709c7f875d17bc5365bd3469ed62 new file mode 100644 index 00000000..42b425cd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5538709c7f875d17bc5365bd3469ed62 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5548b0e780571aa41cba553f445c8ac6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5548b0e780571aa41cba553f445c8ac6 new file mode 100644 index 00000000..e0fb4c51 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5548b0e780571aa41cba553f445c8ac6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/555de4e6f05c64b1f59cb90c24b82e94 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/555de4e6f05c64b1f59cb90c24b82e94 new file mode 100644 index 00000000..0e3fd939 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/555de4e6f05c64b1f59cb90c24b82e94 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/556e41f57a9660c1f4dc0123cc72c56e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/556e41f57a9660c1f4dc0123cc72c56e new file mode 100644 index 00000000..86dbfc8d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/556e41f57a9660c1f4dc0123cc72c56e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/556ef2f0937711232ba8bc8a05fb86f9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/556ef2f0937711232ba8bc8a05fb86f9 new file mode 100644 index 00000000..1c6bf4aa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/556ef2f0937711232ba8bc8a05fb86f9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5572f2dc85736d4384f063157d3f4be7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5572f2dc85736d4384f063157d3f4be7 new file mode 100644 index 00000000..49326b4d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5572f2dc85736d4384f063157d3f4be7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55808e021099cd4a60de6983e7c909bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55808e021099cd4a60de6983e7c909bc new file mode 100644 index 00000000..d75dc16d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55808e021099cd4a60de6983e7c909bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/558213632957026a703df7b31cefda08 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/558213632957026a703df7b31cefda08 new file mode 100644 index 00000000..b95735db Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/558213632957026a703df7b31cefda08 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5586493e91ed4635d8fd35ef45761ac8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5586493e91ed4635d8fd35ef45761ac8 new file mode 100644 index 00000000..718c9f3c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/5586493e91ed4635d8fd35ef45761ac8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55949db4a7675007ecba1e04a1676123 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55949db4a7675007ecba1e04a1676123 new file mode 100644 index 00000000..e27766e0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55949db4a7675007ecba1e04a1676123 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55b2b89d9e3a92b1869d1a78700e49ea b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55b2b89d9e3a92b1869d1a78700e49ea new file mode 100644 index 00000000..cae269e7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55b2b89d9e3a92b1869d1a78700e49ea differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55b3650c715db8212ba9bd18eb92cb2c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55b3650c715db8212ba9bd18eb92cb2c new file mode 100644 index 00000000..142f3e3c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55b3650c715db8212ba9bd18eb92cb2c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55d8c6e871b38a0c017077263f25eb41 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55d8c6e871b38a0c017077263f25eb41 new file mode 100644 index 00000000..f812411d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55d8c6e871b38a0c017077263f25eb41 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55e4b16578385593579b75e5c126fc90 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55e4b16578385593579b75e5c126fc90 new file mode 100644 index 00000000..440a9487 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/55/55e4b16578385593579b75e5c126fc90 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/5607e03f887d4dbf9288928e7216bd93 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/5607e03f887d4dbf9288928e7216bd93 new file mode 100644 index 00000000..03f9bd66 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/5607e03f887d4dbf9288928e7216bd93 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/560c469f89d1c1ff701ddc8890ca57f3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/560c469f89d1c1ff701ddc8890ca57f3 new file mode 100644 index 00000000..4dae1360 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/560c469f89d1c1ff701ddc8890ca57f3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/5616ee600176f01c4d4e551ded8e199d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/5616ee600176f01c4d4e551ded8e199d new file mode 100644 index 00000000..acbe9501 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/5616ee600176f01c4d4e551ded8e199d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/564c9ea2cca02d46a89ff5e9a696d1f4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/564c9ea2cca02d46a89ff5e9a696d1f4 new file mode 100644 index 00000000..e824129f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/564c9ea2cca02d46a89ff5e9a696d1f4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/565dfa159b58d0e79255fff690ec0ec1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/565dfa159b58d0e79255fff690ec0ec1 new file mode 100644 index 00000000..68047072 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/565dfa159b58d0e79255fff690ec0ec1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/567ad636f100a17ba02f3b6d2a28a2a8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/567ad636f100a17ba02f3b6d2a28a2a8 new file mode 100644 index 00000000..345d087e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/567ad636f100a17ba02f3b6d2a28a2a8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/569527853916de04e3d13c126519eea3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/569527853916de04e3d13c126519eea3 new file mode 100644 index 00000000..3c225aa8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/569527853916de04e3d13c126519eea3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/5697be6eb9b63cbeb5d27708c1085895 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/5697be6eb9b63cbeb5d27708c1085895 new file mode 100644 index 00000000..c73b5e0a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/5697be6eb9b63cbeb5d27708c1085895 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56a0437ab980801c469365002da95524 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56a0437ab980801c469365002da95524 new file mode 100644 index 00000000..f935b34c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56a0437ab980801c469365002da95524 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56ac517adab094f63b5d70c99710ebf0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56ac517adab094f63b5d70c99710ebf0 new file mode 100644 index 00000000..fe7772a6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56ac517adab094f63b5d70c99710ebf0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56bcd5e38988710520a68460139fc11b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56bcd5e38988710520a68460139fc11b new file mode 100644 index 00000000..1b920320 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56bcd5e38988710520a68460139fc11b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56bf033c47519009efc94b6aa7333db5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56bf033c47519009efc94b6aa7333db5 new file mode 100644 index 00000000..d2f2cf2c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56bf033c47519009efc94b6aa7333db5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56c53b3bee2be809b106bad56669c91b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56c53b3bee2be809b106bad56669c91b new file mode 100644 index 00000000..c978cd50 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56c53b3bee2be809b106bad56669c91b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56d0d4a1c9ece2e6efb217051b2cb7b9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56d0d4a1c9ece2e6efb217051b2cb7b9 new file mode 100644 index 00000000..6bdecd9d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/56/56d0d4a1c9ece2e6efb217051b2cb7b9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57057d89aaf934b1df5c68001702cce8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57057d89aaf934b1df5c68001702cce8 new file mode 100644 index 00000000..fe0d5542 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57057d89aaf934b1df5c68001702cce8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/5707b345950a5252568bda0f423f5ba4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/5707b345950a5252568bda0f423f5ba4 new file mode 100644 index 00000000..88c2fea1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/5707b345950a5252568bda0f423f5ba4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/571c1f7ed01711cc31aa8b1b4e19d4e4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/571c1f7ed01711cc31aa8b1b4e19d4e4 new file mode 100644 index 00000000..6c2b2ff2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/571c1f7ed01711cc31aa8b1b4e19d4e4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/5741b854d151129ccce629e8bfe3e21b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/5741b854d151129ccce629e8bfe3e21b new file mode 100644 index 00000000..a521b433 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/5741b854d151129ccce629e8bfe3e21b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/574afc68109d6d85cda830e901edbb63 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/574afc68109d6d85cda830e901edbb63 new file mode 100644 index 00000000..558b9cfd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/574afc68109d6d85cda830e901edbb63 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/575a581d37596bf6ce8cd927410fd652 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/575a581d37596bf6ce8cd927410fd652 new file mode 100644 index 00000000..c19312c1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/575a581d37596bf6ce8cd927410fd652 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/576834e7c05f284f0c45fef79226721a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/576834e7c05f284f0c45fef79226721a new file mode 100644 index 00000000..3f9fd3f3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/576834e7c05f284f0c45fef79226721a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57ae50db0bf71e81f6950ad456abfa84 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57ae50db0bf71e81f6950ad456abfa84 new file mode 100644 index 00000000..b6e0cc27 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57ae50db0bf71e81f6950ad456abfa84 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57ce98984a621ac843c9e5852b29ba61 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57ce98984a621ac843c9e5852b29ba61 new file mode 100644 index 00000000..8fd267bd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57ce98984a621ac843c9e5852b29ba61 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57d4d23dabbece83b9135c9d7d3c1161 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57d4d23dabbece83b9135c9d7d3c1161 new file mode 100644 index 00000000..45cbaee6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57d4d23dabbece83b9135c9d7d3c1161 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57d524d77ce8a98f94ec7f677c6a30ff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57d524d77ce8a98f94ec7f677c6a30ff new file mode 100644 index 00000000..de2b9987 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57d524d77ce8a98f94ec7f677c6a30ff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57e0eb7908749ed5162fceb2f81783cb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57e0eb7908749ed5162fceb2f81783cb new file mode 100644 index 00000000..0b2405ec Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57e0eb7908749ed5162fceb2f81783cb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57e134fc8784e3772d294a74d2f9a022 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57e134fc8784e3772d294a74d2f9a022 new file mode 100644 index 00000000..e5b6d48f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57e134fc8784e3772d294a74d2f9a022 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57e61b23d8c49bd9d159520a29fe1ec6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57e61b23d8c49bd9d159520a29fe1ec6 new file mode 100644 index 00000000..2d4b50a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57e61b23d8c49bd9d159520a29fe1ec6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57eae39e01157b1b47813ed8e0986cf2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57eae39e01157b1b47813ed8e0986cf2 new file mode 100644 index 00000000..571ab6f1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/57/57eae39e01157b1b47813ed8e0986cf2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5802dbd889cd71ad38c06546dcbc46ae b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5802dbd889cd71ad38c06546dcbc46ae new file mode 100644 index 00000000..332c4980 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5802dbd889cd71ad38c06546dcbc46ae differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5804250213e4a437b29d7c1b436d0fa3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5804250213e4a437b29d7c1b436d0fa3 new file mode 100644 index 00000000..dba5fcc0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5804250213e4a437b29d7c1b436d0fa3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5808c49e7812b62844a2a841c46475c1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5808c49e7812b62844a2a841c46475c1 new file mode 100644 index 00000000..61f6f427 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5808c49e7812b62844a2a841c46475c1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5809dd8e0579d0b96e09cd96465817d1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5809dd8e0579d0b96e09cd96465817d1 new file mode 100644 index 00000000..f86c0053 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5809dd8e0579d0b96e09cd96465817d1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5816917c2dd0abed971bc7d573f570c5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5816917c2dd0abed971bc7d573f570c5 new file mode 100644 index 00000000..f3244e58 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5816917c2dd0abed971bc7d573f570c5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5824a9e7b2ec5694067141285a75bfaf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5824a9e7b2ec5694067141285a75bfaf new file mode 100644 index 00000000..2558e236 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5824a9e7b2ec5694067141285a75bfaf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58270cb88cf48cf59dd02d46b86ef580 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58270cb88cf48cf59dd02d46b86ef580 new file mode 100644 index 00000000..64d250a8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58270cb88cf48cf59dd02d46b86ef580 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/583389ab60b991380676d72e86a62d55 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/583389ab60b991380676d72e86a62d55 new file mode 100644 index 00000000..b324bec8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/583389ab60b991380676d72e86a62d55 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/584c39570f353e441e083a72e61fb3e7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/584c39570f353e441e083a72e61fb3e7 new file mode 100644 index 00000000..01336438 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/584c39570f353e441e083a72e61fb3e7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/585779a04ca8d2cf0639113c03a59702 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/585779a04ca8d2cf0639113c03a59702 new file mode 100644 index 00000000..8dd2c068 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/585779a04ca8d2cf0639113c03a59702 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58596c608dcc9822793bf462d776ed19 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58596c608dcc9822793bf462d776ed19 new file mode 100644 index 00000000..3955df30 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58596c608dcc9822793bf462d776ed19 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5878b58b098cb896bdefa2f3dd44f310 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5878b58b098cb896bdefa2f3dd44f310 new file mode 100644 index 00000000..af9e8e83 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/5878b58b098cb896bdefa2f3dd44f310 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/588e28dffcd744bf8126b800081aca95 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/588e28dffcd744bf8126b800081aca95 new file mode 100644 index 00000000..a6a0f8b9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/588e28dffcd744bf8126b800081aca95 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58b9a9ec16331f37f8ca40c3f903f28d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58b9a9ec16331f37f8ca40c3f903f28d new file mode 100644 index 00000000..c266c09a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58b9a9ec16331f37f8ca40c3f903f28d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58c479d4f2a8e389a8cb9526b27cb549 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58c479d4f2a8e389a8cb9526b27cb549 new file mode 100644 index 00000000..075c4f23 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58c479d4f2a8e389a8cb9526b27cb549 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58cc5f1b3d8c5b345590f0bf70271d23 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58cc5f1b3d8c5b345590f0bf70271d23 new file mode 100644 index 00000000..ee83af76 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58cc5f1b3d8c5b345590f0bf70271d23 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58ea237e9f4434fab57b8b49dc1f80ae b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58ea237e9f4434fab57b8b49dc1f80ae new file mode 100644 index 00000000..7ba5d815 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58ea237e9f4434fab57b8b49dc1f80ae differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58fc3aa1ae879f652d59c1f9d1e52f29 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58fc3aa1ae879f652d59c1f9d1e52f29 new file mode 100644 index 00000000..b573d887 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/58/58fc3aa1ae879f652d59c1f9d1e52f29 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/591012aa5dac0db3966873b81567e947 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/591012aa5dac0db3966873b81567e947 new file mode 100644 index 00000000..b66b14d4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/591012aa5dac0db3966873b81567e947 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/592f65ce9993b198197670f26d0e5f4a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/592f65ce9993b198197670f26d0e5f4a new file mode 100644 index 00000000..6df718b2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/592f65ce9993b198197670f26d0e5f4a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/593bfa93f76387d573d6b0b6487d3b66 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/593bfa93f76387d573d6b0b6487d3b66 new file mode 100644 index 00000000..2e3896d1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/593bfa93f76387d573d6b0b6487d3b66 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/5948938e5923460c3ef2d2a9e7e5fe5a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/5948938e5923460c3ef2d2a9e7e5fe5a new file mode 100644 index 00000000..8092ffd1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/5948938e5923460c3ef2d2a9e7e5fe5a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59a9cfac26244f597c9dc2d56a77be4e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59a9cfac26244f597c9dc2d56a77be4e new file mode 100644 index 00000000..72922f77 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59a9cfac26244f597c9dc2d56a77be4e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59b5448247cc4a7bf7cbdb716b3d012d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59b5448247cc4a7bf7cbdb716b3d012d new file mode 100644 index 00000000..385ea876 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59b5448247cc4a7bf7cbdb716b3d012d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59c209690ba5074eea76247ee180ea01 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59c209690ba5074eea76247ee180ea01 new file mode 100644 index 00000000..bedf15bc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59c209690ba5074eea76247ee180ea01 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59c5aca6f25257dbe49c446b67dd519c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59c5aca6f25257dbe49c446b67dd519c new file mode 100644 index 00000000..2a7aa7ae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59c5aca6f25257dbe49c446b67dd519c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59d0a08677574c17af3acc43f38d79ed b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59d0a08677574c17af3acc43f38d79ed new file mode 100644 index 00000000..c0add4c4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59d0a08677574c17af3acc43f38d79ed differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59dd6c25add7bc19c4bc9179f5918267 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59dd6c25add7bc19c4bc9179f5918267 new file mode 100644 index 00000000..a0a2ccf7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59dd6c25add7bc19c4bc9179f5918267 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59e2b05e5381e56a98567d6afb55fa98 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59e2b05e5381e56a98567d6afb55fa98 new file mode 100644 index 00000000..9591547e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/59/59e2b05e5381e56a98567d6afb55fa98 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a003ab8dcbfad52f4e0985a2d833f4e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a003ab8dcbfad52f4e0985a2d833f4e new file mode 100644 index 00000000..36a656e1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a003ab8dcbfad52f4e0985a2d833f4e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a032da2d69c3b2ba23774d5346b4ecb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a032da2d69c3b2ba23774d5346b4ecb new file mode 100644 index 00000000..f1c45dae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a032da2d69c3b2ba23774d5346b4ecb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a1832e3822c8c6eda906180aee07900 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a1832e3822c8c6eda906180aee07900 new file mode 100644 index 00000000..57c0cba7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a1832e3822c8c6eda906180aee07900 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a19e17121ba1ffe9da64d89f53e8261 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a19e17121ba1ffe9da64d89f53e8261 new file mode 100644 index 00000000..edbcdfc3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a19e17121ba1ffe9da64d89f53e8261 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a735618653089e0650a48050776a577 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a735618653089e0650a48050776a577 new file mode 100644 index 00000000..0e4d365d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5a735618653089e0650a48050776a577 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5aa4d17eeed444ce1f526ef583739f43 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5aa4d17eeed444ce1f526ef583739f43 new file mode 100644 index 00000000..1578bfbd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5aa4d17eeed444ce1f526ef583739f43 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5aaf68178413c394645b824f4cc0fe81 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5aaf68178413c394645b824f4cc0fe81 new file mode 100644 index 00000000..9fbe7793 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5aaf68178413c394645b824f4cc0fe81 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5ab06f49bcf51fe78a042e53335f3792 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5ab06f49bcf51fe78a042e53335f3792 new file mode 100644 index 00000000..4684f4ff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5ab06f49bcf51fe78a042e53335f3792 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5abc782f68dd846fd1f0e17594709546 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5abc782f68dd846fd1f0e17594709546 new file mode 100644 index 00000000..8b7cd24c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5abc782f68dd846fd1f0e17594709546 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5abdce5191f6fe304d893d945cf95798 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5abdce5191f6fe304d893d945cf95798 new file mode 100644 index 00000000..439c2979 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5abdce5191f6fe304d893d945cf95798 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5ac10c23113401e1298f3c771622a517 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5ac10c23113401e1298f3c771622a517 new file mode 100644 index 00000000..15463379 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5ac10c23113401e1298f3c771622a517 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5ac5170690a6dd147b18eec471dee510 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5ac5170690a6dd147b18eec471dee510 new file mode 100644 index 00000000..b5277368 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5ac5170690a6dd147b18eec471dee510 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5ae79793e1b5e7d5c93a6b81b6623732 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5ae79793e1b5e7d5c93a6b81b6623732 new file mode 100644 index 00000000..12bbee1b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5ae79793e1b5e7d5c93a6b81b6623732 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5af63dbbc3483e6cfe3f4c5c992d4157 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5af63dbbc3483e6cfe3f4c5c992d4157 new file mode 100644 index 00000000..573cf012 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5a/5af63dbbc3483e6cfe3f4c5c992d4157 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b12dce8e017cb4e8ef6c19ece3352dd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b12dce8e017cb4e8ef6c19ece3352dd new file mode 100644 index 00000000..e103a159 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b12dce8e017cb4e8ef6c19ece3352dd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b1981c223ffee1b2922bdfc491c854f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b1981c223ffee1b2922bdfc491c854f new file mode 100644 index 00000000..7c1117a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b1981c223ffee1b2922bdfc491c854f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b2279bd7c9716649b63c7080274e572 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b2279bd7c9716649b63c7080274e572 new file mode 100644 index 00000000..affe88ee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b2279bd7c9716649b63c7080274e572 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b258456ee35c73787badf4dff3661a6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b258456ee35c73787badf4dff3661a6 new file mode 100644 index 00000000..99a9e118 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b258456ee35c73787badf4dff3661a6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b27ca47aea6ad972af09ef304584395 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b27ca47aea6ad972af09ef304584395 new file mode 100644 index 00000000..1066c66f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b27ca47aea6ad972af09ef304584395 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b40b2d977a5cee01c1d9c3c9f4ebc7a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b40b2d977a5cee01c1d9c3c9f4ebc7a new file mode 100644 index 00000000..c776c40b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b40b2d977a5cee01c1d9c3c9f4ebc7a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b73101e3e4038fedaf70e07c33525e8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b73101e3e4038fedaf70e07c33525e8 new file mode 100644 index 00000000..91f6fa53 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b73101e3e4038fedaf70e07c33525e8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b7afe29ef5924ab5396977e58e0f557 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b7afe29ef5924ab5396977e58e0f557 new file mode 100644 index 00000000..10eddf27 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b7afe29ef5924ab5396977e58e0f557 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b95ab0b803e7637ed8bb66f9984db81 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b95ab0b803e7637ed8bb66f9984db81 new file mode 100644 index 00000000..ce8a2bee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5b95ab0b803e7637ed8bb66f9984db81 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5ba1235b01abe5b90307f2dca4cd9c80 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5ba1235b01abe5b90307f2dca4cd9c80 new file mode 100644 index 00000000..d8309bab Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5ba1235b01abe5b90307f2dca4cd9c80 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5bc4ffc5163c18fd13fef418b5e85a7a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5bc4ffc5163c18fd13fef418b5e85a7a new file mode 100644 index 00000000..ed604fca Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5bc4ffc5163c18fd13fef418b5e85a7a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5bdd1f54aeeffc074cfe1b631d8fcc3c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5bdd1f54aeeffc074cfe1b631d8fcc3c new file mode 100644 index 00000000..77ab69ec Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5bdd1f54aeeffc074cfe1b631d8fcc3c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5bea465c2c758db7c3e6a5a6276a15c5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5bea465c2c758db7c3e6a5a6276a15c5 new file mode 100644 index 00000000..1aff67f9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5b/5bea465c2c758db7c3e6a5a6276a15c5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5c0aac26d0ba55e3d6195ee0d14e702f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5c0aac26d0ba55e3d6195ee0d14e702f new file mode 100644 index 00000000..4d517138 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5c0aac26d0ba55e3d6195ee0d14e702f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5c339573e006537fc8992aac143dcda2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5c339573e006537fc8992aac143dcda2 new file mode 100644 index 00000000..f618a67d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5c339573e006537fc8992aac143dcda2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5cb8cfc91b6d6b9cdae6aa68f4026467 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5cb8cfc91b6d6b9cdae6aa68f4026467 new file mode 100644 index 00000000..fb8e8da8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5cb8cfc91b6d6b9cdae6aa68f4026467 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5cbd2e76b79e4b608b44d5ec310b08c0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5cbd2e76b79e4b608b44d5ec310b08c0 new file mode 100644 index 00000000..8be2f339 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5cbd2e76b79e4b608b44d5ec310b08c0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5cc2aeee3049ad8408b4967932c048be b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5cc2aeee3049ad8408b4967932c048be new file mode 100644 index 00000000..b38730c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5c/5cc2aeee3049ad8408b4967932c048be differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d0034740b3bdf91a147f65b6e1a9ae2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d0034740b3bdf91a147f65b6e1a9ae2 new file mode 100644 index 00000000..41a6810a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d0034740b3bdf91a147f65b6e1a9ae2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d03bbce1501f3e7dc9ee4e34f5cc0a5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d03bbce1501f3e7dc9ee4e34f5cc0a5 new file mode 100644 index 00000000..442549f0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d03bbce1501f3e7dc9ee4e34f5cc0a5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d07e98a8e6526afd7cb3137a8277690 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d07e98a8e6526afd7cb3137a8277690 new file mode 100644 index 00000000..1b226818 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d07e98a8e6526afd7cb3137a8277690 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d3905d26f3caa446e2d05bd0ac75364 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d3905d26f3caa446e2d05bd0ac75364 new file mode 100644 index 00000000..5ce30a6c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d3905d26f3caa446e2d05bd0ac75364 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d3f403fb066a2995ced1ad7c6e17f43 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d3f403fb066a2995ced1ad7c6e17f43 new file mode 100644 index 00000000..8f49cd60 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d3f403fb066a2995ced1ad7c6e17f43 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d54dbf5a04429abd4fe2f9bb84661a8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d54dbf5a04429abd4fe2f9bb84661a8 new file mode 100644 index 00000000..b20b30f8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d54dbf5a04429abd4fe2f9bb84661a8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d5acee5b9671e7eb52a14735f2ddfaf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d5acee5b9671e7eb52a14735f2ddfaf new file mode 100644 index 00000000..ef103e2e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d5acee5b9671e7eb52a14735f2ddfaf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d5c79648e14daac346dbf06fa6b368d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d5c79648e14daac346dbf06fa6b368d new file mode 100644 index 00000000..cdb41d91 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d5c79648e14daac346dbf06fa6b368d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d9d99d781096fececd6f46c571cd81c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d9d99d781096fececd6f46c571cd81c new file mode 100644 index 00000000..f3a1d64f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d9d99d781096fececd6f46c571cd81c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d9ed2ed000a8c3b621f97c0ea76ba6c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d9ed2ed000a8c3b621f97c0ea76ba6c new file mode 100644 index 00000000..3768a132 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5d9ed2ed000a8c3b621f97c0ea76ba6c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5dc3c6d50f7b752f35d8a821982972b5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5dc3c6d50f7b752f35d8a821982972b5 new file mode 100644 index 00000000..152d1f93 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5dc3c6d50f7b752f35d8a821982972b5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5dc6641930c3ea8cdf59827531d431c3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5dc6641930c3ea8cdf59827531d431c3 new file mode 100644 index 00000000..e6c53645 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5dc6641930c3ea8cdf59827531d431c3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5dd3f4eb46e9c710017e3f0c4c1282f3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5dd3f4eb46e9c710017e3f0c4c1282f3 new file mode 100644 index 00000000..d15f2a4f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5dd3f4eb46e9c710017e3f0c4c1282f3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5deeb2982f3d50838f7e090ceba56d4f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5deeb2982f3d50838f7e090ceba56d4f new file mode 100644 index 00000000..b3d11f61 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5d/5deeb2982f3d50838f7e090ceba56d4f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e129e9f4dec2697be2a1f8e1c07e3aa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e129e9f4dec2697be2a1f8e1c07e3aa new file mode 100644 index 00000000..5af993b4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e129e9f4dec2697be2a1f8e1c07e3aa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e14cb3e36055ca2f954d79230e09c57 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e14cb3e36055ca2f954d79230e09c57 new file mode 100644 index 00000000..bca39490 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e14cb3e36055ca2f954d79230e09c57 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e157f7b3d68f26be095b62653131a49 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e157f7b3d68f26be095b62653131a49 new file mode 100644 index 00000000..2f865c3d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e157f7b3d68f26be095b62653131a49 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e3ad5146b768cc9dfe4125dc5cd1dff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e3ad5146b768cc9dfe4125dc5cd1dff new file mode 100644 index 00000000..4eae1565 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e3ad5146b768cc9dfe4125dc5cd1dff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e47bfef9e93f5d9ef5c353d66b1ea43 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e47bfef9e93f5d9ef5c353d66b1ea43 new file mode 100644 index 00000000..18347cea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e47bfef9e93f5d9ef5c353d66b1ea43 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e4b1ace31468a1748de82ba6e38183c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e4b1ace31468a1748de82ba6e38183c new file mode 100644 index 00000000..5e09c314 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e4b1ace31468a1748de82ba6e38183c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e7c4df5ddefbfd6f7e2875909262178 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e7c4df5ddefbfd6f7e2875909262178 new file mode 100644 index 00000000..aa95e4bf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e7c4df5ddefbfd6f7e2875909262178 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e7efc8efa44183124bd1cb5601ed619 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e7efc8efa44183124bd1cb5601ed619 new file mode 100644 index 00000000..3e14ebf8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e7efc8efa44183124bd1cb5601ed619 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e886694058ee75f80118c0dce3726ea b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e886694058ee75f80118c0dce3726ea new file mode 100644 index 00000000..e654980f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e886694058ee75f80118c0dce3726ea differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e936a781be20d6d2f7997a61778f64a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e936a781be20d6d2f7997a61778f64a new file mode 100644 index 00000000..55170bcf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e936a781be20d6d2f7997a61778f64a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e97991fbffdb33f6aef2360cae2a9db b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e97991fbffdb33f6aef2360cae2a9db new file mode 100644 index 00000000..2577a820 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5e97991fbffdb33f6aef2360cae2a9db differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ec166590e149267278a99eeebae9c64 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ec166590e149267278a99eeebae9c64 new file mode 100644 index 00000000..79ad190b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ec166590e149267278a99eeebae9c64 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ec42dcd7775550ad5aca1f050b644d0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ec42dcd7775550ad5aca1f050b644d0 new file mode 100644 index 00000000..512e3307 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ec42dcd7775550ad5aca1f050b644d0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ec638720d9d65f1557c8a0867a44c74 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ec638720d9d65f1557c8a0867a44c74 new file mode 100644 index 00000000..1cd86bc2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ec638720d9d65f1557c8a0867a44c74 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ecf152e750e046f3926d6bd5221dadd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ecf152e750e046f3926d6bd5221dadd new file mode 100644 index 00000000..acfeb19e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ecf152e750e046f3926d6bd5221dadd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ede48de1f6e6925e976065f58cff823 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ede48de1f6e6925e976065f58cff823 new file mode 100644 index 00000000..7d60ccef Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5e/5ede48de1f6e6925e976065f58cff823 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f237b40586a5640a863c1a813ec4797 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f237b40586a5640a863c1a813ec4797 new file mode 100644 index 00000000..fb86e70d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f237b40586a5640a863c1a813ec4797 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f29d34a4a275d5b3325a694c8b4f27c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f29d34a4a275d5b3325a694c8b4f27c new file mode 100644 index 00000000..5becd588 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f29d34a4a275d5b3325a694c8b4f27c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f548d7f0aca7157710546bb67801c9e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f548d7f0aca7157710546bb67801c9e new file mode 100644 index 00000000..306caf07 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f548d7f0aca7157710546bb67801c9e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f68886fd66a8758f11e534dacde2d13 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f68886fd66a8758f11e534dacde2d13 new file mode 100644 index 00000000..e9c884a7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f68886fd66a8758f11e534dacde2d13 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f7c72c39d15eaacc19f76fbd459f30e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f7c72c39d15eaacc19f76fbd459f30e new file mode 100644 index 00000000..1a1c850f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f7c72c39d15eaacc19f76fbd459f30e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f849eca7d7b2ee1de54affd4bd74da5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f849eca7d7b2ee1de54affd4bd74da5 new file mode 100644 index 00000000..b1217952 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5f849eca7d7b2ee1de54affd4bd74da5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5fa923f619452909b4b14eab78d28158 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5fa923f619452909b4b14eab78d28158 new file mode 100644 index 00000000..b00a78f6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5fa923f619452909b4b14eab78d28158 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5fbcb73f0ee5d5049cc066ce3ed9fa97 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5fbcb73f0ee5d5049cc066ce3ed9fa97 new file mode 100644 index 00000000..a76b1525 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5fbcb73f0ee5d5049cc066ce3ed9fa97 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5ff29bf76cb229f078535e9e9c934330 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5ff29bf76cb229f078535e9e9c934330 new file mode 100644 index 00000000..2494da8a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/5f/5ff29bf76cb229f078535e9e9c934330 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/600d4d4e0c8f82befe572d69b0dd5d24 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/600d4d4e0c8f82befe572d69b0dd5d24 new file mode 100644 index 00000000..601bb8c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/600d4d4e0c8f82befe572d69b0dd5d24 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60146a780ff95763daf4b23bc5af76c2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60146a780ff95763daf4b23bc5af76c2 new file mode 100644 index 00000000..399d4680 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60146a780ff95763daf4b23bc5af76c2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/601934650acf5fd1b132939b0232355d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/601934650acf5fd1b132939b0232355d new file mode 100644 index 00000000..a8e75dbd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/601934650acf5fd1b132939b0232355d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60362778bada436e97205393b868155d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60362778bada436e97205393b868155d new file mode 100644 index 00000000..f2e6dcb3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60362778bada436e97205393b868155d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/603b19a84d5bb2dd60436b059b736f97 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/603b19a84d5bb2dd60436b059b736f97 new file mode 100644 index 00000000..62865cd1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/603b19a84d5bb2dd60436b059b736f97 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60469df6d962b6e1b997e74e6d5f0574 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60469df6d962b6e1b997e74e6d5f0574 new file mode 100644 index 00000000..98dd0d7e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60469df6d962b6e1b997e74e6d5f0574 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/6048d3124bf97478ff7cbab30f342cdd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/6048d3124bf97478ff7cbab30f342cdd new file mode 100644 index 00000000..1ce8c203 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/6048d3124bf97478ff7cbab30f342cdd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/605b059b79d70f3d83a1ea8bcf0335da b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/605b059b79d70f3d83a1ea8bcf0335da new file mode 100644 index 00000000..d393368a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/605b059b79d70f3d83a1ea8bcf0335da differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/605dfb911ec80285d26a04fd87f6cdec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/605dfb911ec80285d26a04fd87f6cdec new file mode 100644 index 00000000..39f57f7b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/605dfb911ec80285d26a04fd87f6cdec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/6079828fd27587c2442c7186301ea5ad b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/6079828fd27587c2442c7186301ea5ad new file mode 100644 index 00000000..017b77d9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/6079828fd27587c2442c7186301ea5ad differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/607fbdcab56aa7788b5b24ae1f39784f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/607fbdcab56aa7788b5b24ae1f39784f new file mode 100644 index 00000000..d5fdbc3f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/607fbdcab56aa7788b5b24ae1f39784f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/6093565ff6654b7eb97bdb2a8e88147b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/6093565ff6654b7eb97bdb2a8e88147b new file mode 100644 index 00000000..e9a5630f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/6093565ff6654b7eb97bdb2a8e88147b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60a0346cd5bd8410f34bd5c638d04e70 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60a0346cd5bd8410f34bd5c638d04e70 new file mode 100644 index 00000000..8420bacf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60a0346cd5bd8410f34bd5c638d04e70 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60adb588a05a6e24629dbecd87960e43 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60adb588a05a6e24629dbecd87960e43 new file mode 100644 index 00000000..9e742ac0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60adb588a05a6e24629dbecd87960e43 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60cfe8b6cd5b8e19409a805f7680ec94 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60cfe8b6cd5b8e19409a805f7680ec94 new file mode 100644 index 00000000..84325b86 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60cfe8b6cd5b8e19409a805f7680ec94 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60d3c7b8535781860327fa8003f85a35 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60d3c7b8535781860327fa8003f85a35 new file mode 100644 index 00000000..4da81422 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60d3c7b8535781860327fa8003f85a35 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60db95270d6711263335e2fcfc7cb8de b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60db95270d6711263335e2fcfc7cb8de new file mode 100644 index 00000000..42e8f490 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60db95270d6711263335e2fcfc7cb8de differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60e346e4d62a6198c1a74cd1e4da6cc1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60e346e4d62a6198c1a74cd1e4da6cc1 new file mode 100644 index 00000000..0ffb8f87 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60e346e4d62a6198c1a74cd1e4da6cc1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60ee3f5f323a9d517995626c0cb0e07b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60ee3f5f323a9d517995626c0cb0e07b new file mode 100644 index 00000000..7e32e62c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/60/60ee3f5f323a9d517995626c0cb0e07b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61034f3dfa267e0d11ab604a61efb3de b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61034f3dfa267e0d11ab604a61efb3de new file mode 100644 index 00000000..848f7579 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61034f3dfa267e0d11ab604a61efb3de differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/6109a5adcfb2819311b25aedded219e4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/6109a5adcfb2819311b25aedded219e4 new file mode 100644 index 00000000..0e6f7220 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/6109a5adcfb2819311b25aedded219e4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/610b255a9474e3f6d392bc63ffca604f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/610b255a9474e3f6d392bc63ffca604f new file mode 100644 index 00000000..24387a94 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/610b255a9474e3f6d392bc63ffca604f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/6114434687510544f8d8e36363f02375 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/6114434687510544f8d8e36363f02375 new file mode 100644 index 00000000..d6e985a4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/6114434687510544f8d8e36363f02375 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/6117aa9c601c19c415ecea279f5e69cb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/6117aa9c601c19c415ecea279f5e69cb new file mode 100644 index 00000000..d8d485d1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/6117aa9c601c19c415ecea279f5e69cb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/611e448b897cf2846aa11cdb61dd46df b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/611e448b897cf2846aa11cdb61dd46df new file mode 100644 index 00000000..5c04e670 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/611e448b897cf2846aa11cdb61dd46df differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/615b347c453fb1965bf075bee3be7b28 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/615b347c453fb1965bf075bee3be7b28 new file mode 100644 index 00000000..418fc2e9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/615b347c453fb1965bf075bee3be7b28 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/615b495ce6b9c104ca083cf78743f77e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/615b495ce6b9c104ca083cf78743f77e new file mode 100644 index 00000000..9f840793 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/615b495ce6b9c104ca083cf78743f77e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/615da78bbd2b940d052bd17861314c00 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/615da78bbd2b940d052bd17861314c00 new file mode 100644 index 00000000..29137d6b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/615da78bbd2b940d052bd17861314c00 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61a40248a33522a21875a7172da453eb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61a40248a33522a21875a7172da453eb new file mode 100644 index 00000000..2a5aafcd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61a40248a33522a21875a7172da453eb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61a42f66113b4ac3ef77361c143c2368 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61a42f66113b4ac3ef77361c143c2368 new file mode 100644 index 00000000..88116aaa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61a42f66113b4ac3ef77361c143c2368 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61baacea04bee22d06caee8259ad9baa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61baacea04bee22d06caee8259ad9baa new file mode 100644 index 00000000..3e4aee05 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61baacea04bee22d06caee8259ad9baa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61bbbf76bdf0e41cc49f952be8ae7a37 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61bbbf76bdf0e41cc49f952be8ae7a37 new file mode 100644 index 00000000..1a2c8c53 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61bbbf76bdf0e41cc49f952be8ae7a37 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61bec7ebb790c32154bb214acaee2fe5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61bec7ebb790c32154bb214acaee2fe5 new file mode 100644 index 00000000..3f8696f6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61bec7ebb790c32154bb214acaee2fe5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61d16d6a1efdc1474ec18b4052cbc78a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61d16d6a1efdc1474ec18b4052cbc78a new file mode 100644 index 00000000..eb2399a0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61d16d6a1efdc1474ec18b4052cbc78a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61eae26116a48bcb3309bd2f04c9211e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61eae26116a48bcb3309bd2f04c9211e new file mode 100644 index 00000000..0fc9b54b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/61/61eae26116a48bcb3309bd2f04c9211e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/620e2a031bde32bd734d6f5d67a4a085 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/620e2a031bde32bd734d6f5d67a4a085 new file mode 100644 index 00000000..17b5d042 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/620e2a031bde32bd734d6f5d67a4a085 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/620effa019de2bdce6e8d766a04bd51c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/620effa019de2bdce6e8d766a04bd51c new file mode 100644 index 00000000..6611a186 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/620effa019de2bdce6e8d766a04bd51c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/621933c95b887300cc31d6a932295b75 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/621933c95b887300cc31d6a932295b75 new file mode 100644 index 00000000..e65941d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/621933c95b887300cc31d6a932295b75 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/6224350b5c0004f76437410478d87946 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/6224350b5c0004f76437410478d87946 new file mode 100644 index 00000000..91cf4fd5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/6224350b5c0004f76437410478d87946 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/622445a82d107f180075665de21a5ade b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/622445a82d107f180075665de21a5ade new file mode 100644 index 00000000..04c36968 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/622445a82d107f180075665de21a5ade differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/622ab072730f16b6fa26600e31949d7b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/622ab072730f16b6fa26600e31949d7b new file mode 100644 index 00000000..88e2df43 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/622ab072730f16b6fa26600e31949d7b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/623baad80ac13601f2ed73c33a0e055a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/623baad80ac13601f2ed73c33a0e055a new file mode 100644 index 00000000..317d8b0a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/623baad80ac13601f2ed73c33a0e055a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/624658a3a72b29fbaf6650e9c30c4133 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/624658a3a72b29fbaf6650e9c30c4133 new file mode 100644 index 00000000..ad9bd438 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/624658a3a72b29fbaf6650e9c30c4133 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/624cb96eddbdd693ce18460f0173aaca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/624cb96eddbdd693ce18460f0173aaca new file mode 100644 index 00000000..ee285729 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/624cb96eddbdd693ce18460f0173aaca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/6253c9d82fd5432fab14a7130b8222f9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/6253c9d82fd5432fab14a7130b8222f9 new file mode 100644 index 00000000..e803ad3c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/6253c9d82fd5432fab14a7130b8222f9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/626d93353fed836702fc15922c1140d7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/626d93353fed836702fc15922c1140d7 new file mode 100644 index 00000000..59af2415 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/626d93353fed836702fc15922c1140d7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/6290170a8afb7f98f999cbb48d4adfa3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/6290170a8afb7f98f999cbb48d4adfa3 new file mode 100644 index 00000000..b4181bfe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/6290170a8afb7f98f999cbb48d4adfa3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62a35d089219245160c4d83ee2ed63df b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62a35d089219245160c4d83ee2ed63df new file mode 100644 index 00000000..2514a105 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62a35d089219245160c4d83ee2ed63df differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62a75ba24d869c7a7c840983eea2f9df b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62a75ba24d869c7a7c840983eea2f9df new file mode 100644 index 00000000..32f611da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62a75ba24d869c7a7c840983eea2f9df differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62d49e79a18d11d445d6f5fdd33b478e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62d49e79a18d11d445d6f5fdd33b478e new file mode 100644 index 00000000..9910b3c2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62d49e79a18d11d445d6f5fdd33b478e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62fbb66aff13fe294af77e9ace29dcc7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62fbb66aff13fe294af77e9ace29dcc7 new file mode 100644 index 00000000..511045c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62fbb66aff13fe294af77e9ace29dcc7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62fd9193a33fb7a0a0fc2753579e53de b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62fd9193a33fb7a0a0fc2753579e53de new file mode 100644 index 00000000..28e93f09 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/62/62fd9193a33fb7a0a0fc2753579e53de differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/6303980961a3c95b1bdc7cfa14210ca0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/6303980961a3c95b1bdc7cfa14210ca0 new file mode 100644 index 00000000..18e85a6a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/6303980961a3c95b1bdc7cfa14210ca0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/6351e01b0d4d72efb2dd0dce9b68f787 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/6351e01b0d4d72efb2dd0dce9b68f787 new file mode 100644 index 00000000..5dae128e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/6351e01b0d4d72efb2dd0dce9b68f787 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63651257b9d0c1de789b4962af741c9b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63651257b9d0c1de789b4962af741c9b new file mode 100644 index 00000000..ccda02da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63651257b9d0c1de789b4962af741c9b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63785ce76bdc28d79994275eee8526a1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63785ce76bdc28d79994275eee8526a1 new file mode 100644 index 00000000..677bfc8c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63785ce76bdc28d79994275eee8526a1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/638cd107eb0954a6f5f8a77272b9a177 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/638cd107eb0954a6f5f8a77272b9a177 new file mode 100644 index 00000000..ab17ecc5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/638cd107eb0954a6f5f8a77272b9a177 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/639d08f2bf04f475955dbe5ea98a9310 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/639d08f2bf04f475955dbe5ea98a9310 new file mode 100644 index 00000000..02bbec8b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/639d08f2bf04f475955dbe5ea98a9310 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63a58532537b03d2077f4b1d5cdb53bd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63a58532537b03d2077f4b1d5cdb53bd new file mode 100644 index 00000000..50e7e1f2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63a58532537b03d2077f4b1d5cdb53bd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63a8b2560d4778ec00ee557e70d29302 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63a8b2560d4778ec00ee557e70d29302 new file mode 100644 index 00000000..adf8151a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63a8b2560d4778ec00ee557e70d29302 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63ae980195ea5fc177e0d1621a120e6e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63ae980195ea5fc177e0d1621a120e6e new file mode 100644 index 00000000..25253b4e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63ae980195ea5fc177e0d1621a120e6e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63b35ebd99ab5366add19e93db5de453 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63b35ebd99ab5366add19e93db5de453 new file mode 100644 index 00000000..db99f147 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63b35ebd99ab5366add19e93db5de453 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63c2d864d3aa8f723ed76616322a4b87 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63c2d864d3aa8f723ed76616322a4b87 new file mode 100644 index 00000000..92e4f1e2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63c2d864d3aa8f723ed76616322a4b87 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63c7fab2b75c1b2f66b5be3fd8d87211 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63c7fab2b75c1b2f66b5be3fd8d87211 new file mode 100644 index 00000000..c2347aa7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/63/63c7fab2b75c1b2f66b5be3fd8d87211 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/6421091e14e1c28f58239dedd5df3992 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/6421091e14e1c28f58239dedd5df3992 new file mode 100644 index 00000000..fd78b93f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/6421091e14e1c28f58239dedd5df3992 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/645ad6c40c45dfd3958a067fdefb8957 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/645ad6c40c45dfd3958a067fdefb8957 new file mode 100644 index 00000000..4d114775 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/645ad6c40c45dfd3958a067fdefb8957 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/6460faecbda25bc38565d23bc39c0366 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/6460faecbda25bc38565d23bc39c0366 new file mode 100644 index 00000000..ec636b6e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/6460faecbda25bc38565d23bc39c0366 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/646acf53efa4779f28f7038429dd3cc6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/646acf53efa4779f28f7038429dd3cc6 new file mode 100644 index 00000000..35310280 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/646acf53efa4779f28f7038429dd3cc6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/649421e41fd0da623172595c1e7bc711 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/649421e41fd0da623172595c1e7bc711 new file mode 100644 index 00000000..ea7f4f6b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/649421e41fd0da623172595c1e7bc711 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/649572ba87e2ac97366cc879fccb554d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/649572ba87e2ac97366cc879fccb554d new file mode 100644 index 00000000..5f7d7724 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/649572ba87e2ac97366cc879fccb554d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64bd2008ad272664305b8fa6669adb17 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64bd2008ad272664305b8fa6669adb17 new file mode 100644 index 00000000..e6287147 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64bd2008ad272664305b8fa6669adb17 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64d3306d41982e60adefd99da1077822 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64d3306d41982e60adefd99da1077822 new file mode 100644 index 00000000..6a4cf268 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64d3306d41982e60adefd99da1077822 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64de653e8b8f94bc718d04f886df86af b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64de653e8b8f94bc718d04f886df86af new file mode 100644 index 00000000..370f7162 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64de653e8b8f94bc718d04f886df86af differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64e5466cabe12c67ac05809923bc2ab0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64e5466cabe12c67ac05809923bc2ab0 new file mode 100644 index 00000000..2c6121df Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64e5466cabe12c67ac05809923bc2ab0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64f64f59555bbbed702646d3d7021f52 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64f64f59555bbbed702646d3d7021f52 new file mode 100644 index 00000000..93acd3e4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/64/64f64f59555bbbed702646d3d7021f52 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/650a64be24e7705bc0f01b00b262b82c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/650a64be24e7705bc0f01b00b262b82c new file mode 100644 index 00000000..00d41d30 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/650a64be24e7705bc0f01b00b262b82c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6531701b9a87564479c0452a34bf124f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6531701b9a87564479c0452a34bf124f new file mode 100644 index 00000000..d7d36775 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6531701b9a87564479c0452a34bf124f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/654aef76e296ea5a0823ebc297eba42b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/654aef76e296ea5a0823ebc297eba42b new file mode 100644 index 00000000..80f11f0e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/654aef76e296ea5a0823ebc297eba42b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65665b6eb3e4f1b914a7181fd2773b6a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65665b6eb3e4f1b914a7181fd2773b6a new file mode 100644 index 00000000..26d2f77f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65665b6eb3e4f1b914a7181fd2773b6a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6567374dc559b2b1a3f93404f278b8b0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6567374dc559b2b1a3f93404f278b8b0 new file mode 100644 index 00000000..92d22ece Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6567374dc559b2b1a3f93404f278b8b0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/656842b5499eede34448a06103137c9e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/656842b5499eede34448a06103137c9e new file mode 100644 index 00000000..2b5118c7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/656842b5499eede34448a06103137c9e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/657044b8720b2904d64e002e447c5bb3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/657044b8720b2904d64e002e447c5bb3 new file mode 100644 index 00000000..8d17c9ff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/657044b8720b2904d64e002e447c5bb3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6571ce84b1a63b06c4b88389170983f6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6571ce84b1a63b06c4b88389170983f6 new file mode 100644 index 00000000..ffc17107 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6571ce84b1a63b06c4b88389170983f6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6571e3624586658abcd322e7ff27bc9e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6571e3624586658abcd322e7ff27bc9e new file mode 100644 index 00000000..768bbc4e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6571e3624586658abcd322e7ff27bc9e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6577473519d54a2d11eca4105fb13bda b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6577473519d54a2d11eca4105fb13bda new file mode 100644 index 00000000..362fb399 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6577473519d54a2d11eca4105fb13bda differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6579006f8ea81fab0ed5a1d0e98612f4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6579006f8ea81fab0ed5a1d0e98612f4 new file mode 100644 index 00000000..3bf0808e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6579006f8ea81fab0ed5a1d0e98612f4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6586310893cf40cae4f0e16ad02f776f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6586310893cf40cae4f0e16ad02f776f new file mode 100644 index 00000000..d14eb73d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/6586310893cf40cae4f0e16ad02f776f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/658676b8b321ff18f6e381ce7d91e605 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/658676b8b321ff18f6e381ce7d91e605 new file mode 100644 index 00000000..09e63e50 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/658676b8b321ff18f6e381ce7d91e605 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65b31c93c2ef86271f8caabfc04a3eb7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65b31c93c2ef86271f8caabfc04a3eb7 new file mode 100644 index 00000000..9f2cd0be Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65b31c93c2ef86271f8caabfc04a3eb7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65be6bcb0c05d00788a7b5c3491069ef b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65be6bcb0c05d00788a7b5c3491069ef new file mode 100644 index 00000000..9921c103 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65be6bcb0c05d00788a7b5c3491069ef differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65c40a71d6337d45039c458a1500fc87 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65c40a71d6337d45039c458a1500fc87 new file mode 100644 index 00000000..f78f184d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65c40a71d6337d45039c458a1500fc87 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65c630080bcc2bd38942a53d82b61a85 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65c630080bcc2bd38942a53d82b61a85 new file mode 100644 index 00000000..420b0253 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65c630080bcc2bd38942a53d82b61a85 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65e47ce1ef639e50fc169e6d496a4a63 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65e47ce1ef639e50fc169e6d496a4a63 new file mode 100644 index 00000000..52ff3836 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/65/65e47ce1ef639e50fc169e6d496a4a63 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/6604ab185247a67d48e670dae219d9b2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/6604ab185247a67d48e670dae219d9b2 new file mode 100644 index 00000000..c5ea918c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/6604ab185247a67d48e670dae219d9b2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/660dcaac40ccd7164ae939eded67023c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/660dcaac40ccd7164ae939eded67023c new file mode 100644 index 00000000..ee2c5392 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/660dcaac40ccd7164ae939eded67023c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/6622fb997f098d74abd60cd2816c6b71 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/6622fb997f098d74abd60cd2816c6b71 new file mode 100644 index 00000000..e8ec1a0a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/6622fb997f098d74abd60cd2816c6b71 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/663c70fbb9f4cec0a7a6ef9d4cb9ab38 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/663c70fbb9f4cec0a7a6ef9d4cb9ab38 new file mode 100644 index 00000000..2018300e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/663c70fbb9f4cec0a7a6ef9d4cb9ab38 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/665065c95b63a811399cc2c11e187910 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/665065c95b63a811399cc2c11e187910 new file mode 100644 index 00000000..31a0214a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/665065c95b63a811399cc2c11e187910 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/665c22ba012596cb76b3088dfb3b94ab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/665c22ba012596cb76b3088dfb3b94ab new file mode 100644 index 00000000..85d2b8bd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/665c22ba012596cb76b3088dfb3b94ab differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/6660334db10c3035d86e36e394838254 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/6660334db10c3035d86e36e394838254 new file mode 100644 index 00000000..1ed187a1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/6660334db10c3035d86e36e394838254 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/666574d68a04f1168da63b58b6f89ec2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/666574d68a04f1168da63b58b6f89ec2 new file mode 100644 index 00000000..127512bb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/666574d68a04f1168da63b58b6f89ec2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66711075189b240ac03c9db24d04ac05 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66711075189b240ac03c9db24d04ac05 new file mode 100644 index 00000000..d001aeb7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66711075189b240ac03c9db24d04ac05 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/667b6e83d98276edca9632300ab7e22a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/667b6e83d98276edca9632300ab7e22a new file mode 100644 index 00000000..791cea61 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/667b6e83d98276edca9632300ab7e22a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/668dce1b5c7b4f7f332ad369dd4d8dd7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/668dce1b5c7b4f7f332ad369dd4d8dd7 new file mode 100644 index 00000000..4e1646cf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/668dce1b5c7b4f7f332ad369dd4d8dd7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66986f5a12ed75a5bfc697d878e63fa8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66986f5a12ed75a5bfc697d878e63fa8 new file mode 100644 index 00000000..28658a58 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66986f5a12ed75a5bfc697d878e63fa8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66a6f2a09c09794b4a97e2c5e023f531 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66a6f2a09c09794b4a97e2c5e023f531 new file mode 100644 index 00000000..041b91f2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66a6f2a09c09794b4a97e2c5e023f531 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66a96d4ea510a3c7a436f85845fd4729 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66a96d4ea510a3c7a436f85845fd4729 new file mode 100644 index 00000000..08880ae2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66a96d4ea510a3c7a436f85845fd4729 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66b98f0795bb1c537df1641f04608457 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66b98f0795bb1c537df1641f04608457 new file mode 100644 index 00000000..066ab310 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66b98f0795bb1c537df1641f04608457 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66bae6bc9693bd78212bf5b20427e55c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66bae6bc9693bd78212bf5b20427e55c new file mode 100644 index 00000000..ddf2212b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66bae6bc9693bd78212bf5b20427e55c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66d3e5c77a4065b86322061fa6a51629 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66d3e5c77a4065b86322061fa6a51629 new file mode 100644 index 00000000..afb7edbe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66d3e5c77a4065b86322061fa6a51629 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66ddc924705c0925cdabfe94950ce875 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66ddc924705c0925cdabfe94950ce875 new file mode 100644 index 00000000..7343b535 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66ddc924705c0925cdabfe94950ce875 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66e2584e430db93dcb6510f21e044331 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66e2584e430db93dcb6510f21e044331 new file mode 100644 index 00000000..1e441560 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66e2584e430db93dcb6510f21e044331 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66eaa8555215dc1c05d54f129c470f47 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66eaa8555215dc1c05d54f129c470f47 new file mode 100644 index 00000000..70f38139 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/66/66eaa8555215dc1c05d54f129c470f47 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/671c2ac132bf56e630cfcdd641cc0200 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/671c2ac132bf56e630cfcdd641cc0200 new file mode 100644 index 00000000..3827d1ba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/671c2ac132bf56e630cfcdd641cc0200 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/672e936cc0e5480f9c3ef9e69cb60f5b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/672e936cc0e5480f9c3ef9e69cb60f5b new file mode 100644 index 00000000..f5d76e72 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/672e936cc0e5480f9c3ef9e69cb60f5b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/6737d971c6c9129df70900c033f635c1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/6737d971c6c9129df70900c033f635c1 new file mode 100644 index 00000000..7507a952 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/6737d971c6c9129df70900c033f635c1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/673e7e34b8ac54721657268f6bd467a2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/673e7e34b8ac54721657268f6bd467a2 new file mode 100644 index 00000000..8f504156 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/673e7e34b8ac54721657268f6bd467a2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/6767129e5444e7a902c0ae5d62e24207 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/6767129e5444e7a902c0ae5d62e24207 new file mode 100644 index 00000000..77a562a8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/6767129e5444e7a902c0ae5d62e24207 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/6774d186f80eb1be13b8636c0be14482 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/6774d186f80eb1be13b8636c0be14482 new file mode 100644 index 00000000..cd8d091c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/6774d186f80eb1be13b8636c0be14482 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/678c64f17d25118e954e8b7fb34b3a8b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/678c64f17d25118e954e8b7fb34b3a8b new file mode 100644 index 00000000..b18715a0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/678c64f17d25118e954e8b7fb34b3a8b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/6795dea2e23b1ba073e8849bf0fd1a36 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/6795dea2e23b1ba073e8849bf0fd1a36 new file mode 100644 index 00000000..d0045187 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/6795dea2e23b1ba073e8849bf0fd1a36 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67bb527b8499f38f51ddb7404600627d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67bb527b8499f38f51ddb7404600627d new file mode 100644 index 00000000..b953c4b3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67bb527b8499f38f51ddb7404600627d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67c0098c129af87d18abee4f2d65e2e8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67c0098c129af87d18abee4f2d65e2e8 new file mode 100644 index 00000000..3103de59 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67c0098c129af87d18abee4f2d65e2e8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67c1c0f92cb4947dea9be5aa9eadee9f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67c1c0f92cb4947dea9be5aa9eadee9f new file mode 100644 index 00000000..2e87f092 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67c1c0f92cb4947dea9be5aa9eadee9f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67e77a653b815332ee8faa79eb09dee0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67e77a653b815332ee8faa79eb09dee0 new file mode 100644 index 00000000..2c194253 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67e77a653b815332ee8faa79eb09dee0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67f0602203cfd8c6ec032138c9437b02 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67f0602203cfd8c6ec032138c9437b02 new file mode 100644 index 00000000..3cc0add7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/67/67f0602203cfd8c6ec032138c9437b02 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/683e96422459c63c9a5d8107c10f7d88 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/683e96422459c63c9a5d8107c10f7d88 new file mode 100644 index 00000000..9b9dac1a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/683e96422459c63c9a5d8107c10f7d88 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68490c6dd2b828d21a3d651d21c33116 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68490c6dd2b828d21a3d651d21c33116 new file mode 100644 index 00000000..c33e667a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68490c6dd2b828d21a3d651d21c33116 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/684aa0e0f93a5f4ee1b328b735ebc870 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/684aa0e0f93a5f4ee1b328b735ebc870 new file mode 100644 index 00000000..c6e2e6b1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/684aa0e0f93a5f4ee1b328b735ebc870 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/6876e5564ef8cb434a2ca65311fb70c4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/6876e5564ef8cb434a2ca65311fb70c4 new file mode 100644 index 00000000..249ee3c7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/6876e5564ef8cb434a2ca65311fb70c4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/688459c8b4551c6244f3498ab6c26589 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/688459c8b4551c6244f3498ab6c26589 new file mode 100644 index 00000000..74e0edac Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/688459c8b4551c6244f3498ab6c26589 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/6891510e758982000bf280145d3b8f58 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/6891510e758982000bf280145d3b8f58 new file mode 100644 index 00000000..4c88a16d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/6891510e758982000bf280145d3b8f58 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68ab7327608b1470cdbf698e4a220bba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68ab7327608b1470cdbf698e4a220bba new file mode 100644 index 00000000..5195aa4e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68ab7327608b1470cdbf698e4a220bba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68bc31b111838ddec9e2e42393068da3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68bc31b111838ddec9e2e42393068da3 new file mode 100644 index 00000000..2f148c25 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68bc31b111838ddec9e2e42393068da3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68be2e45618564ef978ea57550a52d62 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68be2e45618564ef978ea57550a52d62 new file mode 100644 index 00000000..3c348562 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68be2e45618564ef978ea57550a52d62 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68cf3f1934d23bee1d713438252f5392 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68cf3f1934d23bee1d713438252f5392 new file mode 100644 index 00000000..2121b432 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68cf3f1934d23bee1d713438252f5392 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68d2cd0b8448398fc0f1a0f2e6788299 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68d2cd0b8448398fc0f1a0f2e6788299 new file mode 100644 index 00000000..e6b99421 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68d2cd0b8448398fc0f1a0f2e6788299 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68edd9190d42830a9277de87ae02ddc6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68edd9190d42830a9277de87ae02ddc6 new file mode 100644 index 00000000..5b43d726 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/68/68edd9190d42830a9277de87ae02ddc6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69282867a4ede10b07064e608fc11051 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69282867a4ede10b07064e608fc11051 new file mode 100644 index 00000000..a8a99297 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69282867a4ede10b07064e608fc11051 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/693111a84ee0cc15cb6d8422b1334d5b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/693111a84ee0cc15cb6d8422b1334d5b new file mode 100644 index 00000000..0173e1ba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/693111a84ee0cc15cb6d8422b1334d5b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69546e04524c30160acf7080ebed789f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69546e04524c30160acf7080ebed789f new file mode 100644 index 00000000..c6e867f7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69546e04524c30160acf7080ebed789f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/695cbb8de0fc45ccb1f0ad59a1670897 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/695cbb8de0fc45ccb1f0ad59a1670897 new file mode 100644 index 00000000..b8d1ad47 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/695cbb8de0fc45ccb1f0ad59a1670897 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/6988f45eb923a576113c8058ec33532d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/6988f45eb923a576113c8058ec33532d new file mode 100644 index 00000000..a2918f2f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/6988f45eb923a576113c8058ec33532d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/698c63a6856216a10e0f5922645d199b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/698c63a6856216a10e0f5922645d199b new file mode 100644 index 00000000..4441f276 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/698c63a6856216a10e0f5922645d199b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/6990ebf725f801c93514c732b7bea092 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/6990ebf725f801c93514c732b7bea092 new file mode 100644 index 00000000..8e656c25 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/6990ebf725f801c93514c732b7bea092 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69914fb13cc63a128854dc4613099531 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69914fb13cc63a128854dc4613099531 new file mode 100644 index 00000000..47da9a70 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69914fb13cc63a128854dc4613099531 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69a7d779f4c1642c030278d230d36699 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69a7d779f4c1642c030278d230d36699 new file mode 100644 index 00000000..83498984 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69a7d779f4c1642c030278d230d36699 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69b7dcda8c7cf46422a0426960337049 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69b7dcda8c7cf46422a0426960337049 new file mode 100644 index 00000000..398a1725 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69b7dcda8c7cf46422a0426960337049 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69bfe890b1f737c50e161a055b4b4a85 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69bfe890b1f737c50e161a055b4b4a85 new file mode 100644 index 00000000..8e208572 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69bfe890b1f737c50e161a055b4b4a85 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69d292a06041c350ac132b3e25250f30 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69d292a06041c350ac132b3e25250f30 new file mode 100644 index 00000000..78a0acd3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69d292a06041c350ac132b3e25250f30 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69e82d8dd3293533c17361e298800d0a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69e82d8dd3293533c17361e298800d0a new file mode 100644 index 00000000..9590ef2d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69e82d8dd3293533c17361e298800d0a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69eb27a9857d742cddfa6a1aa743048c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69eb27a9857d742cddfa6a1aa743048c new file mode 100644 index 00000000..030f89b8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69eb27a9857d742cddfa6a1aa743048c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69fe6dac19c4cecdfba6b4dca2766b8d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69fe6dac19c4cecdfba6b4dca2766b8d new file mode 100644 index 00000000..30356920 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/69/69fe6dac19c4cecdfba6b4dca2766b8d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a0105d57e49bdad823513154f3559dd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a0105d57e49bdad823513154f3559dd new file mode 100644 index 00000000..4020020b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a0105d57e49bdad823513154f3559dd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a11c717ae2f2e3051ced6fd3cc2fef9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a11c717ae2f2e3051ced6fd3cc2fef9 new file mode 100644 index 00000000..a23185eb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a11c717ae2f2e3051ced6fd3cc2fef9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a270f64f2754b0919149ebd3a2e3923 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a270f64f2754b0919149ebd3a2e3923 new file mode 100644 index 00000000..bf2b91a1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a270f64f2754b0919149ebd3a2e3923 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a33eddd0363f712331388aa47a9abb3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a33eddd0363f712331388aa47a9abb3 new file mode 100644 index 00000000..eec28f1c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a33eddd0363f712331388aa47a9abb3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a3e0c7e848a60db6c25dff28d0b63c4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a3e0c7e848a60db6c25dff28d0b63c4 new file mode 100644 index 00000000..bf7fd881 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a3e0c7e848a60db6c25dff28d0b63c4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a7ab03fb6f9969e7e86162a047717d2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a7ab03fb6f9969e7e86162a047717d2 new file mode 100644 index 00000000..354129ee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a7ab03fb6f9969e7e86162a047717d2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a9f7766eb6a90a697a989e1882cb6e1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a9f7766eb6a90a697a989e1882cb6e1 new file mode 100644 index 00000000..15ff5a0b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6a9f7766eb6a90a697a989e1882cb6e1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6aa5b2cd683c5b132d3f7b7f65054c6d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6aa5b2cd683c5b132d3f7b7f65054c6d new file mode 100644 index 00000000..1333e3cb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6aa5b2cd683c5b132d3f7b7f65054c6d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6aba8f4a625f30617ec16ac0027d8e45 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6aba8f4a625f30617ec16ac0027d8e45 new file mode 100644 index 00000000..fe917265 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6a/6aba8f4a625f30617ec16ac0027d8e45 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b0a4e0b28f4bc62515506c2dc31d6a6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b0a4e0b28f4bc62515506c2dc31d6a6 new file mode 100644 index 00000000..59fadb40 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b0a4e0b28f4bc62515506c2dc31d6a6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b2965e05c9d20190dfa95a950d87d37 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b2965e05c9d20190dfa95a950d87d37 new file mode 100644 index 00000000..f88f054f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b2965e05c9d20190dfa95a950d87d37 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b4bde80a9437ba1c4c637c3ea09f388 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b4bde80a9437ba1c4c637c3ea09f388 new file mode 100644 index 00000000..305333e4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b4bde80a9437ba1c4c637c3ea09f388 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b5fef0f7d88209767159e8c00413d57 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b5fef0f7d88209767159e8c00413d57 new file mode 100644 index 00000000..3289d88b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b5fef0f7d88209767159e8c00413d57 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b76440ac8db082eb4bcd737a42cde3c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b76440ac8db082eb4bcd737a42cde3c new file mode 100644 index 00000000..3d36866a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b76440ac8db082eb4bcd737a42cde3c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b7e979ae082bc246a90f5fda669415e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b7e979ae082bc246a90f5fda669415e new file mode 100644 index 00000000..8f3789ce Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b7e979ae082bc246a90f5fda669415e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b90769ac407b3b5378c14ae17b3f4ce b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b90769ac407b3b5378c14ae17b3f4ce new file mode 100644 index 00000000..18adf3e3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b90769ac407b3b5378c14ae17b3f4ce differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b963edd9b648214c454f813ed2fc086 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b963edd9b648214c454f813ed2fc086 new file mode 100644 index 00000000..21e6e0f1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b963edd9b648214c454f813ed2fc086 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b96eac01dd9ec09015455c6130c98b2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b96eac01dd9ec09015455c6130c98b2 new file mode 100644 index 00000000..e4c9eac7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6b96eac01dd9ec09015455c6130c98b2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6ba7b0efa2f4bbd2786c438931d2dfc5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6ba7b0efa2f4bbd2786c438931d2dfc5 new file mode 100644 index 00000000..5d9ba909 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6ba7b0efa2f4bbd2786c438931d2dfc5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6bb4b9bd81105ff6e2dca84b40fc9636 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6bb4b9bd81105ff6e2dca84b40fc9636 new file mode 100644 index 00000000..1f91e43f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6bb4b9bd81105ff6e2dca84b40fc9636 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6bce45dbf19565a899b08051b0779432 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6bce45dbf19565a899b08051b0779432 new file mode 100644 index 00000000..51f5f690 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6b/6bce45dbf19565a899b08051b0779432 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c00e2c3c9b5f9d0cc82a4c0b33ed452 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c00e2c3c9b5f9d0cc82a4c0b33ed452 new file mode 100644 index 00000000..564ff62a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c00e2c3c9b5f9d0cc82a4c0b33ed452 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c0f43c811e8c492e5d53e5b257b6b42 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c0f43c811e8c492e5d53e5b257b6b42 new file mode 100644 index 00000000..e32fb4d9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c0f43c811e8c492e5d53e5b257b6b42 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c1342abc3f625d7298c764d90e1cec6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c1342abc3f625d7298c764d90e1cec6 new file mode 100644 index 00000000..2fe507a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c1342abc3f625d7298c764d90e1cec6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c42ab2abf5ada80258e4c1f52ef9465 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c42ab2abf5ada80258e4c1f52ef9465 new file mode 100644 index 00000000..c0dd7b10 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c42ab2abf5ada80258e4c1f52ef9465 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c5aa8c72c56a605524a94efaf59736e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c5aa8c72c56a605524a94efaf59736e new file mode 100644 index 00000000..0bd7271f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c5aa8c72c56a605524a94efaf59736e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c60da225a9c340b7c39d250cfe49922 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c60da225a9c340b7c39d250cfe49922 new file mode 100644 index 00000000..84b9fa10 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c60da225a9c340b7c39d250cfe49922 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c7acf57e9306c17d0d35f5b604eb667 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c7acf57e9306c17d0d35f5b604eb667 new file mode 100644 index 00000000..e8706b79 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c7acf57e9306c17d0d35f5b604eb667 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c965ba38eae65f520940a9f0ff1e5f0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c965ba38eae65f520940a9f0ff1e5f0 new file mode 100644 index 00000000..a9031f6c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c965ba38eae65f520940a9f0ff1e5f0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c9c772744c7ee2781f9e7631ca2d352 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c9c772744c7ee2781f9e7631ca2d352 new file mode 100644 index 00000000..25cca4da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c9c772744c7ee2781f9e7631ca2d352 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c9ff64e31e205d5164ee4b6524cb521 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c9ff64e31e205d5164ee4b6524cb521 new file mode 100644 index 00000000..0a940df5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6c9ff64e31e205d5164ee4b6524cb521 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6caac2b6e9e26f53922b54444c6c7193 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6caac2b6e9e26f53922b54444c6c7193 new file mode 100644 index 00000000..d065e192 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6caac2b6e9e26f53922b54444c6c7193 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6cbd46cd02c153cbb2e401d57d6400b7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6cbd46cd02c153cbb2e401d57d6400b7 new file mode 100644 index 00000000..57132819 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6cbd46cd02c153cbb2e401d57d6400b7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6ccc15ea695240f64d5a0e82797e4e61 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6ccc15ea695240f64d5a0e82797e4e61 new file mode 100644 index 00000000..93de2fb7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6ccc15ea695240f64d5a0e82797e4e61 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6cd30ba9d3fffc762fe9b9e92b8c83d1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6cd30ba9d3fffc762fe9b9e92b8c83d1 new file mode 100644 index 00000000..e6cb0b2c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6cd30ba9d3fffc762fe9b9e92b8c83d1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6cfd7d67cf51120d996e6a88a442408b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6cfd7d67cf51120d996e6a88a442408b new file mode 100644 index 00000000..9b140527 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6cfd7d67cf51120d996e6a88a442408b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6cff719dcb198e3e3426a1232d9b0a0b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6cff719dcb198e3e3426a1232d9b0a0b new file mode 100644 index 00000000..e423dbf4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6c/6cff719dcb198e3e3426a1232d9b0a0b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6d20a95a08447a92ed0453d4b13fcd87 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6d20a95a08447a92ed0453d4b13fcd87 new file mode 100644 index 00000000..97a54317 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6d20a95a08447a92ed0453d4b13fcd87 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6d26e3ad315bba6a937161d26df607e2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6d26e3ad315bba6a937161d26df607e2 new file mode 100644 index 00000000..075a929d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6d26e3ad315bba6a937161d26df607e2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6d8516a98c48f94d2830e402106f17c6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6d8516a98c48f94d2830e402106f17c6 new file mode 100644 index 00000000..8d2b51a9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6d8516a98c48f94d2830e402106f17c6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6d9bfb4c0c29841dd5e6163d2241547e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6d9bfb4c0c29841dd5e6163d2241547e new file mode 100644 index 00000000..6aa7ec49 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6d9bfb4c0c29841dd5e6163d2241547e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6da1eec417cefa960afe4872008665c2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6da1eec417cefa960afe4872008665c2 new file mode 100644 index 00000000..80485c72 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6da1eec417cefa960afe4872008665c2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6dc65265f3a1ab218287c4ed5e37d7ca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6dc65265f3a1ab218287c4ed5e37d7ca new file mode 100644 index 00000000..bdcc39d9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6dc65265f3a1ab218287c4ed5e37d7ca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6dc76c149c53fb73dda5acbe38a5f3e4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6dc76c149c53fb73dda5acbe38a5f3e4 new file mode 100644 index 00000000..c0fa515b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6dc76c149c53fb73dda5acbe38a5f3e4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6dd3c8025926467a2515d5b85f2fc952 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6dd3c8025926467a2515d5b85f2fc952 new file mode 100644 index 00000000..c2124144 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6dd3c8025926467a2515d5b85f2fc952 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6dd8a0748ac65fc97e27929e48a15812 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6dd8a0748ac65fc97e27929e48a15812 new file mode 100644 index 00000000..646c80c5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6dd8a0748ac65fc97e27929e48a15812 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6de7d38778732f82c03b4525b8a0e0e5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6de7d38778732f82c03b4525b8a0e0e5 new file mode 100644 index 00000000..4bf22a4a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6de7d38778732f82c03b4525b8a0e0e5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6df496a0fdb8247f9de89b15f0c6d126 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6df496a0fdb8247f9de89b15f0c6d126 new file mode 100644 index 00000000..b69b3995 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6d/6df496a0fdb8247f9de89b15f0c6d126 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e0ebd2125dd3aed60c760b69ebc37cd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e0ebd2125dd3aed60c760b69ebc37cd new file mode 100644 index 00000000..8360d31d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e0ebd2125dd3aed60c760b69ebc37cd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e0eeb8d8c1a72f1d0b9f52cbef7ac0e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e0eeb8d8c1a72f1d0b9f52cbef7ac0e new file mode 100644 index 00000000..bfdcbc89 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e0eeb8d8c1a72f1d0b9f52cbef7ac0e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e14f22f6539321e921de588b9926a90 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e14f22f6539321e921de588b9926a90 new file mode 100644 index 00000000..d453cb42 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e14f22f6539321e921de588b9926a90 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e3a198afef0bcb81a55a546f6141718 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e3a198afef0bcb81a55a546f6141718 new file mode 100644 index 00000000..679ba535 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e3a198afef0bcb81a55a546f6141718 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e3ee2e7106d13157a1ea0f5885e6230 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e3ee2e7106d13157a1ea0f5885e6230 new file mode 100644 index 00000000..546ee681 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e3ee2e7106d13157a1ea0f5885e6230 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e5199816441d0ec836a6254d59ce83c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e5199816441d0ec836a6254d59ce83c new file mode 100644 index 00000000..eb5c8cd6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e5199816441d0ec836a6254d59ce83c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e57f2680db7867dae00fe200e095475 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e57f2680db7867dae00fe200e095475 new file mode 100644 index 00000000..92006c39 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e57f2680db7867dae00fe200e095475 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e9799aa264549da4af331fa6ca4f62c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e9799aa264549da4af331fa6ca4f62c new file mode 100644 index 00000000..a59410ea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e9799aa264549da4af331fa6ca4f62c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e97eeaa39ec0cfd6dc44006a79c1ee6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e97eeaa39ec0cfd6dc44006a79c1ee6 new file mode 100644 index 00000000..ea7ea471 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6e97eeaa39ec0cfd6dc44006a79c1ee6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ea0565263a712d849ec2a7d31319153 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ea0565263a712d849ec2a7d31319153 new file mode 100644 index 00000000..abaf6182 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ea0565263a712d849ec2a7d31319153 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6eb5cac3a540ea6b65320f2a8f68a5bf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6eb5cac3a540ea6b65320f2a8f68a5bf new file mode 100644 index 00000000..a132d269 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6eb5cac3a540ea6b65320f2a8f68a5bf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6eb7a56b708f86751a5fa325db31f3c8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6eb7a56b708f86751a5fa325db31f3c8 new file mode 100644 index 00000000..69278e45 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6eb7a56b708f86751a5fa325db31f3c8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ec3a48e743d3f8322c8efefb0fb2fd1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ec3a48e743d3f8322c8efefb0fb2fd1 new file mode 100644 index 00000000..eff3cce9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ec3a48e743d3f8322c8efefb0fb2fd1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ec52c87845ffe57003b701ba64c14d0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ec52c87845ffe57003b701ba64c14d0 new file mode 100644 index 00000000..5314d772 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ec52c87845ffe57003b701ba64c14d0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ecaa9954309cb18d867b60c201aeed4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ecaa9954309cb18d867b60c201aeed4 new file mode 100644 index 00000000..f64f7907 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ecaa9954309cb18d867b60c201aeed4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ee7a1d907e7a65f0e3f1ebbaca90dec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ee7a1d907e7a65f0e3f1ebbaca90dec new file mode 100644 index 00000000..c9411582 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ee7a1d907e7a65f0e3f1ebbaca90dec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ef2f4213cb31c298eaa381cb898b408 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ef2f4213cb31c298eaa381cb898b408 new file mode 100644 index 00000000..8ad6bda2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6e/6ef2f4213cb31c298eaa381cb898b408 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f25049e7ae95239e7ad384077eafae3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f25049e7ae95239e7ad384077eafae3 new file mode 100644 index 00000000..ffd92578 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f25049e7ae95239e7ad384077eafae3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f28f1e3eec1a99b3943c65f3e75416c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f28f1e3eec1a99b3943c65f3e75416c new file mode 100644 index 00000000..aad81ee7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f28f1e3eec1a99b3943c65f3e75416c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f2e0ccaf6f3a1bdc83baacd293bbdc3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f2e0ccaf6f3a1bdc83baacd293bbdc3 new file mode 100644 index 00000000..a61cecb7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f2e0ccaf6f3a1bdc83baacd293bbdc3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f34e82ba5f26f4510cf20975067d7a3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f34e82ba5f26f4510cf20975067d7a3 new file mode 100644 index 00000000..795192ee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f34e82ba5f26f4510cf20975067d7a3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f3a28f1b9063a2bc7cbd005720fd17e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f3a28f1b9063a2bc7cbd005720fd17e new file mode 100644 index 00000000..40007227 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f3a28f1b9063a2bc7cbd005720fd17e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f50aac164d5dde83fd43002a31c9c5c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f50aac164d5dde83fd43002a31c9c5c new file mode 100644 index 00000000..30079e76 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f50aac164d5dde83fd43002a31c9c5c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f51971d503d4dfc595b9880465cf70f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f51971d503d4dfc595b9880465cf70f new file mode 100644 index 00000000..e7394362 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f51971d503d4dfc595b9880465cf70f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f5fbf6688f1f8ac8f0e1a66ad2d3464 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f5fbf6688f1f8ac8f0e1a66ad2d3464 new file mode 100644 index 00000000..630c8ada Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f5fbf6688f1f8ac8f0e1a66ad2d3464 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f6b9ac9868f1ec38c1de10c895d6090 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f6b9ac9868f1ec38c1de10c895d6090 new file mode 100644 index 00000000..b29b0347 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f6b9ac9868f1ec38c1de10c895d6090 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f7d9488fea2df733adaa4e5e936e100 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f7d9488fea2df733adaa4e5e936e100 new file mode 100644 index 00000000..54229dc1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f7d9488fea2df733adaa4e5e936e100 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f7df7b09fde9496a82f182c358618ac b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f7df7b09fde9496a82f182c358618ac new file mode 100644 index 00000000..ec692d0a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f7df7b09fde9496a82f182c358618ac differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f8a0f776752f4c66e24598a85457068 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f8a0f776752f4c66e24598a85457068 new file mode 100644 index 00000000..858ee95c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6f8a0f776752f4c66e24598a85457068 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6fc8f222643adb697f841823b41cb22f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6fc8f222643adb697f841823b41cb22f new file mode 100644 index 00000000..e883b27d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6fc8f222643adb697f841823b41cb22f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6fcdb813a8f59a47eb151fe0165cea4a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6fcdb813a8f59a47eb151fe0165cea4a new file mode 100644 index 00000000..f22854a3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6fcdb813a8f59a47eb151fe0165cea4a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6fe8f862913557b736822c1c1b4aa12c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6fe8f862913557b736822c1c1b4aa12c new file mode 100644 index 00000000..d0592e6a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6fe8f862913557b736822c1c1b4aa12c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6feedb1d17e6bef38ab0256404a67296 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6feedb1d17e6bef38ab0256404a67296 new file mode 100644 index 00000000..ea0cd2a2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/6f/6feedb1d17e6bef38ab0256404a67296 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/700c6b5a9abd7ed489ca0efa8a3e1a8b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/700c6b5a9abd7ed489ca0efa8a3e1a8b new file mode 100644 index 00000000..beac8fc1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/700c6b5a9abd7ed489ca0efa8a3e1a8b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/704c3fa2d2ec0b458fc12669daaa9751 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/704c3fa2d2ec0b458fc12669daaa9751 new file mode 100644 index 00000000..ac186136 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/704c3fa2d2ec0b458fc12669daaa9751 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/704e5d6fb9f9c95afb576dbc577278dc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/704e5d6fb9f9c95afb576dbc577278dc new file mode 100644 index 00000000..8c875f57 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/704e5d6fb9f9c95afb576dbc577278dc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/705cd2071c716adc012d52d8f169ea03 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/705cd2071c716adc012d52d8f169ea03 new file mode 100644 index 00000000..d8a76c57 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/705cd2071c716adc012d52d8f169ea03 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/7067a4dd11eafd5b6902be55598e6e3c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/7067a4dd11eafd5b6902be55598e6e3c new file mode 100644 index 00000000..d8d61b03 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/7067a4dd11eafd5b6902be55598e6e3c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/708544fe754a671afbd3c3cd7561be9b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/708544fe754a671afbd3c3cd7561be9b new file mode 100644 index 00000000..62270c7d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/708544fe754a671afbd3c3cd7561be9b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/7090e68509451fa40cbcaa1350196f5a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/7090e68509451fa40cbcaa1350196f5a new file mode 100644 index 00000000..23fefe01 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/7090e68509451fa40cbcaa1350196f5a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/7096b8410e4b96e6afb843f1c5d1ef04 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/7096b8410e4b96e6afb843f1c5d1ef04 new file mode 100644 index 00000000..1f4e2204 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/7096b8410e4b96e6afb843f1c5d1ef04 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/7097fa84d9da094c436b7cb4ede34148 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/7097fa84d9da094c436b7cb4ede34148 new file mode 100644 index 00000000..d44b268c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/7097fa84d9da094c436b7cb4ede34148 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/709ef3b1bd3f6f7696e69cdcb514a7aa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/709ef3b1bd3f6f7696e69cdcb514a7aa new file mode 100644 index 00000000..2e7c69a0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/709ef3b1bd3f6f7696e69cdcb514a7aa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/70a68e3460dc9262b156203a7556f0bb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/70a68e3460dc9262b156203a7556f0bb new file mode 100644 index 00000000..88ad3be6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/70a68e3460dc9262b156203a7556f0bb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/70baaea63cad9c0e2967fbe5e80e4732 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/70baaea63cad9c0e2967fbe5e80e4732 new file mode 100644 index 00000000..161786d3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/70baaea63cad9c0e2967fbe5e80e4732 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/70cb74b549310921b7b4715786c90bc2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/70cb74b549310921b7b4715786c90bc2 new file mode 100644 index 00000000..e13f66d5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/70cb74b549310921b7b4715786c90bc2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/70e3f9163645b1f4d28ae6553e465bef b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/70e3f9163645b1f4d28ae6553e465bef new file mode 100644 index 00000000..b7664b6f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/70/70e3f9163645b1f4d28ae6553e465bef differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/710b9e8b14882c8c8fc72d04157cfe6b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/710b9e8b14882c8c8fc72d04157cfe6b new file mode 100644 index 00000000..289eaace Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/710b9e8b14882c8c8fc72d04157cfe6b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/711d9e1bb0e42fe64d198352e6fdc90c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/711d9e1bb0e42fe64d198352e6fdc90c new file mode 100644 index 00000000..7917bf90 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/711d9e1bb0e42fe64d198352e6fdc90c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/712645bca0a697f047d273be5b866952 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/712645bca0a697f047d273be5b866952 new file mode 100644 index 00000000..289bb504 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/712645bca0a697f047d273be5b866952 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/712dbd2f255c6b7024f171a02761fe18 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/712dbd2f255c6b7024f171a02761fe18 new file mode 100644 index 00000000..d2e470b9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/712dbd2f255c6b7024f171a02761fe18 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71424853b38f4c1d2557cb6c6bda5a0a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71424853b38f4c1d2557cb6c6bda5a0a new file mode 100644 index 00000000..f5f7e50c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71424853b38f4c1d2557cb6c6bda5a0a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/715be6066dea40ff6dc5bb6ecd610253 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/715be6066dea40ff6dc5bb6ecd610253 new file mode 100644 index 00000000..0476faa7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/715be6066dea40ff6dc5bb6ecd610253 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/716e37f6c33e461673691b80d36f0f02 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/716e37f6c33e461673691b80d36f0f02 new file mode 100644 index 00000000..cf5186d1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/716e37f6c33e461673691b80d36f0f02 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/7177ac0d737ad6a200ff579110cd32ff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/7177ac0d737ad6a200ff579110cd32ff new file mode 100644 index 00000000..25f0ea9a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/7177ac0d737ad6a200ff579110cd32ff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/717c0c1486b192525d4f97f9b7e38ffe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/717c0c1486b192525d4f97f9b7e38ffe new file mode 100644 index 00000000..5f62cb9f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/717c0c1486b192525d4f97f9b7e38ffe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71871206eeab7e9fbaa5f0c047333390 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71871206eeab7e9fbaa5f0c047333390 new file mode 100644 index 00000000..f2da93d7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71871206eeab7e9fbaa5f0c047333390 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/719787d7ab2e68e8cf9035a85a33057e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/719787d7ab2e68e8cf9035a85a33057e new file mode 100644 index 00000000..9e0a4929 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/719787d7ab2e68e8cf9035a85a33057e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/719b29af47fee6f75e4637be205fcee8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/719b29af47fee6f75e4637be205fcee8 new file mode 100644 index 00000000..4cd8f120 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/719b29af47fee6f75e4637be205fcee8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71c6ae4559aafefbc9be417b854967eb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71c6ae4559aafefbc9be417b854967eb new file mode 100644 index 00000000..745050fb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71c6ae4559aafefbc9be417b854967eb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71c9197bc42d1cb31b998404453c7aa1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71c9197bc42d1cb31b998404453c7aa1 new file mode 100644 index 00000000..1e087489 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71c9197bc42d1cb31b998404453c7aa1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71d4df4531f21ba280f20727c9947d6c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71d4df4531f21ba280f20727c9947d6c new file mode 100644 index 00000000..db71185e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71d4df4531f21ba280f20727c9947d6c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71d5f180c97e86cd9b2ebdccf719ca03 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71d5f180c97e86cd9b2ebdccf719ca03 new file mode 100644 index 00000000..088f3073 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71d5f180c97e86cd9b2ebdccf719ca03 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71db11e8f78ad2b9b8bbfee9799f4f36 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71db11e8f78ad2b9b8bbfee9799f4f36 new file mode 100644 index 00000000..5e15d0e3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/71/71db11e8f78ad2b9b8bbfee9799f4f36 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/720334cc1463c00aeb46f4e94619d7c8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/720334cc1463c00aeb46f4e94619d7c8 new file mode 100644 index 00000000..db3c1acd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/720334cc1463c00aeb46f4e94619d7c8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/7224484f623a3c3a9e1845dcb1d6e0e0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/7224484f623a3c3a9e1845dcb1d6e0e0 new file mode 100644 index 00000000..c58c7dc7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/7224484f623a3c3a9e1845dcb1d6e0e0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/7239c4b0d76242275aaac84672b8f94b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/7239c4b0d76242275aaac84672b8f94b new file mode 100644 index 00000000..62ad6ac8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/7239c4b0d76242275aaac84672b8f94b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72608bdbd09b5a6ef146db4195f99c1b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72608bdbd09b5a6ef146db4195f99c1b new file mode 100644 index 00000000..79493f0f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72608bdbd09b5a6ef146db4195f99c1b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/7295517683f8c026e68e81352122c482 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/7295517683f8c026e68e81352122c482 new file mode 100644 index 00000000..d6f2bf49 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/7295517683f8c026e68e81352122c482 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72979075badf7682a70cc3c2b6b0b81d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72979075badf7682a70cc3c2b6b0b81d new file mode 100644 index 00000000..390e9370 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72979075badf7682a70cc3c2b6b0b81d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/729a93e785f8d7d61964304fd6f84a00 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/729a93e785f8d7d61964304fd6f84a00 new file mode 100644 index 00000000..8464ada3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/729a93e785f8d7d61964304fd6f84a00 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/729e1efba95a62576dd3c324112190ba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/729e1efba95a62576dd3c324112190ba new file mode 100644 index 00000000..ac11556b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/729e1efba95a62576dd3c324112190ba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72a0c344970c15bb6621aada1821561e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72a0c344970c15bb6621aada1821561e new file mode 100644 index 00000000..4ec7cfb8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72a0c344970c15bb6621aada1821561e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72aeb3bc9454e52acd971f57c0dd15f6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72aeb3bc9454e52acd971f57c0dd15f6 new file mode 100644 index 00000000..acb48077 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72aeb3bc9454e52acd971f57c0dd15f6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72afbe698742c96afce1231d62a37c48 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72afbe698742c96afce1231d62a37c48 new file mode 100644 index 00000000..1004c41a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72afbe698742c96afce1231d62a37c48 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72be044d11bb3e0132c3cfec5c8c5e8b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72be044d11bb3e0132c3cfec5c8c5e8b new file mode 100644 index 00000000..04314bfd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72be044d11bb3e0132c3cfec5c8c5e8b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72d6467f97252dc70759ce9cf42891ba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72d6467f97252dc70759ce9cf42891ba new file mode 100644 index 00000000..85042632 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72d6467f97252dc70759ce9cf42891ba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72e5505a03b03b27f781e8852e5bcc3c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72e5505a03b03b27f781e8852e5bcc3c new file mode 100644 index 00000000..52fa2bbe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72e5505a03b03b27f781e8852e5bcc3c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72e599e18e4bc88d2b686c248a3ba2df b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72e599e18e4bc88d2b686c248a3ba2df new file mode 100644 index 00000000..1620e965 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72e599e18e4bc88d2b686c248a3ba2df differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72e75bd4e1563a76e8461c2c5a5ad21e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72e75bd4e1563a76e8461c2c5a5ad21e new file mode 100644 index 00000000..678511e9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72e75bd4e1563a76e8461c2c5a5ad21e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72ee173525b83b126e4c6393c1652660 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72ee173525b83b126e4c6393c1652660 new file mode 100644 index 00000000..fa158f9e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/72/72ee173525b83b126e4c6393c1652660 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/730a0be3ec1c9230f7393d6b9542494d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/730a0be3ec1c9230f7393d6b9542494d new file mode 100644 index 00000000..953dfb2d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/730a0be3ec1c9230f7393d6b9542494d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/731fe609b8b781f82e290bbd7255b496 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/731fe609b8b781f82e290bbd7255b496 new file mode 100644 index 00000000..7fb3d9c6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/731fe609b8b781f82e290bbd7255b496 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/7326a43ecee8e6054140dc698d8559e5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/7326a43ecee8e6054140dc698d8559e5 new file mode 100644 index 00000000..edb5ac68 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/7326a43ecee8e6054140dc698d8559e5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/7330ccea0304297463fa223ba0fff17b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/7330ccea0304297463fa223ba0fff17b new file mode 100644 index 00000000..8dae9be8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/7330ccea0304297463fa223ba0fff17b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/733b78653b41f874cec3232973292b5f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/733b78653b41f874cec3232973292b5f new file mode 100644 index 00000000..5b04b813 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/733b78653b41f874cec3232973292b5f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73622ddcead8221cafe9665c88d97adc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73622ddcead8221cafe9665c88d97adc new file mode 100644 index 00000000..d77df91c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73622ddcead8221cafe9665c88d97adc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/738166a5b2bad95a80814528a2314ee1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/738166a5b2bad95a80814528a2314ee1 new file mode 100644 index 00000000..78a45d67 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/738166a5b2bad95a80814528a2314ee1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73a4102e885af06973e6da399123bdd5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73a4102e885af06973e6da399123bdd5 new file mode 100644 index 00000000..abc400cb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73a4102e885af06973e6da399123bdd5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73acdb3cc8c00a5a9fc8b3b9611362f9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73acdb3cc8c00a5a9fc8b3b9611362f9 new file mode 100644 index 00000000..3265ff63 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73acdb3cc8c00a5a9fc8b3b9611362f9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73d926b3c9ea4aff941f3ed79de55273 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73d926b3c9ea4aff941f3ed79de55273 new file mode 100644 index 00000000..ef59d4b7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73d926b3c9ea4aff941f3ed79de55273 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73e266a33acea3c5aac34ac482e6dc9b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73e266a33acea3c5aac34ac482e6dc9b new file mode 100644 index 00000000..7793f151 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73e266a33acea3c5aac34ac482e6dc9b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73e4d974841120c73a18e8b885af6090 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73e4d974841120c73a18e8b885af6090 new file mode 100644 index 00000000..0beadda8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/73/73e4d974841120c73a18e8b885af6090 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/740130608a9147ac1402abe848a221d2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/740130608a9147ac1402abe848a221d2 new file mode 100644 index 00000000..23f7d744 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/740130608a9147ac1402abe848a221d2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74095ca65c8af789c60a9eb3f3f40f39 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74095ca65c8af789c60a9eb3f3f40f39 new file mode 100644 index 00000000..cebc4159 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74095ca65c8af789c60a9eb3f3f40f39 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/740e0290bb5acc9db61ea8cef850bb2e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/740e0290bb5acc9db61ea8cef850bb2e new file mode 100644 index 00000000..95d2f03b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/740e0290bb5acc9db61ea8cef850bb2e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/7411764ab2a8331b53858624c7049284 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/7411764ab2a8331b53858624c7049284 new file mode 100644 index 00000000..02d95194 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/7411764ab2a8331b53858624c7049284 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/7422a3cbf405caeb3c8102eceeae83e8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/7422a3cbf405caeb3c8102eceeae83e8 new file mode 100644 index 00000000..618b5b8d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/7422a3cbf405caeb3c8102eceeae83e8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/742cf3bcc8e6d80c8bbb2df3f6761248 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/742cf3bcc8e6d80c8bbb2df3f6761248 new file mode 100644 index 00000000..af964d5f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/742cf3bcc8e6d80c8bbb2df3f6761248 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/743d4285b3fc8bac99a5a4c66dfd67b9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/743d4285b3fc8bac99a5a4c66dfd67b9 new file mode 100644 index 00000000..6df4ecc9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/743d4285b3fc8bac99a5a4c66dfd67b9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/7442b0b16178c9c7488186fa1411067b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/7442b0b16178c9c7488186fa1411067b new file mode 100644 index 00000000..bd8338b6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/7442b0b16178c9c7488186fa1411067b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74498fb9cb8e70a1848351c5d7b22ac1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74498fb9cb8e70a1848351c5d7b22ac1 new file mode 100644 index 00000000..00c06190 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74498fb9cb8e70a1848351c5d7b22ac1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/745324eb8fba36310f71789774cadc50 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/745324eb8fba36310f71789774cadc50 new file mode 100644 index 00000000..81b9d00a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/745324eb8fba36310f71789774cadc50 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/747a3dab22470a50a350d5a97bb1bc3d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/747a3dab22470a50a350d5a97bb1bc3d new file mode 100644 index 00000000..ee8fbe68 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/747a3dab22470a50a350d5a97bb1bc3d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/749004f686d5b25c898706d9e16faa6d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/749004f686d5b25c898706d9e16faa6d new file mode 100644 index 00000000..35f377be Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/749004f686d5b25c898706d9e16faa6d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74b8c9a3c5944891071c5e89942c5de4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74b8c9a3c5944891071c5e89942c5de4 new file mode 100644 index 00000000..dd5922a2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74b8c9a3c5944891071c5e89942c5de4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74f799a7f056524e051350e3c3ca6692 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74f799a7f056524e051350e3c3ca6692 new file mode 100644 index 00000000..3a540233 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74f799a7f056524e051350e3c3ca6692 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74fe12f396f90ee91a04ce1c58b57c96 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74fe12f396f90ee91a04ce1c58b57c96 new file mode 100644 index 00000000..5e96b723 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74fe12f396f90ee91a04ce1c58b57c96 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74fff5015db4cfa00193f5d9b22605de b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74fff5015db4cfa00193f5d9b22605de new file mode 100644 index 00000000..86e0a825 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/74/74fff5015db4cfa00193f5d9b22605de differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/7509a2f932caebbc282b4a4fd6d15e35 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/7509a2f932caebbc282b4a4fd6d15e35 new file mode 100644 index 00000000..1a0bcb64 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/7509a2f932caebbc282b4a4fd6d15e35 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/751ddfe5d3b49b50d743f04bd3e7adf7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/751ddfe5d3b49b50d743f04bd3e7adf7 new file mode 100644 index 00000000..8fe3ef0e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/751ddfe5d3b49b50d743f04bd3e7adf7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/7527e330d366c8c79d6e2d537ce3044c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/7527e330d366c8c79d6e2d537ce3044c new file mode 100644 index 00000000..26dc8af0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/7527e330d366c8c79d6e2d537ce3044c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/752a83a16d27abca840a36282a37247e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/752a83a16d27abca840a36282a37247e new file mode 100644 index 00000000..323e44cc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/752a83a16d27abca840a36282a37247e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/753ba2027901d02a06614b62e1af569d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/753ba2027901d02a06614b62e1af569d new file mode 100644 index 00000000..9cb6f2ea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/753ba2027901d02a06614b62e1af569d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/7549e0b04bdc49a3460bb36b4ea6b247 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/7549e0b04bdc49a3460bb36b4ea6b247 new file mode 100644 index 00000000..7efdf311 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/7549e0b04bdc49a3460bb36b4ea6b247 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/754b6a4c400b2887bdd8f107b328a59b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/754b6a4c400b2887bdd8f107b328a59b new file mode 100644 index 00000000..a984dee3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/754b6a4c400b2887bdd8f107b328a59b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/754b710894e4fe9c3afed9ec7b2bc5a5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/754b710894e4fe9c3afed9ec7b2bc5a5 new file mode 100644 index 00000000..221b28b3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/754b710894e4fe9c3afed9ec7b2bc5a5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/755f5358471c8f8be2ff055d5be139b4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/755f5358471c8f8be2ff055d5be139b4 new file mode 100644 index 00000000..4b59a4e6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/755f5358471c8f8be2ff055d5be139b4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75724f32e1ba0893ce9478333f0752ad b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75724f32e1ba0893ce9478333f0752ad new file mode 100644 index 00000000..2d0e8d77 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75724f32e1ba0893ce9478333f0752ad differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/758829a867c4e3ad1fcded5e2572aeb5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/758829a867c4e3ad1fcded5e2572aeb5 new file mode 100644 index 00000000..a547da5f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/758829a867c4e3ad1fcded5e2572aeb5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/758b1f436fbf9562573fdd1d5dfec5db b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/758b1f436fbf9562573fdd1d5dfec5db new file mode 100644 index 00000000..cea2b207 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/758b1f436fbf9562573fdd1d5dfec5db differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/759aeef7ef5e755e4c4cf7f42cf48b3b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/759aeef7ef5e755e4c4cf7f42cf48b3b new file mode 100644 index 00000000..bedb4009 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/759aeef7ef5e755e4c4cf7f42cf48b3b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75a04e415bd349634c8b8d195b472e83 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75a04e415bd349634c8b8d195b472e83 new file mode 100644 index 00000000..d8a2b4fa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75a04e415bd349634c8b8d195b472e83 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75a6bd99ae3564d529a3ea1b550547a3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75a6bd99ae3564d529a3ea1b550547a3 new file mode 100644 index 00000000..8e9a3a68 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75a6bd99ae3564d529a3ea1b550547a3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75da132c0bcf1bf2c9b93cc7f6630836 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75da132c0bcf1bf2c9b93cc7f6630836 new file mode 100644 index 00000000..a4aa91f6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75da132c0bcf1bf2c9b93cc7f6630836 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75f8b5dd1e5ddecf1afccc3a78bc9748 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75f8b5dd1e5ddecf1afccc3a78bc9748 new file mode 100644 index 00000000..b5a088f8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75f8b5dd1e5ddecf1afccc3a78bc9748 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75fbd3ab436df881054e4b5adf8b0f49 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75fbd3ab436df881054e4b5adf8b0f49 new file mode 100644 index 00000000..cd97277a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75fbd3ab436df881054e4b5adf8b0f49 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75fcbf2148f1cc86919949c63a9b5f0e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75fcbf2148f1cc86919949c63a9b5f0e new file mode 100644 index 00000000..66aab3c4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/75/75fcbf2148f1cc86919949c63a9b5f0e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/760ff886185406e898d7b2761e6b9a8f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/760ff886185406e898d7b2761e6b9a8f new file mode 100644 index 00000000..bdc59b89 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/760ff886185406e898d7b2761e6b9a8f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/7619b76ce0585dbc5325525876faae41 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/7619b76ce0585dbc5325525876faae41 new file mode 100644 index 00000000..dd3ab069 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/7619b76ce0585dbc5325525876faae41 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/763ff300b52a6112ead7aa168011e446 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/763ff300b52a6112ead7aa168011e446 new file mode 100644 index 00000000..6d38f66c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/763ff300b52a6112ead7aa168011e446 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/764519f2309c7d267cbbe05fb8aa17ea b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/764519f2309c7d267cbbe05fb8aa17ea new file mode 100644 index 00000000..3c2af28f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/764519f2309c7d267cbbe05fb8aa17ea differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/765a73571077bdc376fb725197faf9c0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/765a73571077bdc376fb725197faf9c0 new file mode 100644 index 00000000..d4560b60 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/765a73571077bdc376fb725197faf9c0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/765d376adaad2c3e5505bfb6a80195a7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/765d376adaad2c3e5505bfb6a80195a7 new file mode 100644 index 00000000..d5675448 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/765d376adaad2c3e5505bfb6a80195a7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/765e261aa536873dec2ac956282fba2d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/765e261aa536873dec2ac956282fba2d new file mode 100644 index 00000000..d3704194 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/765e261aa536873dec2ac956282fba2d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/7664ff7017a1e46206dd369db221e769 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/7664ff7017a1e46206dd369db221e769 new file mode 100644 index 00000000..330c11bb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/7664ff7017a1e46206dd369db221e769 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/766f6eed8c7b2c0f548a28ca0de6f535 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/766f6eed8c7b2c0f548a28ca0de6f535 new file mode 100644 index 00000000..8b1be493 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/766f6eed8c7b2c0f548a28ca0de6f535 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/767e6799bd1bf365191e724b4fca0b39 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/767e6799bd1bf365191e724b4fca0b39 new file mode 100644 index 00000000..e051c8ae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/767e6799bd1bf365191e724b4fca0b39 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76a0f459626b290538fe313a300ae3c0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76a0f459626b290538fe313a300ae3c0 new file mode 100644 index 00000000..0fb81486 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76a0f459626b290538fe313a300ae3c0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76a2d43af53a22227601a0a512438b66 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76a2d43af53a22227601a0a512438b66 new file mode 100644 index 00000000..53d26e61 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76a2d43af53a22227601a0a512438b66 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76b2154150b50206b5cd0943120333e5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76b2154150b50206b5cd0943120333e5 new file mode 100644 index 00000000..660fd204 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76b2154150b50206b5cd0943120333e5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76cc84ea29ed7653507830e16ee8352e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76cc84ea29ed7653507830e16ee8352e new file mode 100644 index 00000000..9065a900 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76cc84ea29ed7653507830e16ee8352e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76cd6391e2742b6ed4970bba73bcd1f8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76cd6391e2742b6ed4970bba73bcd1f8 new file mode 100644 index 00000000..c0748ffd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76cd6391e2742b6ed4970bba73bcd1f8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76d2fcb4066e315ab9162195eb1dd4a1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76d2fcb4066e315ab9162195eb1dd4a1 new file mode 100644 index 00000000..d2d2f7e6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76d2fcb4066e315ab9162195eb1dd4a1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76dbe674743946c015a80ee02944fba0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76dbe674743946c015a80ee02944fba0 new file mode 100644 index 00000000..1d131072 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76dbe674743946c015a80ee02944fba0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76dfdd211cacc6a76660cdfc4d1712b3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76dfdd211cacc6a76660cdfc4d1712b3 new file mode 100644 index 00000000..055c2ea7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76dfdd211cacc6a76660cdfc4d1712b3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76e542dc788006d31be31f2adeda9ad2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76e542dc788006d31be31f2adeda9ad2 new file mode 100644 index 00000000..e4390e91 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76e542dc788006d31be31f2adeda9ad2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76f8d2fdad30397a927178c16599b9e5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76f8d2fdad30397a927178c16599b9e5 new file mode 100644 index 00000000..fb3dae58 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/76/76f8d2fdad30397a927178c16599b9e5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/77012a2b618b3fdabb5a7802350e6966 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/77012a2b618b3fdabb5a7802350e6966 new file mode 100644 index 00000000..f75a9396 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/77012a2b618b3fdabb5a7802350e6966 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/770d48dccd56d03ccc34a5647a42c4cd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/770d48dccd56d03ccc34a5647a42c4cd new file mode 100644 index 00000000..8ae4e827 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/770d48dccd56d03ccc34a5647a42c4cd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/77138c8b5ec5f9febdf8258639128e08 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/77138c8b5ec5f9febdf8258639128e08 new file mode 100644 index 00000000..dbd55da8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/77138c8b5ec5f9febdf8258639128e08 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/7740dae34451e21a56a159723867e7f6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/7740dae34451e21a56a159723867e7f6 new file mode 100644 index 00000000..a5792717 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/7740dae34451e21a56a159723867e7f6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/7769d8e06e36df8a6e1818a27173976a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/7769d8e06e36df8a6e1818a27173976a new file mode 100644 index 00000000..4a9d40c3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/7769d8e06e36df8a6e1818a27173976a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/7770b59b03de82c0afcfc2d63bcd34e0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/7770b59b03de82c0afcfc2d63bcd34e0 new file mode 100644 index 00000000..7d90141a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/7770b59b03de82c0afcfc2d63bcd34e0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/7777476a2674ebaec180a35c9871dd65 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/7777476a2674ebaec180a35c9871dd65 new file mode 100644 index 00000000..b914718e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/7777476a2674ebaec180a35c9871dd65 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/779468b969bab12682a80206e0133e7a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/779468b969bab12682a80206e0133e7a new file mode 100644 index 00000000..8f459bd7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/779468b969bab12682a80206e0133e7a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/77ad2bf3d19d2413d6643a0076489185 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/77ad2bf3d19d2413d6643a0076489185 new file mode 100644 index 00000000..9eeefda6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/77ad2bf3d19d2413d6643a0076489185 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/77f7849cbd5bf7c103abb87b2e16a4ef b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/77f7849cbd5bf7c103abb87b2e16a4ef new file mode 100644 index 00000000..684d5c61 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/77/77f7849cbd5bf7c103abb87b2e16a4ef differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78065f0f6f42d6a38247ac50c1284c23 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78065f0f6f42d6a38247ac50c1284c23 new file mode 100644 index 00000000..90b64370 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78065f0f6f42d6a38247ac50c1284c23 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/781c0fcfac42a9f1041d1e34fed638d3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/781c0fcfac42a9f1041d1e34fed638d3 new file mode 100644 index 00000000..e584bfba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/781c0fcfac42a9f1041d1e34fed638d3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/781ee497d6a79b18347d8722a925f6cb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/781ee497d6a79b18347d8722a925f6cb new file mode 100644 index 00000000..25ac2bdc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/781ee497d6a79b18347d8722a925f6cb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/784d15f008d15252a5ef0b79510f99e8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/784d15f008d15252a5ef0b79510f99e8 new file mode 100644 index 00000000..7928de13 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/784d15f008d15252a5ef0b79510f99e8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78616c614b03686d4b1aa2298ff8ef26 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78616c614b03686d4b1aa2298ff8ef26 new file mode 100644 index 00000000..ca07ebe6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78616c614b03686d4b1aa2298ff8ef26 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/789bd345d7d277aac2d17d9fdce4ab5d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/789bd345d7d277aac2d17d9fdce4ab5d new file mode 100644 index 00000000..d87584c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/789bd345d7d277aac2d17d9fdce4ab5d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78a7e66de383c18b1503f40c5077d895 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78a7e66de383c18b1503f40c5077d895 new file mode 100644 index 00000000..2736609e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78a7e66de383c18b1503f40c5077d895 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78b198a389ab27e21b97dbdd9c4a0181 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78b198a389ab27e21b97dbdd9c4a0181 new file mode 100644 index 00000000..fc0377b6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78b198a389ab27e21b97dbdd9c4a0181 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78d0bc0647e5b3dd0512b263d22fbb3f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78d0bc0647e5b3dd0512b263d22fbb3f new file mode 100644 index 00000000..119a7bcb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78d0bc0647e5b3dd0512b263d22fbb3f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78f712d6ed261259ffc95ae47bbdae15 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78f712d6ed261259ffc95ae47bbdae15 new file mode 100644 index 00000000..ac54c53b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/78/78f712d6ed261259ffc95ae47bbdae15 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/790a6f15e8a2216602572343fe1b9965 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/790a6f15e8a2216602572343fe1b9965 new file mode 100644 index 00000000..2696c871 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/790a6f15e8a2216602572343fe1b9965 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7913a7281de7cfee973b587fe47ae2a3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7913a7281de7cfee973b587fe47ae2a3 new file mode 100644 index 00000000..77b30f49 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7913a7281de7cfee973b587fe47ae2a3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/791411cd0fbd359d1a320fb60d2e2f95 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/791411cd0fbd359d1a320fb60d2e2f95 new file mode 100644 index 00000000..505df457 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/791411cd0fbd359d1a320fb60d2e2f95 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/791ecf2edd431b33d9f17046103ce4f2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/791ecf2edd431b33d9f17046103ce4f2 new file mode 100644 index 00000000..ed7938d5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/791ecf2edd431b33d9f17046103ce4f2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7927bb45845797a1f2696f6af6c9c241 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7927bb45845797a1f2696f6af6c9c241 new file mode 100644 index 00000000..e01d2813 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7927bb45845797a1f2696f6af6c9c241 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/793f406d473ffdb0d2276ac7d0434611 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/793f406d473ffdb0d2276ac7d0434611 new file mode 100644 index 00000000..2d13908e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/793f406d473ffdb0d2276ac7d0434611 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/794bdd9beb55e0c507d0c347bfc07751 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/794bdd9beb55e0c507d0c347bfc07751 new file mode 100644 index 00000000..d3ee10e9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/794bdd9beb55e0c507d0c347bfc07751 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7955f2c4a55bc6f11cf967e34db087fe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7955f2c4a55bc6f11cf967e34db087fe new file mode 100644 index 00000000..1155c998 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7955f2c4a55bc6f11cf967e34db087fe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79572515f127b31e7d949439dec6c070 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79572515f127b31e7d949439dec6c070 new file mode 100644 index 00000000..e2bf8668 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79572515f127b31e7d949439dec6c070 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7959bead86d1a05944fe20fee3731fd7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7959bead86d1a05944fe20fee3731fd7 new file mode 100644 index 00000000..d8c3cd45 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7959bead86d1a05944fe20fee3731fd7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/795f93ca271b947ff610f85c0ac75952 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/795f93ca271b947ff610f85c0ac75952 new file mode 100644 index 00000000..a951e532 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/795f93ca271b947ff610f85c0ac75952 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7978c4ab37196fa29ab0a70c24bb2dc4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7978c4ab37196fa29ab0a70c24bb2dc4 new file mode 100644 index 00000000..22abc2b2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/7978c4ab37196fa29ab0a70c24bb2dc4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/797f356f1ed435f6a1e61ddc32ecc48f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/797f356f1ed435f6a1e61ddc32ecc48f new file mode 100644 index 00000000..7d672107 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/797f356f1ed435f6a1e61ddc32ecc48f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/797fa8150e81922805fa61e47593c00a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/797fa8150e81922805fa61e47593c00a new file mode 100644 index 00000000..826e2abf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/797fa8150e81922805fa61e47593c00a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79879647d120c9fc832052190b6ad290 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79879647d120c9fc832052190b6ad290 new file mode 100644 index 00000000..97c25d8f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79879647d120c9fc832052190b6ad290 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79bcd920d4274b6af9cfd84f581fc6d2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79bcd920d4274b6af9cfd84f581fc6d2 new file mode 100644 index 00000000..4c4bd8b6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79bcd920d4274b6af9cfd84f581fc6d2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79c912720d68aa4cbe697e53f8cd3fbb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79c912720d68aa4cbe697e53f8cd3fbb new file mode 100644 index 00000000..88fe7e0d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79c912720d68aa4cbe697e53f8cd3fbb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79d41a508b84d0183e2d2f59f0f1ca70 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79d41a508b84d0183e2d2f59f0f1ca70 new file mode 100644 index 00000000..e2b5d275 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79d41a508b84d0183e2d2f59f0f1ca70 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79db3990bcd9a19f6139c144295e5198 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79db3990bcd9a19f6139c144295e5198 new file mode 100644 index 00000000..03e3230f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/79/79db3990bcd9a19f6139c144295e5198 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a119a473c65260d4a0c49f808767e07 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a119a473c65260d4a0c49f808767e07 new file mode 100644 index 00000000..4ccf7368 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a119a473c65260d4a0c49f808767e07 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a43be95b6f2844cb498dfcb8a406c52 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a43be95b6f2844cb498dfcb8a406c52 new file mode 100644 index 00000000..082bcc70 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a43be95b6f2844cb498dfcb8a406c52 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a44e3baf3d4b1493109d4ce0b1fb0fb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a44e3baf3d4b1493109d4ce0b1fb0fb new file mode 100644 index 00000000..0d71a5cc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a44e3baf3d4b1493109d4ce0b1fb0fb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a93605b126350755cdfaa229f040d58 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a93605b126350755cdfaa229f040d58 new file mode 100644 index 00000000..a2c2c6f8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a93605b126350755cdfaa229f040d58 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a93bb0b6bbb572786d62f62bcbcc299 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a93bb0b6bbb572786d62f62bcbcc299 new file mode 100644 index 00000000..adb27836 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7a93bb0b6bbb572786d62f62bcbcc299 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7aab6d11cc33cee084b384bec5eadd25 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7aab6d11cc33cee084b384bec5eadd25 new file mode 100644 index 00000000..aeba88dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7aab6d11cc33cee084b384bec5eadd25 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ac1c92a9ad3ed4c6f39e96f6bbf8c7c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ac1c92a9ad3ed4c6f39e96f6bbf8c7c new file mode 100644 index 00000000..80f30c0f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ac1c92a9ad3ed4c6f39e96f6bbf8c7c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ac541604a98eece156f3dfc27c3fc75 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ac541604a98eece156f3dfc27c3fc75 new file mode 100644 index 00000000..3902cc95 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ac541604a98eece156f3dfc27c3fc75 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ad8507fe24e1218d107f0130faae392 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ad8507fe24e1218d107f0130faae392 new file mode 100644 index 00000000..cd9865a0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ad8507fe24e1218d107f0130faae392 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ae2c9322259e859c17941a5ec2fa887 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ae2c9322259e859c17941a5ec2fa887 new file mode 100644 index 00000000..ec7339fa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ae2c9322259e859c17941a5ec2fa887 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ae8e3256fe61e95e15382eed3624039 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ae8e3256fe61e95e15382eed3624039 new file mode 100644 index 00000000..cf498e43 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7ae8e3256fe61e95e15382eed3624039 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7af73421736443aa4ac4b804c051e6bf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7af73421736443aa4ac4b804c051e6bf new file mode 100644 index 00000000..281b3cab Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7af73421736443aa4ac4b804c051e6bf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7afcbc2be535b136fc558bdf2e05cd30 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7afcbc2be535b136fc558bdf2e05cd30 new file mode 100644 index 00000000..e15bec1b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7a/7afcbc2be535b136fc558bdf2e05cd30 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b07c1ead1d8b35ec075603162de8c58 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b07c1ead1d8b35ec075603162de8c58 new file mode 100644 index 00000000..2ef67ece Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b07c1ead1d8b35ec075603162de8c58 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b0fffce67cb96d5b59fe6a0fd679865 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b0fffce67cb96d5b59fe6a0fd679865 new file mode 100644 index 00000000..7fee2053 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b0fffce67cb96d5b59fe6a0fd679865 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b1630c5822b680ee9fdf9762a1c6b4b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b1630c5822b680ee9fdf9762a1c6b4b new file mode 100644 index 00000000..e8b1ec75 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b1630c5822b680ee9fdf9762a1c6b4b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b28539d8d4e6cd073447652e9a0e010 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b28539d8d4e6cd073447652e9a0e010 new file mode 100644 index 00000000..b6bce728 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b28539d8d4e6cd073447652e9a0e010 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b5f5194f933256769d59c8198d45876 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b5f5194f933256769d59c8198d45876 new file mode 100644 index 00000000..e2702027 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b5f5194f933256769d59c8198d45876 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b6137ccb1f14d645d233e56fb3bae40 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b6137ccb1f14d645d233e56fb3bae40 new file mode 100644 index 00000000..d3222608 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b6137ccb1f14d645d233e56fb3bae40 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b762e5fb3f32cdef3375d05198a0040 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b762e5fb3f32cdef3375d05198a0040 new file mode 100644 index 00000000..f2f65963 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b762e5fb3f32cdef3375d05198a0040 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b8536383bdaeec0f0bcc4ac3b9497fb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b8536383bdaeec0f0bcc4ac3b9497fb new file mode 100644 index 00000000..c74e281d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b8536383bdaeec0f0bcc4ac3b9497fb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b86a169e9daeddc890851e7f3668ce6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b86a169e9daeddc890851e7f3668ce6 new file mode 100644 index 00000000..1cf1b5ed Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b86a169e9daeddc890851e7f3668ce6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b9a243c9ebd4aef213949cc452a8f61 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b9a243c9ebd4aef213949cc452a8f61 new file mode 100644 index 00000000..9721a946 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b9a243c9ebd4aef213949cc452a8f61 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b9dbf8aa4239b2e856866fc43259f79 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b9dbf8aa4239b2e856866fc43259f79 new file mode 100644 index 00000000..ce6b9f0c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7b9dbf8aa4239b2e856866fc43259f79 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bbc84aac0caedb1f82ee9d0e6074791 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bbc84aac0caedb1f82ee9d0e6074791 new file mode 100644 index 00000000..aad0af62 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bbc84aac0caedb1f82ee9d0e6074791 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bbfdd9b6da988da4976442480810657 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bbfdd9b6da988da4976442480810657 new file mode 100644 index 00000000..29e1a765 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bbfdd9b6da988da4976442480810657 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bcc0d4317d365d08e78078db25baa13 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bcc0d4317d365d08e78078db25baa13 new file mode 100644 index 00000000..c74b5dc3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bcc0d4317d365d08e78078db25baa13 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bdbb371c515bd05dbdedd146868620d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bdbb371c515bd05dbdedd146868620d new file mode 100644 index 00000000..caeac61b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bdbb371c515bd05dbdedd146868620d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bdd104d287b02cf76047886663fbf6b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bdd104d287b02cf76047886663fbf6b new file mode 100644 index 00000000..7eeed827 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7bdd104d287b02cf76047886663fbf6b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7be53fff4d66884656888d415bfc04ed b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7be53fff4d66884656888d415bfc04ed new file mode 100644 index 00000000..8290576b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7b/7be53fff4d66884656888d415bfc04ed differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c1179e40b5b99617fbd70f6e79394be b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c1179e40b5b99617fbd70f6e79394be new file mode 100644 index 00000000..33294852 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c1179e40b5b99617fbd70f6e79394be differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c1844614be50546b2647ca56d631a19 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c1844614be50546b2647ca56d631a19 new file mode 100644 index 00000000..e80bbfb4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c1844614be50546b2647ca56d631a19 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c23293ec5f3bd85857ff53ba46908e2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c23293ec5f3bd85857ff53ba46908e2 new file mode 100644 index 00000000..566680dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c23293ec5f3bd85857ff53ba46908e2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c24bf68818b421dc9d2e4e5889956bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c24bf68818b421dc9d2e4e5889956bc new file mode 100644 index 00000000..04065025 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c24bf68818b421dc9d2e4e5889956bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c2bfe194893d6e8797d2621fb0e5103 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c2bfe194893d6e8797d2621fb0e5103 new file mode 100644 index 00000000..62b6089d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c2bfe194893d6e8797d2621fb0e5103 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c58994ae37c1e75b196ec4b22cb4ccd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c58994ae37c1e75b196ec4b22cb4ccd new file mode 100644 index 00000000..458d9a09 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c58994ae37c1e75b196ec4b22cb4ccd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c6ec38637479a4335e9c84b85fba9a1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c6ec38637479a4335e9c84b85fba9a1 new file mode 100644 index 00000000..87263dec Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c6ec38637479a4335e9c84b85fba9a1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c78822662eb63201d4b4bc0a8b44eec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c78822662eb63201d4b4bc0a8b44eec new file mode 100644 index 00000000..f539653e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c78822662eb63201d4b4bc0a8b44eec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c7976a0449a90b9d23b81f3004d8e04 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c7976a0449a90b9d23b81f3004d8e04 new file mode 100644 index 00000000..49721ce4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7c7976a0449a90b9d23b81f3004d8e04 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7ca64a04351a9846289bdc0089967233 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7ca64a04351a9846289bdc0089967233 new file mode 100644 index 00000000..eef1de0a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7ca64a04351a9846289bdc0089967233 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7cada89a73e4d74c0206c2ff4e8eff2b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7cada89a73e4d74c0206c2ff4e8eff2b new file mode 100644 index 00000000..1a9de558 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7cada89a73e4d74c0206c2ff4e8eff2b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7cc5d72f493325919a3eacbab656ff74 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7cc5d72f493325919a3eacbab656ff74 new file mode 100644 index 00000000..cf837f8a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7cc5d72f493325919a3eacbab656ff74 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7cd0ffc5d390774a8864d03ad0a620c5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7cd0ffc5d390774a8864d03ad0a620c5 new file mode 100644 index 00000000..99deab4d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7cd0ffc5d390774a8864d03ad0a620c5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7ce2d467701ef064cd58ed7be8359f58 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7ce2d467701ef064cd58ed7be8359f58 new file mode 100644 index 00000000..4ab0ec4f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7ce2d467701ef064cd58ed7be8359f58 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7ce6c5282f9338b69f4f67e9da9a231a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7ce6c5282f9338b69f4f67e9da9a231a new file mode 100644 index 00000000..c93a7dda Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7c/7ce6c5282f9338b69f4f67e9da9a231a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d096ee71ed280fb4649531df364bb99 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d096ee71ed280fb4649531df364bb99 new file mode 100644 index 00000000..9dfcbc98 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d096ee71ed280fb4649531df364bb99 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d126e29a3e60c7b9a6c3c4c87da33fa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d126e29a3e60c7b9a6c3c4c87da33fa new file mode 100644 index 00000000..73081456 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d126e29a3e60c7b9a6c3c4c87da33fa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d1536ceaf107ec27cfe45a8dbecb078 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d1536ceaf107ec27cfe45a8dbecb078 new file mode 100644 index 00000000..169d1a30 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d1536ceaf107ec27cfe45a8dbecb078 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d20629bdb719fabf2661f7dc3a9928a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d20629bdb719fabf2661f7dc3a9928a new file mode 100644 index 00000000..03cf9792 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d20629bdb719fabf2661f7dc3a9928a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d4faf85d5d77592cdb3ffd042efa39b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d4faf85d5d77592cdb3ffd042efa39b new file mode 100644 index 00000000..071f163b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d4faf85d5d77592cdb3ffd042efa39b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d54839589d5c100de553a4c75b0c549 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d54839589d5c100de553a4c75b0c549 new file mode 100644 index 00000000..d582d420 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d54839589d5c100de553a4c75b0c549 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d5ea9e7f57a4317a97c69d7cdb9556b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d5ea9e7f57a4317a97c69d7cdb9556b new file mode 100644 index 00000000..8d3590f1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d5ea9e7f57a4317a97c69d7cdb9556b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d6aa299c6b64d788d9201e97f9c0d71 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d6aa299c6b64d788d9201e97f9c0d71 new file mode 100644 index 00000000..56cbb939 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d6aa299c6b64d788d9201e97f9c0d71 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d6e726ce3f193e349aa259a529b6303 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d6e726ce3f193e349aa259a529b6303 new file mode 100644 index 00000000..eeab3b7b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d6e726ce3f193e349aa259a529b6303 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d715675fe7513284bec2dde194421e9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d715675fe7513284bec2dde194421e9 new file mode 100644 index 00000000..d1ef5dcc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d715675fe7513284bec2dde194421e9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d7aa6ab5b349338c4027f80bf90a8d8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d7aa6ab5b349338c4027f80bf90a8d8 new file mode 100644 index 00000000..b0a46fce Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d7aa6ab5b349338c4027f80bf90a8d8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d815d42bb36ae55d41b3e842dd25ebd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d815d42bb36ae55d41b3e842dd25ebd new file mode 100644 index 00000000..e02252df Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d815d42bb36ae55d41b3e842dd25ebd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d920eb1cbb3a985e9f1537d27bef034 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d920eb1cbb3a985e9f1537d27bef034 new file mode 100644 index 00000000..a0282e80 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d920eb1cbb3a985e9f1537d27bef034 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d99284aeb68e0593e704aff5d7e8bda b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d99284aeb68e0593e704aff5d7e8bda new file mode 100644 index 00000000..0b8315ea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7d99284aeb68e0593e704aff5d7e8bda differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7dbab711825955b2d72448483e0771f3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7dbab711825955b2d72448483e0771f3 new file mode 100644 index 00000000..1ecd49c5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7dbab711825955b2d72448483e0771f3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7dee07967e74a977b3f3306c599e981e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7dee07967e74a977b3f3306c599e981e new file mode 100644 index 00000000..ccf436a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7dee07967e74a977b3f3306c599e981e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7df95fb9b8c5fcdd674d3a0722a037bb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7df95fb9b8c5fcdd674d3a0722a037bb new file mode 100644 index 00000000..13777a21 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7df95fb9b8c5fcdd674d3a0722a037bb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7dfe8cd3af602b5f363cae39734a624f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7dfe8cd3af602b5f363cae39734a624f new file mode 100644 index 00000000..a73d6e40 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7d/7dfe8cd3af602b5f363cae39734a624f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e03a6c4caf37eefe400bf07cd913256 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e03a6c4caf37eefe400bf07cd913256 new file mode 100644 index 00000000..30e1b986 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e03a6c4caf37eefe400bf07cd913256 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e082b91d00db870c9c6ac3e611759fe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e082b91d00db870c9c6ac3e611759fe new file mode 100644 index 00000000..cdde7a08 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e082b91d00db870c9c6ac3e611759fe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e0b71d9deebd9e23559c15cd4a582a2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e0b71d9deebd9e23559c15cd4a582a2 new file mode 100644 index 00000000..d5379b2a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e0b71d9deebd9e23559c15cd4a582a2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e0ee4af87f9801d2ffb3e6a993b9c3f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e0ee4af87f9801d2ffb3e6a993b9c3f new file mode 100644 index 00000000..a4adc1e1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e0ee4af87f9801d2ffb3e6a993b9c3f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e13ccca2e0a653c10f112ded68c727d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e13ccca2e0a653c10f112ded68c727d new file mode 100644 index 00000000..c5d8f181 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e13ccca2e0a653c10f112ded68c727d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e2cc2b09e47829f6710f29edad1ed33 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e2cc2b09e47829f6710f29edad1ed33 new file mode 100644 index 00000000..cd178305 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e2cc2b09e47829f6710f29edad1ed33 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e3c714ba1d90ae76aa9003f33ae693c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e3c714ba1d90ae76aa9003f33ae693c new file mode 100644 index 00000000..0780ebda Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e3c714ba1d90ae76aa9003f33ae693c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e3cac8712a078613842e003e64f2950 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e3cac8712a078613842e003e64f2950 new file mode 100644 index 00000000..11172a3d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e3cac8712a078613842e003e64f2950 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e573c027f57a225635053a8cad88f1d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e573c027f57a225635053a8cad88f1d new file mode 100644 index 00000000..51aa415d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e573c027f57a225635053a8cad88f1d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e64a0ebe39a7938661f1cc64c87bf15 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e64a0ebe39a7938661f1cc64c87bf15 new file mode 100644 index 00000000..cf2ff0f6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e64a0ebe39a7938661f1cc64c87bf15 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e6fd2539950ec470e640eddb485dfaa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e6fd2539950ec470e640eddb485dfaa new file mode 100644 index 00000000..bb081bd4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e6fd2539950ec470e640eddb485dfaa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e79c551381313a20872839bf3d320be b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e79c551381313a20872839bf3d320be new file mode 100644 index 00000000..f8d3af47 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e79c551381313a20872839bf3d320be differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e84ff168e9f62ee278f904a91ad1533 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e84ff168e9f62ee278f904a91ad1533 new file mode 100644 index 00000000..9230ab1b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7e84ff168e9f62ee278f904a91ad1533 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7eb998265d1a70931b911fe0e182f6a9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7eb998265d1a70931b911fe0e182f6a9 new file mode 100644 index 00000000..d6529407 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7eb998265d1a70931b911fe0e182f6a9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7ecabf6dc6a00d4d3030e8144376e7a1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7ecabf6dc6a00d4d3030e8144376e7a1 new file mode 100644 index 00000000..7fddcd97 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7ecabf6dc6a00d4d3030e8144376e7a1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7ecfcbdff55d17b83cc3e0c7541be385 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7ecfcbdff55d17b83cc3e0c7541be385 new file mode 100644 index 00000000..4ec039af Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7ecfcbdff55d17b83cc3e0c7541be385 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7ee476f172508b8f74b74aa39bf026dd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7ee476f172508b8f74b74aa39bf026dd new file mode 100644 index 00000000..4afc9d65 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7ee476f172508b8f74b74aa39bf026dd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7eeea56084ce54334e5f08e7a9a1a23d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7eeea56084ce54334e5f08e7a9a1a23d new file mode 100644 index 00000000..4b750b39 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7e/7eeea56084ce54334e5f08e7a9a1a23d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f000a84b297122809fdcd04461f2123 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f000a84b297122809fdcd04461f2123 new file mode 100644 index 00000000..05331c5f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f000a84b297122809fdcd04461f2123 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f3eb2eb981158027d80a7879bc7da37 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f3eb2eb981158027d80a7879bc7da37 new file mode 100644 index 00000000..5678c28f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f3eb2eb981158027d80a7879bc7da37 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f459f1b449ba1b7c8c7138752a88b10 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f459f1b449ba1b7c8c7138752a88b10 new file mode 100644 index 00000000..09c50c10 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f459f1b449ba1b7c8c7138752a88b10 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f54591ba1bf26c7c6785b828e9f121b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f54591ba1bf26c7c6785b828e9f121b new file mode 100644 index 00000000..d256305a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f54591ba1bf26c7c6785b828e9f121b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f5484c46d3e8bbda88a74771f179a3e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f5484c46d3e8bbda88a74771f179a3e new file mode 100644 index 00000000..c3fc3d1e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f5484c46d3e8bbda88a74771f179a3e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f72270bd0140d9add074b378d640eef b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f72270bd0140d9add074b378d640eef new file mode 100644 index 00000000..6f03a6e7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f72270bd0140d9add074b378d640eef differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f94ed0d49e7bf834def6d8ba17976c5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f94ed0d49e7bf834def6d8ba17976c5 new file mode 100644 index 00000000..eb5e2178 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f94ed0d49e7bf834def6d8ba17976c5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f982f08e9bb8c670c4d718e0fc0d5a6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f982f08e9bb8c670c4d718e0fc0d5a6 new file mode 100644 index 00000000..27f7a4fd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7f982f08e9bb8c670c4d718e0fc0d5a6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fa257533fb04a24e3352a5f2a5f1a63 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fa257533fb04a24e3352a5f2a5f1a63 new file mode 100644 index 00000000..c85c8bc2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fa257533fb04a24e3352a5f2a5f1a63 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fb8ecbee35e04557c8086c8e4a32560 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fb8ecbee35e04557c8086c8e4a32560 new file mode 100644 index 00000000..302c2e49 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fb8ecbee35e04557c8086c8e4a32560 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fbb91eecb4b2422f7bb8b567cb9ff33 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fbb91eecb4b2422f7bb8b567cb9ff33 new file mode 100644 index 00000000..4a07ec76 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fbb91eecb4b2422f7bb8b567cb9ff33 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fc33b180449bf40b06fc236d8283b90 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fc33b180449bf40b06fc236d8283b90 new file mode 100644 index 00000000..4993766d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fc33b180449bf40b06fc236d8283b90 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fc3438b241e5738835fceccac190eed b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fc3438b241e5738835fceccac190eed new file mode 100644 index 00000000..d870e615 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fc3438b241e5738835fceccac190eed differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fd071e1f96b3ee30e009bb6f0c4da88 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fd071e1f96b3ee30e009bb6f0c4da88 new file mode 100644 index 00000000..8eb51175 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fd071e1f96b3ee30e009bb6f0c4da88 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fda1152ff232a3b222ce14c9d364212 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fda1152ff232a3b222ce14c9d364212 new file mode 100644 index 00000000..635d1b44 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7fda1152ff232a3b222ce14c9d364212 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7ff0d8a0079cbe1facff949c14acb043 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7ff0d8a0079cbe1facff949c14acb043 new file mode 100644 index 00000000..6ee6a650 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/7f/7ff0d8a0079cbe1facff949c14acb043 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/802855f3a3c3ede4bcf2ddbb719b76f9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/802855f3a3c3ede4bcf2ddbb719b76f9 new file mode 100644 index 00000000..061fc572 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/802855f3a3c3ede4bcf2ddbb719b76f9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/8029df338f551dafb3c30cf04ae6ab15 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/8029df338f551dafb3c30cf04ae6ab15 new file mode 100644 index 00000000..3710d1f8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/8029df338f551dafb3c30cf04ae6ab15 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80361099e8b40bb6b742788667654355 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80361099e8b40bb6b742788667654355 new file mode 100644 index 00000000..7c4c8b5a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80361099e8b40bb6b742788667654355 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/803d2cac0fddc5380437afe33b2adf86 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/803d2cac0fddc5380437afe33b2adf86 new file mode 100644 index 00000000..fe727ccd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/803d2cac0fddc5380437afe33b2adf86 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/8053ad4c34e6f7e186e1689b2222aeca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/8053ad4c34e6f7e186e1689b2222aeca new file mode 100644 index 00000000..bd8a26de Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/8053ad4c34e6f7e186e1689b2222aeca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80685221d1168f9c316720163f829c23 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80685221d1168f9c316720163f829c23 new file mode 100644 index 00000000..8cf7143d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80685221d1168f9c316720163f829c23 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/8069bc4cd3d2e77780cfb41985059259 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/8069bc4cd3d2e77780cfb41985059259 new file mode 100644 index 00000000..a4d8d751 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/8069bc4cd3d2e77780cfb41985059259 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/806c016373d18a3e8f9626d9223c0e40 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/806c016373d18a3e8f9626d9223c0e40 new file mode 100644 index 00000000..adb61c19 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/806c016373d18a3e8f9626d9223c0e40 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/809f8148cee1b2e7ba5c1abd55163907 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/809f8148cee1b2e7ba5c1abd55163907 new file mode 100644 index 00000000..e1fd12ed Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/809f8148cee1b2e7ba5c1abd55163907 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80a0539323de0ee67ceb5feb5da3fd04 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80a0539323de0ee67ceb5feb5da3fd04 new file mode 100644 index 00000000..b5c20ae6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80a0539323de0ee67ceb5feb5da3fd04 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80a5f209a0b85b65420b4ac21ca68c31 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80a5f209a0b85b65420b4ac21ca68c31 new file mode 100644 index 00000000..d1af4194 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80a5f209a0b85b65420b4ac21ca68c31 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80b3fcb059875a6a236e2dc314bb541c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80b3fcb059875a6a236e2dc314bb541c new file mode 100644 index 00000000..80b3297a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80b3fcb059875a6a236e2dc314bb541c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80b762231f1c15349c91c348a789c688 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80b762231f1c15349c91c348a789c688 new file mode 100644 index 00000000..0d20e572 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80b762231f1c15349c91c348a789c688 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80bcbe7cb93ffd5060b6f61930d42ea1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80bcbe7cb93ffd5060b6f61930d42ea1 new file mode 100644 index 00000000..c9648f2f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80bcbe7cb93ffd5060b6f61930d42ea1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80ce52aa9cc4e7c7db17eec146e7eee4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80ce52aa9cc4e7c7db17eec146e7eee4 new file mode 100644 index 00000000..9fc3d567 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/80/80ce52aa9cc4e7c7db17eec146e7eee4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/81315b3246c28fcc4996a4ef3afa5b58 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/81315b3246c28fcc4996a4ef3afa5b58 new file mode 100644 index 00000000..642c4826 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/81315b3246c28fcc4996a4ef3afa5b58 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/814b0336d9d042063c706bebf0c9bd61 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/814b0336d9d042063c706bebf0c9bd61 new file mode 100644 index 00000000..83dcb809 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/814b0336d9d042063c706bebf0c9bd61 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/8169a09c393bf4b1a9fb1093b5161251 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/8169a09c393bf4b1a9fb1093b5161251 new file mode 100644 index 00000000..e8daf17a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/8169a09c393bf4b1a9fb1093b5161251 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/816b3800c71f4695a53eedbe0c3ed35e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/816b3800c71f4695a53eedbe0c3ed35e new file mode 100644 index 00000000..891999f3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/816b3800c71f4695a53eedbe0c3ed35e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/816cb5d29292c78fb0c329375180c398 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/816cb5d29292c78fb0c329375180c398 new file mode 100644 index 00000000..aa2aa8a9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/816cb5d29292c78fb0c329375180c398 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/8170393bad1309a7ff4c77200b9bae99 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/8170393bad1309a7ff4c77200b9bae99 new file mode 100644 index 00000000..6a3b2ba0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/8170393bad1309a7ff4c77200b9bae99 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/818d2380ec64f9910f2f03e98d884ec7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/818d2380ec64f9910f2f03e98d884ec7 new file mode 100644 index 00000000..cbb43dbd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/818d2380ec64f9910f2f03e98d884ec7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/81cbba929fed0e966732502fbec02360 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/81cbba929fed0e966732502fbec02360 new file mode 100644 index 00000000..8d2fda31 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/81cbba929fed0e966732502fbec02360 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/81e83e098b820b1398a9f7ea58722a04 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/81e83e098b820b1398a9f7ea58722a04 new file mode 100644 index 00000000..9d69d9a9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/81e83e098b820b1398a9f7ea58722a04 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/81f762142595620b281414f4737c5ce5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/81f762142595620b281414f4737c5ce5 new file mode 100644 index 00000000..bfca139a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/81/81f762142595620b281414f4737c5ce5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82394fa504b45e408754489b3fe346ec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82394fa504b45e408754489b3fe346ec new file mode 100644 index 00000000..aa0f05a0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82394fa504b45e408754489b3fe346ec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/824f9a11fd5bb059c282df5612be6b5d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/824f9a11fd5bb059c282df5612be6b5d new file mode 100644 index 00000000..0c3aadb0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/824f9a11fd5bb059c282df5612be6b5d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/8265fde6a75a1bf445683338c2bfc91a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/8265fde6a75a1bf445683338c2bfc91a new file mode 100644 index 00000000..e1be41c4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/8265fde6a75a1bf445683338c2bfc91a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/827b7ba36f4bd3bdc12c18eb2f93a10e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/827b7ba36f4bd3bdc12c18eb2f93a10e new file mode 100644 index 00000000..dbdf1d93 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/827b7ba36f4bd3bdc12c18eb2f93a10e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82a2441238c61ad41defadf275786116 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82a2441238c61ad41defadf275786116 new file mode 100644 index 00000000..81989481 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82a2441238c61ad41defadf275786116 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82af5ccc0b55952ceed611bce635cd3a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82af5ccc0b55952ceed611bce635cd3a new file mode 100644 index 00000000..262e248a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82af5ccc0b55952ceed611bce635cd3a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82c94bcebbf0d6c40312d469ca9508b0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82c94bcebbf0d6c40312d469ca9508b0 new file mode 100644 index 00000000..496af384 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82c94bcebbf0d6c40312d469ca9508b0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82c9f366c24728540b180f90bee8a04c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82c9f366c24728540b180f90bee8a04c new file mode 100644 index 00000000..ad79073f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82c9f366c24728540b180f90bee8a04c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82d13b30f3875cf966de597a7a930a50 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82d13b30f3875cf966de597a7a930a50 new file mode 100644 index 00000000..b92a5d35 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82d13b30f3875cf966de597a7a930a50 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82e027315e3f18746c185b53cdcedbf0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82e027315e3f18746c185b53cdcedbf0 new file mode 100644 index 00000000..fa9b98fb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82e027315e3f18746c185b53cdcedbf0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82ecac96808e9df0a7fd010f46ac4632 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82ecac96808e9df0a7fd010f46ac4632 new file mode 100644 index 00000000..3e4d75ba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/82/82ecac96808e9df0a7fd010f46ac4632 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83002792bfda441631a57cac68a120fe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83002792bfda441631a57cac68a120fe new file mode 100644 index 00000000..905ad6e7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83002792bfda441631a57cac68a120fe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/8310818d3bfd5f36f396db89b0d11190 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/8310818d3bfd5f36f396db89b0d11190 new file mode 100644 index 00000000..25cd9b96 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/8310818d3bfd5f36f396db89b0d11190 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/831d4bb85a5569edd19b2e1f2f189e8b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/831d4bb85a5569edd19b2e1f2f189e8b new file mode 100644 index 00000000..e844b966 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/831d4bb85a5569edd19b2e1f2f189e8b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83322f95a55bec31157240150e41732d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83322f95a55bec31157240150e41732d new file mode 100644 index 00000000..c1d8c2d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83322f95a55bec31157240150e41732d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/834624b73ab2833eb49813656662e2ba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/834624b73ab2833eb49813656662e2ba new file mode 100644 index 00000000..bd64496b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/834624b73ab2833eb49813656662e2ba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/834bc1f2e0a6998b461daa1afe08a900 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/834bc1f2e0a6998b461daa1afe08a900 new file mode 100644 index 00000000..5f808d84 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/834bc1f2e0a6998b461daa1afe08a900 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/8363fabd94453e1ac5cbdb26b008bc70 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/8363fabd94453e1ac5cbdb26b008bc70 new file mode 100644 index 00000000..1f4ad167 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/8363fabd94453e1ac5cbdb26b008bc70 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/837855a9def315ec2a3bc44c4d638543 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/837855a9def315ec2a3bc44c4d638543 new file mode 100644 index 00000000..665c6e58 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/837855a9def315ec2a3bc44c4d638543 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/839ed555d6f2dd5e3acd9f93e8af8bda b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/839ed555d6f2dd5e3acd9f93e8af8bda new file mode 100644 index 00000000..9310ffa3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/839ed555d6f2dd5e3acd9f93e8af8bda differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83b974b71c86feb3823319c39a39d439 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83b974b71c86feb3823319c39a39d439 new file mode 100644 index 00000000..5e04dbd1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83b974b71c86feb3823319c39a39d439 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83dbf897e24a7509eb2f65fd0c8eb38e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83dbf897e24a7509eb2f65fd0c8eb38e new file mode 100644 index 00000000..3ff3dd2f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83dbf897e24a7509eb2f65fd0c8eb38e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83e62fab6b43b07cc2735f0a8d4b3c5a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83e62fab6b43b07cc2735f0a8d4b3c5a new file mode 100644 index 00000000..29d079b7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/83/83e62fab6b43b07cc2735f0a8d4b3c5a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/84279d734ed9aa5b4b734707c53a54cc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/84279d734ed9aa5b4b734707c53a54cc new file mode 100644 index 00000000..65b22ef9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/84279d734ed9aa5b4b734707c53a54cc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/843bcc2f312b30e1eed0d52de079f329 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/843bcc2f312b30e1eed0d52de079f329 new file mode 100644 index 00000000..a310ab4d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/843bcc2f312b30e1eed0d52de079f329 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/84449adbf53047d59917ffe793c149af b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/84449adbf53047d59917ffe793c149af new file mode 100644 index 00000000..97c3cfe9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/84449adbf53047d59917ffe793c149af differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/84697f5f3558f0d0b414808300ce8ef7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/84697f5f3558f0d0b414808300ce8ef7 new file mode 100644 index 00000000..76b4f0b2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/84697f5f3558f0d0b414808300ce8ef7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/8477ef6e6610011223bc46192199b332 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/8477ef6e6610011223bc46192199b332 new file mode 100644 index 00000000..a007ff2e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/8477ef6e6610011223bc46192199b332 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/8487dc52af258cd2c8f83ab2f9218235 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/8487dc52af258cd2c8f83ab2f9218235 new file mode 100644 index 00000000..156e8e14 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/8487dc52af258cd2c8f83ab2f9218235 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/848bbe4aee5270299665fa4c5d8d6242 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/848bbe4aee5270299665fa4c5d8d6242 new file mode 100644 index 00000000..8deaa75c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/848bbe4aee5270299665fa4c5d8d6242 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/84d1635831f43c059139f242fd7cf7cb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/84d1635831f43c059139f242fd7cf7cb new file mode 100644 index 00000000..f9703dea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/84/84d1635831f43c059139f242fd7cf7cb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/8512fda31de1d0c025643140fc12677b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/8512fda31de1d0c025643140fc12677b new file mode 100644 index 00000000..f56e6b44 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/8512fda31de1d0c025643140fc12677b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/851338c79bfb746428fb8baa13fcf2fb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/851338c79bfb746428fb8baa13fcf2fb new file mode 100644 index 00000000..ea453aba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/851338c79bfb746428fb8baa13fcf2fb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/852e4dd3d6157468390869b360c3f032 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/852e4dd3d6157468390869b360c3f032 new file mode 100644 index 00000000..5183f349 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/852e4dd3d6157468390869b360c3f032 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/853c6b2ffb2baec5f8e15963a9e35a9e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/853c6b2ffb2baec5f8e15963a9e35a9e new file mode 100644 index 00000000..71b53506 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/853c6b2ffb2baec5f8e15963a9e35a9e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85721409dbca0a6d21e95fcab3468ed4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85721409dbca0a6d21e95fcab3468ed4 new file mode 100644 index 00000000..ea66aec5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85721409dbca0a6d21e95fcab3468ed4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/859a1da9cc1464f1a2fd383e36cd2c82 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/859a1da9cc1464f1a2fd383e36cd2c82 new file mode 100644 index 00000000..c110d844 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/859a1da9cc1464f1a2fd383e36cd2c82 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85a72dfa4a3242c28e00237ee802a95a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85a72dfa4a3242c28e00237ee802a95a new file mode 100644 index 00000000..084adbc7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85a72dfa4a3242c28e00237ee802a95a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85aef597e6b2d6f675eb5d25d5a6f53a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85aef597e6b2d6f675eb5d25d5a6f53a new file mode 100644 index 00000000..87945d3f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85aef597e6b2d6f675eb5d25d5a6f53a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85ca955ed4c9c9831ba88d0168a34b79 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85ca955ed4c9c9831ba88d0168a34b79 new file mode 100644 index 00000000..00a24cae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85ca955ed4c9c9831ba88d0168a34b79 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85ecef6d75f169ed264c908b6b60af77 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85ecef6d75f169ed264c908b6b60af77 new file mode 100644 index 00000000..66d2d962 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/85/85ecef6d75f169ed264c908b6b60af77 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86044e0348efcf92ed8b4a25f7b7b0f6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86044e0348efcf92ed8b4a25f7b7b0f6 new file mode 100644 index 00000000..fa9ffbcd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86044e0348efcf92ed8b4a25f7b7b0f6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/862370894e9f9390b3b6c2d4e1e32511 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/862370894e9f9390b3b6c2d4e1e32511 new file mode 100644 index 00000000..53756b9b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/862370894e9f9390b3b6c2d4e1e32511 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86244adb5b642c5606ff261d9bc6c371 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86244adb5b642c5606ff261d9bc6c371 new file mode 100644 index 00000000..13b1a067 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86244adb5b642c5606ff261d9bc6c371 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86292cd73a3bf1bf5cde5afbc7caae9c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86292cd73a3bf1bf5cde5afbc7caae9c new file mode 100644 index 00000000..ffdeaf95 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86292cd73a3bf1bf5cde5afbc7caae9c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/862a56d1b1cabe62fa1c9375aedc650e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/862a56d1b1cabe62fa1c9375aedc650e new file mode 100644 index 00000000..6d298a2e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/862a56d1b1cabe62fa1c9375aedc650e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86379d3cf27fc177951c8f5fec7154fd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86379d3cf27fc177951c8f5fec7154fd new file mode 100644 index 00000000..5cd46dba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86379d3cf27fc177951c8f5fec7154fd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/863b589d8c38760726a985f2aebf1010 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/863b589d8c38760726a985f2aebf1010 new file mode 100644 index 00000000..ff5ecfbc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/863b589d8c38760726a985f2aebf1010 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/864e38c5579d660ee0aba59fd28bd172 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/864e38c5579d660ee0aba59fd28bd172 new file mode 100644 index 00000000..20005815 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/864e38c5579d660ee0aba59fd28bd172 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/864fddb005a7c840e7e81e0560984a76 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/864fddb005a7c840e7e81e0560984a76 new file mode 100644 index 00000000..d0c9b4c6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/864fddb005a7c840e7e81e0560984a76 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/867bf789782e23f8daf1b3e672e20bbe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/867bf789782e23f8daf1b3e672e20bbe new file mode 100644 index 00000000..26264ecf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/867bf789782e23f8daf1b3e672e20bbe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86919cbb1e4f72dd6d7e59598af65048 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86919cbb1e4f72dd6d7e59598af65048 new file mode 100644 index 00000000..3519de52 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86919cbb1e4f72dd6d7e59598af65048 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86923b2c46893f0c846579c313a5a7c5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86923b2c46893f0c846579c313a5a7c5 new file mode 100644 index 00000000..7fa80c73 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86923b2c46893f0c846579c313a5a7c5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86b6414ede137a50e76be74b6f049154 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86b6414ede137a50e76be74b6f049154 new file mode 100644 index 00000000..2b9f1f47 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86b6414ede137a50e76be74b6f049154 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86de238f5027a0805fbb4fa0a7c5d6d9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86de238f5027a0805fbb4fa0a7c5d6d9 new file mode 100644 index 00000000..2636e630 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86de238f5027a0805fbb4fa0a7c5d6d9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86e76772611ff25f454c58adfe4e35d1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86e76772611ff25f454c58adfe4e35d1 new file mode 100644 index 00000000..796aadb3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86e76772611ff25f454c58adfe4e35d1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86f802d7f61f0958a18077953be0c5ed b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86f802d7f61f0958a18077953be0c5ed new file mode 100644 index 00000000..add63f52 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86f802d7f61f0958a18077953be0c5ed differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86ffb5920c75e991f1e0fb058636afb1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86ffb5920c75e991f1e0fb058636afb1 new file mode 100644 index 00000000..552676c3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/86/86ffb5920c75e991f1e0fb058636afb1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8713dd0305ef76a67ef585e247b47f5f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8713dd0305ef76a67ef585e247b47f5f new file mode 100644 index 00000000..1f00f021 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8713dd0305ef76a67ef585e247b47f5f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/872a45ff6427acdf3b814a516cb8c35b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/872a45ff6427acdf3b814a516cb8c35b new file mode 100644 index 00000000..d5ec7df9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/872a45ff6427acdf3b814a516cb8c35b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8743ddf1bb7e3dd7bf1443b3169a2a69 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8743ddf1bb7e3dd7bf1443b3169a2a69 new file mode 100644 index 00000000..36492136 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8743ddf1bb7e3dd7bf1443b3169a2a69 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/874dd5c41fdca3d652cf1b788c230ebc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/874dd5c41fdca3d652cf1b788c230ebc new file mode 100644 index 00000000..b92fa295 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/874dd5c41fdca3d652cf1b788c230ebc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/875baae98d51986a73f23fca42345dcf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/875baae98d51986a73f23fca42345dcf new file mode 100644 index 00000000..1d486616 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/875baae98d51986a73f23fca42345dcf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/877380e01064aae24a00ec5efd15de56 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/877380e01064aae24a00ec5efd15de56 new file mode 100644 index 00000000..04f602a1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/877380e01064aae24a00ec5efd15de56 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8785fe3bb634ad58e336b349ec5d2ea5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8785fe3bb634ad58e336b349ec5d2ea5 new file mode 100644 index 00000000..77a2cc02 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8785fe3bb634ad58e336b349ec5d2ea5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/878e587826cb8f428019665ceaaad740 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/878e587826cb8f428019665ceaaad740 new file mode 100644 index 00000000..6d2cf2e7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/878e587826cb8f428019665ceaaad740 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8790403b5a28df3eb44e130d362cd230 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8790403b5a28df3eb44e130d362cd230 new file mode 100644 index 00000000..06b24bc9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8790403b5a28df3eb44e130d362cd230 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8798c37b548a0efcf93ec1ecb4af2a9d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8798c37b548a0efcf93ec1ecb4af2a9d new file mode 100644 index 00000000..ae00aded Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/8798c37b548a0efcf93ec1ecb4af2a9d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87a20e617629c90cb05ee37a790329c5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87a20e617629c90cb05ee37a790329c5 new file mode 100644 index 00000000..95c657ab Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87a20e617629c90cb05ee37a790329c5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87b2f4ee47af2b5e0af641a109da8f00 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87b2f4ee47af2b5e0af641a109da8f00 new file mode 100644 index 00000000..0c96e309 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87b2f4ee47af2b5e0af641a109da8f00 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87d229a4194a4ac49e350403faaf9dd2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87d229a4194a4ac49e350403faaf9dd2 new file mode 100644 index 00000000..b8aade1e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87d229a4194a4ac49e350403faaf9dd2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87df5d171cc9904d6ee2e2c1f776dbf7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87df5d171cc9904d6ee2e2c1f776dbf7 new file mode 100644 index 00000000..19f56a5c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87df5d171cc9904d6ee2e2c1f776dbf7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87e58895831fac4f14ba8a8586c2b4f8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87e58895831fac4f14ba8a8586c2b4f8 new file mode 100644 index 00000000..269b43c2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87e58895831fac4f14ba8a8586c2b4f8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87e9b3bd25513261b34472463bc48b97 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87e9b3bd25513261b34472463bc48b97 new file mode 100644 index 00000000..61268f7c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87e9b3bd25513261b34472463bc48b97 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87f1c37fa5c85cc5c066e885c0cb409b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87f1c37fa5c85cc5c066e885c0cb409b new file mode 100644 index 00000000..be9213b4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/87/87f1c37fa5c85cc5c066e885c0cb409b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/880add52a4c5f5c9b4bd6525233ec47c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/880add52a4c5f5c9b4bd6525233ec47c new file mode 100644 index 00000000..30426651 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/880add52a4c5f5c9b4bd6525233ec47c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/880f38e5a887b8f2edd1d3edf97cbd74 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/880f38e5a887b8f2edd1d3edf97cbd74 new file mode 100644 index 00000000..18e59783 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/880f38e5a887b8f2edd1d3edf97cbd74 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/884309ace32f543e6442ff6146bcbe54 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/884309ace32f543e6442ff6146bcbe54 new file mode 100644 index 00000000..f70bf1c8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/884309ace32f543e6442ff6146bcbe54 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/8846b8b840d68c90c1f37772dbe1ec60 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/8846b8b840d68c90c1f37772dbe1ec60 new file mode 100644 index 00000000..b9ee4e8b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/8846b8b840d68c90c1f37772dbe1ec60 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88630a3d57c0f7d43c1c4e31d96d7c0f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88630a3d57c0f7d43c1c4e31d96d7c0f new file mode 100644 index 00000000..809ff933 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88630a3d57c0f7d43c1c4e31d96d7c0f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88747293ff38da58ff446e8b985eb789 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88747293ff38da58ff446e8b985eb789 new file mode 100644 index 00000000..7ebc3922 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88747293ff38da58ff446e8b985eb789 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/8895283976264d9767191ed431aa501f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/8895283976264d9767191ed431aa501f new file mode 100644 index 00000000..9165ce26 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/8895283976264d9767191ed431aa501f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/889f4574b6b20d7b41d1850908ad5420 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/889f4574b6b20d7b41d1850908ad5420 new file mode 100644 index 00000000..54d6dbfe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/889f4574b6b20d7b41d1850908ad5420 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88abd25a6e0ba98f880abb1cc5ea0b35 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88abd25a6e0ba98f880abb1cc5ea0b35 new file mode 100644 index 00000000..ee23aa1b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88abd25a6e0ba98f880abb1cc5ea0b35 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88b9658f2ccbbe6ccf0879d155593866 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88b9658f2ccbbe6ccf0879d155593866 new file mode 100644 index 00000000..4da7c634 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88b9658f2ccbbe6ccf0879d155593866 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88d60da7723d05d232824c377a284f02 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88d60da7723d05d232824c377a284f02 new file mode 100644 index 00000000..b8d83fae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88d60da7723d05d232824c377a284f02 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88da1cdc218ff503704fcc418c55b27e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88da1cdc218ff503704fcc418c55b27e new file mode 100644 index 00000000..f3440155 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88da1cdc218ff503704fcc418c55b27e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88deb11b229616e6ec7e18ad1ab24d71 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88deb11b229616e6ec7e18ad1ab24d71 new file mode 100644 index 00000000..cbd877ba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88deb11b229616e6ec7e18ad1ab24d71 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88e0ad49fefa4491553bfebe28aa5c7d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88e0ad49fefa4491553bfebe28aa5c7d new file mode 100644 index 00000000..297d9910 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88e0ad49fefa4491553bfebe28aa5c7d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88e4c8139028eef75d1f0bfdf18d3298 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88e4c8139028eef75d1f0bfdf18d3298 new file mode 100644 index 00000000..38ee8c77 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/88/88e4c8139028eef75d1f0bfdf18d3298 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8906f521db0025ec0bf13f799055af1d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8906f521db0025ec0bf13f799055af1d new file mode 100644 index 00000000..ead7bb2d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8906f521db0025ec0bf13f799055af1d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8907f118afa207dc3f2924c75b27b74b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8907f118afa207dc3f2924c75b27b74b new file mode 100644 index 00000000..741210b4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8907f118afa207dc3f2924c75b27b74b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/890d7863b2fbc1cdda999ca11a971447 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/890d7863b2fbc1cdda999ca11a971447 new file mode 100644 index 00000000..799c0810 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/890d7863b2fbc1cdda999ca11a971447 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89310c9c24556732c19515835258b819 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89310c9c24556732c19515835258b819 new file mode 100644 index 00000000..308f80cb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89310c9c24556732c19515835258b819 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8936ce55bfb89d12501bb99cdac46080 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8936ce55bfb89d12501bb99cdac46080 new file mode 100644 index 00000000..a004802b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8936ce55bfb89d12501bb99cdac46080 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8937cba13ce1cf922ac9286f51243120 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8937cba13ce1cf922ac9286f51243120 new file mode 100644 index 00000000..ab96543f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8937cba13ce1cf922ac9286f51243120 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8951411d73c7fd8d7eca08beb1f1d148 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8951411d73c7fd8d7eca08beb1f1d148 new file mode 100644 index 00000000..2b3a884c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8951411d73c7fd8d7eca08beb1f1d148 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/895266c884fd92fb812f1fc3bc1b5e7c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/895266c884fd92fb812f1fc3bc1b5e7c new file mode 100644 index 00000000..0727a54f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/895266c884fd92fb812f1fc3bc1b5e7c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89778146666a4fd3906e4682c6ccd36c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89778146666a4fd3906e4682c6ccd36c new file mode 100644 index 00000000..a61d1b87 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89778146666a4fd3906e4682c6ccd36c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8984fd255b1a4d72d3c9d866ea86c273 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8984fd255b1a4d72d3c9d866ea86c273 new file mode 100644 index 00000000..46798e59 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8984fd255b1a4d72d3c9d866ea86c273 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/898dcf7e3cdfb3baf63b455cf4484182 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/898dcf7e3cdfb3baf63b455cf4484182 new file mode 100644 index 00000000..dd07e692 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/898dcf7e3cdfb3baf63b455cf4484182 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8990c0010f969e47bf51d482d60ca18f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8990c0010f969e47bf51d482d60ca18f new file mode 100644 index 00000000..ed60e4ee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8990c0010f969e47bf51d482d60ca18f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8992f51200e6e06ad075143a651e88e3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8992f51200e6e06ad075143a651e88e3 new file mode 100644 index 00000000..a014573a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/8992f51200e6e06ad075143a651e88e3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89a6ea71a45edb70193edfd2507c2a79 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89a6ea71a45edb70193edfd2507c2a79 new file mode 100644 index 00000000..c4340b91 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89a6ea71a45edb70193edfd2507c2a79 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89b00fd330ebb042ed746ba4602309bb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89b00fd330ebb042ed746ba4602309bb new file mode 100644 index 00000000..46466b51 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89b00fd330ebb042ed746ba4602309bb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89bdbaef06841be520282b79d8d90f61 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89bdbaef06841be520282b79d8d90f61 new file mode 100644 index 00000000..c8df0f7d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89bdbaef06841be520282b79d8d90f61 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89e8720659309ca8e49bce958ad0a1cd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89e8720659309ca8e49bce958ad0a1cd new file mode 100644 index 00000000..c2e72837 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89e8720659309ca8e49bce958ad0a1cd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89f8fdb7af8d931f280ad6decf5f2c52 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89f8fdb7af8d931f280ad6decf5f2c52 new file mode 100644 index 00000000..1047b25c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/89/89f8fdb7af8d931f280ad6decf5f2c52 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a09a000a3b1fcac228b6acbaff554e4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a09a000a3b1fcac228b6acbaff554e4 new file mode 100644 index 00000000..a33d56c8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a09a000a3b1fcac228b6acbaff554e4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a0b733a3ae9f0a534d50438bc7e4190 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a0b733a3ae9f0a534d50438bc7e4190 new file mode 100644 index 00000000..6748f46e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a0b733a3ae9f0a534d50438bc7e4190 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a12512d59a0ad41b2d60194d7558a86 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a12512d59a0ad41b2d60194d7558a86 new file mode 100644 index 00000000..bf245feb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a12512d59a0ad41b2d60194d7558a86 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a126777fb0d7a54ac4ade927ca4f5d0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a126777fb0d7a54ac4ade927ca4f5d0 new file mode 100644 index 00000000..c752d226 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a126777fb0d7a54ac4ade927ca4f5d0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a27f4e44f3c19f5b41532ac72e62ebc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a27f4e44f3c19f5b41532ac72e62ebc new file mode 100644 index 00000000..57660a92 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a27f4e44f3c19f5b41532ac72e62ebc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a290194deea51a695e347f9c9bf56a5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a290194deea51a695e347f9c9bf56a5 new file mode 100644 index 00000000..edefab90 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a290194deea51a695e347f9c9bf56a5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a35163f6fc79bb2069536597aff70e3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a35163f6fc79bb2069536597aff70e3 new file mode 100644 index 00000000..88408d66 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a35163f6fc79bb2069536597aff70e3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a40415f738566312f709e73510ab89a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a40415f738566312f709e73510ab89a new file mode 100644 index 00000000..34bddfc9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a40415f738566312f709e73510ab89a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a507362f52877c1e0d6e2dc849c036b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a507362f52877c1e0d6e2dc849c036b new file mode 100644 index 00000000..e5d21616 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a507362f52877c1e0d6e2dc849c036b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a58dbed7982b7758e73b214759a87f8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a58dbed7982b7758e73b214759a87f8 new file mode 100644 index 00000000..5b71dc77 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a58dbed7982b7758e73b214759a87f8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a5c6f5083eb4fcaa7df970cae97a0e6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a5c6f5083eb4fcaa7df970cae97a0e6 new file mode 100644 index 00000000..bedd4fcd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a5c6f5083eb4fcaa7df970cae97a0e6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a6bf2e3c84325239ee29a7792f08c6e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a6bf2e3c84325239ee29a7792f08c6e new file mode 100644 index 00000000..22694c4b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a6bf2e3c84325239ee29a7792f08c6e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a96606e804b15548c37b26f2ce3f748 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a96606e804b15548c37b26f2ce3f748 new file mode 100644 index 00000000..0b47d768 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8a96606e804b15548c37b26f2ce3f748 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8ab7b1f8361509c5f75b71f252ed3868 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8ab7b1f8361509c5f75b71f252ed3868 new file mode 100644 index 00000000..43431e4c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8ab7b1f8361509c5f75b71f252ed3868 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8ac8398c16fd3e24b4f4fa59bce4d3e1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8ac8398c16fd3e24b4f4fa59bce4d3e1 new file mode 100644 index 00000000..800b1b60 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8ac8398c16fd3e24b4f4fa59bce4d3e1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8acaec1f026fd4e580cda0010c132cf4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8acaec1f026fd4e580cda0010c132cf4 new file mode 100644 index 00000000..53f8b9b1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8acaec1f026fd4e580cda0010c132cf4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8acf392a86a278a2ef4766c0b3b67b5c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8acf392a86a278a2ef4766c0b3b67b5c new file mode 100644 index 00000000..b39e08be Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8acf392a86a278a2ef4766c0b3b67b5c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8ad36c0b2dd0d3e89cffea4a8d506425 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8ad36c0b2dd0d3e89cffea4a8d506425 new file mode 100644 index 00000000..48ae34cb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8ad36c0b2dd0d3e89cffea4a8d506425 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8ae50a5c1ec0515cd70a8c95809ae30f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8ae50a5c1ec0515cd70a8c95809ae30f new file mode 100644 index 00000000..6714f1f3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8ae50a5c1ec0515cd70a8c95809ae30f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8af317a27382107d950747d5f66d6e8c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8af317a27382107d950747d5f66d6e8c new file mode 100644 index 00000000..3cdccd04 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8af317a27382107d950747d5f66d6e8c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8af4659d33a0e4909752b9080fd905bf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8af4659d33a0e4909752b9080fd905bf new file mode 100644 index 00000000..a4b9932e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8af4659d33a0e4909752b9080fd905bf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8afd3e94209b1e67c3da83c9f6e461dd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8afd3e94209b1e67c3da83c9f6e461dd new file mode 100644 index 00000000..b06cbce6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8a/8afd3e94209b1e67c3da83c9f6e461dd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b11dcd70fd49a8ec0f997aa08386df5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b11dcd70fd49a8ec0f997aa08386df5 new file mode 100644 index 00000000..8224165e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b11dcd70fd49a8ec0f997aa08386df5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b11f6e90713ad219b94f8c8896d0bfd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b11f6e90713ad219b94f8c8896d0bfd new file mode 100644 index 00000000..071454d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b11f6e90713ad219b94f8c8896d0bfd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b1d1cc9ca4fba6632c8084a68884bba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b1d1cc9ca4fba6632c8084a68884bba new file mode 100644 index 00000000..f1681378 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b1d1cc9ca4fba6632c8084a68884bba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b1e88d0db577c3d15a96087eaed0608 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b1e88d0db577c3d15a96087eaed0608 new file mode 100644 index 00000000..39509ae8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b1e88d0db577c3d15a96087eaed0608 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b23785d36d6af5c490c18a5a3526980 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b23785d36d6af5c490c18a5a3526980 new file mode 100644 index 00000000..be284f9e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b23785d36d6af5c490c18a5a3526980 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b28448ab243c6a0d18e707f2c1cfd66 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b28448ab243c6a0d18e707f2c1cfd66 new file mode 100644 index 00000000..86edf663 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b28448ab243c6a0d18e707f2c1cfd66 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b2dce82b81c666cb5c26ef703971e8c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b2dce82b81c666cb5c26ef703971e8c new file mode 100644 index 00000000..a77c7d03 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b2dce82b81c666cb5c26ef703971e8c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b3c62d9e9ee631f4ef03c998ddd93b2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b3c62d9e9ee631f4ef03c998ddd93b2 new file mode 100644 index 00000000..7ef7e20e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b3c62d9e9ee631f4ef03c998ddd93b2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b3f4d259fe06d4908c6e114743cde74 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b3f4d259fe06d4908c6e114743cde74 new file mode 100644 index 00000000..0e86a4e1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b3f4d259fe06d4908c6e114743cde74 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b6333190a9dd4f0f6d648f8084cbfb8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b6333190a9dd4f0f6d648f8084cbfb8 new file mode 100644 index 00000000..5b23d61c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b6333190a9dd4f0f6d648f8084cbfb8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b76f74cf35b83eb60e7350b8ba0063e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b76f74cf35b83eb60e7350b8ba0063e new file mode 100644 index 00000000..62fcef62 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b76f74cf35b83eb60e7350b8ba0063e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b9f1e4414762bc4d4d1662ff81c3b3d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b9f1e4414762bc4d4d1662ff81c3b3d new file mode 100644 index 00000000..3e30a00e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8b9f1e4414762bc4d4d1662ff81c3b3d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8bc1963cc9b5b5f98d451153314df25b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8bc1963cc9b5b5f98d451153314df25b new file mode 100644 index 00000000..40c11ea2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8bc1963cc9b5b5f98d451153314df25b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8bdf83b027f68908449fd4cf9d0b7a61 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8bdf83b027f68908449fd4cf9d0b7a61 new file mode 100644 index 00000000..a3a6bf0e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8bdf83b027f68908449fd4cf9d0b7a61 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8bdf9b58214940db01156c1c89de9722 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8bdf9b58214940db01156c1c89de9722 new file mode 100644 index 00000000..1a757a23 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8bdf9b58214940db01156c1c89de9722 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8bfc0eb088de8f0d1e6551347cbd6557 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8bfc0eb088de8f0d1e6551347cbd6557 new file mode 100644 index 00000000..5130e6f0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8b/8bfc0eb088de8f0d1e6551347cbd6557 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c0b7b021de78438a8dede201683150e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c0b7b021de78438a8dede201683150e new file mode 100644 index 00000000..3540f866 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c0b7b021de78438a8dede201683150e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c0c3cfbbd4b50d2ec81f0d8fcb1b652 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c0c3cfbbd4b50d2ec81f0d8fcb1b652 new file mode 100644 index 00000000..56b6be91 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c0c3cfbbd4b50d2ec81f0d8fcb1b652 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c0c79a376caeae8e9309fb269ec5231 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c0c79a376caeae8e9309fb269ec5231 new file mode 100644 index 00000000..e39fe367 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c0c79a376caeae8e9309fb269ec5231 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c2330c087bc10ef36ab6b167c030c06 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c2330c087bc10ef36ab6b167c030c06 new file mode 100644 index 00000000..60f41960 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c2330c087bc10ef36ab6b167c030c06 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c3cd05a54903feb3d08e356911dbd6d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c3cd05a54903feb3d08e356911dbd6d new file mode 100644 index 00000000..a79e3b54 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c3cd05a54903feb3d08e356911dbd6d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c46c95e7d06fe75e873596e00dc9684 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c46c95e7d06fe75e873596e00dc9684 new file mode 100644 index 00000000..5de0186d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c46c95e7d06fe75e873596e00dc9684 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c4882c1f35781b20cd5d081a43076e5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c4882c1f35781b20cd5d081a43076e5 new file mode 100644 index 00000000..adb3a62e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c4882c1f35781b20cd5d081a43076e5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c879c2ce8cd3134124318a6b681db67 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c879c2ce8cd3134124318a6b681db67 new file mode 100644 index 00000000..2b1cbfdf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c879c2ce8cd3134124318a6b681db67 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c92025ed354ee5a2277c3cc13a55905 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c92025ed354ee5a2277c3cc13a55905 new file mode 100644 index 00000000..cd35029c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8c92025ed354ee5a2277c3cc13a55905 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8ca623f94bcc88063e9db403604630ac b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8ca623f94bcc88063e9db403604630ac new file mode 100644 index 00000000..cd401831 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8ca623f94bcc88063e9db403604630ac differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cacdd3b671a5bec3195e1db1dd24c84 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cacdd3b671a5bec3195e1db1dd24c84 new file mode 100644 index 00000000..ee938543 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cacdd3b671a5bec3195e1db1dd24c84 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cbe0017ef671778749012f0862eed9f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cbe0017ef671778749012f0862eed9f new file mode 100644 index 00000000..d9307766 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cbe0017ef671778749012f0862eed9f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cbf3ff3d240ffda2118da59c6703af1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cbf3ff3d240ffda2118da59c6703af1 new file mode 100644 index 00000000..056c06a9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cbf3ff3d240ffda2118da59c6703af1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cc94ec4c4f30a6745070c7f7cf52f1e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cc94ec4c4f30a6745070c7f7cf52f1e new file mode 100644 index 00000000..4abce0d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cc94ec4c4f30a6745070c7f7cf52f1e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cd4e49ec5254b22176d1f4a0818ef37 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cd4e49ec5254b22176d1f4a0818ef37 new file mode 100644 index 00000000..e076c593 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cd4e49ec5254b22176d1f4a0818ef37 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cd5edabc73256b68c272374e321deee b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cd5edabc73256b68c272374e321deee new file mode 100644 index 00000000..e271e8d9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cd5edabc73256b68c272374e321deee differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cde518a6e4123ed1ab0cdb1a52b8f35 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cde518a6e4123ed1ab0cdb1a52b8f35 new file mode 100644 index 00000000..343e8f2e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cde518a6e4123ed1ab0cdb1a52b8f35 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8ce217d75ad2debdea62612760584871 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8ce217d75ad2debdea62612760584871 new file mode 100644 index 00000000..55e52812 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8ce217d75ad2debdea62612760584871 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cefa02e2372aa707924aa0d15e84f11 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cefa02e2372aa707924aa0d15e84f11 new file mode 100644 index 00000000..35566712 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cefa02e2372aa707924aa0d15e84f11 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cf11e6402ca0cd018a3864a0985dcf8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cf11e6402ca0cd018a3864a0985dcf8 new file mode 100644 index 00000000..defe598c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cf11e6402ca0cd018a3864a0985dcf8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cf86d319416193dfe1d172fcabaa5ff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cf86d319416193dfe1d172fcabaa5ff new file mode 100644 index 00000000..7003f38c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cf86d319416193dfe1d172fcabaa5ff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cfae0b553be7b1e70a4bf2922f07293 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cfae0b553be7b1e70a4bf2922f07293 new file mode 100644 index 00000000..e25ec30b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8c/8cfae0b553be7b1e70a4bf2922f07293 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d0fb52383487a2f6da1afb3056c8d7a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d0fb52383487a2f6da1afb3056c8d7a new file mode 100644 index 00000000..b7f0ad59 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d0fb52383487a2f6da1afb3056c8d7a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d12b2353f7596603103d160a2b5006c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d12b2353f7596603103d160a2b5006c new file mode 100644 index 00000000..2c70d085 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d12b2353f7596603103d160a2b5006c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d2a522e97b0bb12e817ba5dda82b0ba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d2a522e97b0bb12e817ba5dda82b0ba new file mode 100644 index 00000000..82eaf767 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d2a522e97b0bb12e817ba5dda82b0ba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d2a98e452bd34d32f47d6d3b338f50f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d2a98e452bd34d32f47d6d3b338f50f new file mode 100644 index 00000000..aaf09adc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d2a98e452bd34d32f47d6d3b338f50f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d34c078da737ad9b84c12d2e8de901f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d34c078da737ad9b84c12d2e8de901f new file mode 100644 index 00000000..b50369ba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d34c078da737ad9b84c12d2e8de901f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d50d62432fd3bccb064e5c2d59685aa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d50d62432fd3bccb064e5c2d59685aa new file mode 100644 index 00000000..0809b207 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d50d62432fd3bccb064e5c2d59685aa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d56d85c436c0f72485d9389e21b2b03 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d56d85c436c0f72485d9389e21b2b03 new file mode 100644 index 00000000..a563a36b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d56d85c436c0f72485d9389e21b2b03 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d6d43559d7564f6ddaf2f1f6407db64 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d6d43559d7564f6ddaf2f1f6407db64 new file mode 100644 index 00000000..a4664b02 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d6d43559d7564f6ddaf2f1f6407db64 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d6e105f182cc603d7af7ce7381b9304 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d6e105f182cc603d7af7ce7381b9304 new file mode 100644 index 00000000..c73696ff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d6e105f182cc603d7af7ce7381b9304 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d6f53a0d7f5bfc5c3c15fd5a3ff4428 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d6f53a0d7f5bfc5c3c15fd5a3ff4428 new file mode 100644 index 00000000..4abeb912 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d6f53a0d7f5bfc5c3c15fd5a3ff4428 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d8b5b69dc105ea8442d21adbf406f6f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d8b5b69dc105ea8442d21adbf406f6f new file mode 100644 index 00000000..a32037bc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d8b5b69dc105ea8442d21adbf406f6f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d9a673fd216b3c9ffac43ca2b716379 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d9a673fd216b3c9ffac43ca2b716379 new file mode 100644 index 00000000..8093b544 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d9a673fd216b3c9ffac43ca2b716379 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d9c1ef280ddec4e13e512c0904a6efa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d9c1ef280ddec4e13e512c0904a6efa new file mode 100644 index 00000000..2b788f1b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d9c1ef280ddec4e13e512c0904a6efa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d9cfd145a10550f74374fe3d8a50e52 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d9cfd145a10550f74374fe3d8a50e52 new file mode 100644 index 00000000..2a9b6134 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8d9cfd145a10550f74374fe3d8a50e52 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8da9f81e6e4ddd27c58da14e3dc7df78 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8da9f81e6e4ddd27c58da14e3dc7df78 new file mode 100644 index 00000000..14d511d7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8da9f81e6e4ddd27c58da14e3dc7df78 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8db30e6ddefe95c530c4cc521033a1e6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8db30e6ddefe95c530c4cc521033a1e6 new file mode 100644 index 00000000..96c2ae80 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8db30e6ddefe95c530c4cc521033a1e6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8dc2258c6ff10858f606252821110d18 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8dc2258c6ff10858f606252821110d18 new file mode 100644 index 00000000..9da92734 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8dc2258c6ff10858f606252821110d18 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8dc80232e33f4c3775f1eb780a2a69e5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8dc80232e33f4c3775f1eb780a2a69e5 new file mode 100644 index 00000000..a9e2d4a6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8dc80232e33f4c3775f1eb780a2a69e5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8dd31460ef863301a71f0780c8acd753 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8dd31460ef863301a71f0780c8acd753 new file mode 100644 index 00000000..604f73bc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8dd31460ef863301a71f0780c8acd753 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8de8aec9c43bc7006310bb5f521b93c9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8de8aec9c43bc7006310bb5f521b93c9 new file mode 100644 index 00000000..b02b5a41 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8de8aec9c43bc7006310bb5f521b93c9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8df6156a6b6cf5668f67304380d34756 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8df6156a6b6cf5668f67304380d34756 new file mode 100644 index 00000000..18a03473 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8d/8df6156a6b6cf5668f67304380d34756 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e01cbeafc159697cddaf1430f2bc4d6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e01cbeafc159697cddaf1430f2bc4d6 new file mode 100644 index 00000000..19b56a83 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e01cbeafc159697cddaf1430f2bc4d6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e130bcb33b049a4fe823067299545ad b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e130bcb33b049a4fe823067299545ad new file mode 100644 index 00000000..bd25a5a0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e130bcb33b049a4fe823067299545ad differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e1c1a8e694a5e52f46bf41b843971b2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e1c1a8e694a5e52f46bf41b843971b2 new file mode 100644 index 00000000..1be29ebe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e1c1a8e694a5e52f46bf41b843971b2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e2d378fc59fde81a3bc734a1ad15e5c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e2d378fc59fde81a3bc734a1ad15e5c new file mode 100644 index 00000000..f9cc3649 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e2d378fc59fde81a3bc734a1ad15e5c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e2ec3d6c8ba91bfef98453cddc00cd4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e2ec3d6c8ba91bfef98453cddc00cd4 new file mode 100644 index 00000000..638256dc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e2ec3d6c8ba91bfef98453cddc00cd4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e3d6177cd07de292609b895ab8b0f7a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e3d6177cd07de292609b895ab8b0f7a new file mode 100644 index 00000000..6ce761df Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e3d6177cd07de292609b895ab8b0f7a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e3edf7c42e9bab6bd4aa65a7ec9a875 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e3edf7c42e9bab6bd4aa65a7ec9a875 new file mode 100644 index 00000000..914f3e58 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e3edf7c42e9bab6bd4aa65a7ec9a875 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e4621601a3029562d7669ed0fc2437c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e4621601a3029562d7669ed0fc2437c new file mode 100644 index 00000000..2877bf51 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e4621601a3029562d7669ed0fc2437c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e6cb2168fd9943d5008803cbf66a76e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e6cb2168fd9943d5008803cbf66a76e new file mode 100644 index 00000000..d18779c9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e6cb2168fd9943d5008803cbf66a76e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e6d1795f57525089753310e99cc3ef4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e6d1795f57525089753310e99cc3ef4 new file mode 100644 index 00000000..688131c6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e6d1795f57525089753310e99cc3ef4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e7225cd84607bc50504083cdf0c075e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e7225cd84607bc50504083cdf0c075e new file mode 100644 index 00000000..ec85c935 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e7225cd84607bc50504083cdf0c075e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e7a7544b89a5f3f0db5b263ceaa17a2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e7a7544b89a5f3f0db5b263ceaa17a2 new file mode 100644 index 00000000..b3bca598 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e7a7544b89a5f3f0db5b263ceaa17a2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e91e10484108763ce474157ffde05fe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e91e10484108763ce474157ffde05fe new file mode 100644 index 00000000..ae4179bf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8e91e10484108763ce474157ffde05fe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8eb49283c56e941be65e704c17d98d29 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8eb49283c56e941be65e704c17d98d29 new file mode 100644 index 00000000..8f55f54c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8eb49283c56e941be65e704c17d98d29 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8ec1c398f36a5b7f66516d60d25d713f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8ec1c398f36a5b7f66516d60d25d713f new file mode 100644 index 00000000..a35844fb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8ec1c398f36a5b7f66516d60d25d713f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8ed5f1c6606a1ebd545475e13be74743 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8ed5f1c6606a1ebd545475e13be74743 new file mode 100644 index 00000000..ab316e84 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8ed5f1c6606a1ebd545475e13be74743 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8effb2cd3253656fc7a641151d7128cc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8effb2cd3253656fc7a641151d7128cc new file mode 100644 index 00000000..d6fe9969 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8e/8effb2cd3253656fc7a641151d7128cc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f0a1ed68781587ad34ee64e3d20f689 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f0a1ed68781587ad34ee64e3d20f689 new file mode 100644 index 00000000..bc30ec0a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f0a1ed68781587ad34ee64e3d20f689 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f0c7885536ca921fedce50713ee4d5a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f0c7885536ca921fedce50713ee4d5a new file mode 100644 index 00000000..9ef3c135 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f0c7885536ca921fedce50713ee4d5a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f33034e76bcef488c9a240106fea43e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f33034e76bcef488c9a240106fea43e new file mode 100644 index 00000000..9909d522 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f33034e76bcef488c9a240106fea43e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f4078b0f1c981c678befefc6c67bb75 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f4078b0f1c981c678befefc6c67bb75 new file mode 100644 index 00000000..1411042a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f4078b0f1c981c678befefc6c67bb75 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f40dfb4aa0600e416d5aa9d3ebaabc6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f40dfb4aa0600e416d5aa9d3ebaabc6 new file mode 100644 index 00000000..eeece01e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f40dfb4aa0600e416d5aa9d3ebaabc6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f551c938e26cacb52b8243066d9be05 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f551c938e26cacb52b8243066d9be05 new file mode 100644 index 00000000..8208eecf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f551c938e26cacb52b8243066d9be05 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f7e17c13bdc112f9b6204ec28debb15 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f7e17c13bdc112f9b6204ec28debb15 new file mode 100644 index 00000000..023ffe4d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f7e17c13bdc112f9b6204ec28debb15 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f932779d3ab69f06ff10dc56ec4541a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f932779d3ab69f06ff10dc56ec4541a new file mode 100644 index 00000000..f7fd030e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f932779d3ab69f06ff10dc56ec4541a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f9eb5017bc22f97eed75d36bf1ee9a7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f9eb5017bc22f97eed75d36bf1ee9a7 new file mode 100644 index 00000000..718ee6a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8f9eb5017bc22f97eed75d36bf1ee9a7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8faf49310695ee53456f3d6b81616b8e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8faf49310695ee53456f3d6b81616b8e new file mode 100644 index 00000000..29e5272c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8faf49310695ee53456f3d6b81616b8e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8fc685dcb11be2de1a2a853268840b17 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8fc685dcb11be2de1a2a853268840b17 new file mode 100644 index 00000000..9f297e42 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8fc685dcb11be2de1a2a853268840b17 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8fc989ae7f6ab261ed43d2190896f1ea b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8fc989ae7f6ab261ed43d2190896f1ea new file mode 100644 index 00000000..17974acb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8fc989ae7f6ab261ed43d2190896f1ea differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8fd3bb31a2de273ac3291451f04eec08 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8fd3bb31a2de273ac3291451f04eec08 new file mode 100644 index 00000000..d8c00886 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/8f/8fd3bb31a2de273ac3291451f04eec08 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/900200a6f1236a8bec5e56c707ade7ad b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/900200a6f1236a8bec5e56c707ade7ad new file mode 100644 index 00000000..553a4e39 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/900200a6f1236a8bec5e56c707ade7ad differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90111a5305e2c329e2eb002b0586ef27 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90111a5305e2c329e2eb002b0586ef27 new file mode 100644 index 00000000..75f7e9dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90111a5305e2c329e2eb002b0586ef27 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/901cad93b225619b9c29712d4a0b189d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/901cad93b225619b9c29712d4a0b189d new file mode 100644 index 00000000..357d5a5c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/901cad93b225619b9c29712d4a0b189d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/904ecb03f5f87227557f59d63c49859f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/904ecb03f5f87227557f59d63c49859f new file mode 100644 index 00000000..1947c4a4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/904ecb03f5f87227557f59d63c49859f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/9054943987a9bd59f511c84351fbd9f8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/9054943987a9bd59f511c84351fbd9f8 new file mode 100644 index 00000000..eb762ce6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/9054943987a9bd59f511c84351fbd9f8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90553a45f2534a53e718776f400c3f70 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90553a45f2534a53e718776f400c3f70 new file mode 100644 index 00000000..201febf3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90553a45f2534a53e718776f400c3f70 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/905a6e91219712003c901c4da583ea54 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/905a6e91219712003c901c4da583ea54 new file mode 100644 index 00000000..54733781 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/905a6e91219712003c901c4da583ea54 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/907f6ce727a1d7beda4e5db1f95bd2b7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/907f6ce727a1d7beda4e5db1f95bd2b7 new file mode 100644 index 00000000..1eeb681b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/907f6ce727a1d7beda4e5db1f95bd2b7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90886d5cb06067b09f732e933061d1b0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90886d5cb06067b09f732e933061d1b0 new file mode 100644 index 00000000..555ec553 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90886d5cb06067b09f732e933061d1b0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/908c8fde7812daa912807c3b6dc9a0f2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/908c8fde7812daa912807c3b6dc9a0f2 new file mode 100644 index 00000000..a9863e43 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/908c8fde7812daa912807c3b6dc9a0f2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90ac9f0483a2f58e84a33033599b53dc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90ac9f0483a2f58e84a33033599b53dc new file mode 100644 index 00000000..7c3f3ae1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90ac9f0483a2f58e84a33033599b53dc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90b46fe2edf82e5edc3928447c48e06a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90b46fe2edf82e5edc3928447c48e06a new file mode 100644 index 00000000..28db2b84 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90b46fe2edf82e5edc3928447c48e06a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90ba0c9eceb18499577de1141bb1f841 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90ba0c9eceb18499577de1141bb1f841 new file mode 100644 index 00000000..d24c7873 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90ba0c9eceb18499577de1141bb1f841 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90c45123c6b8ecc07ef0e7473a0267a3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90c45123c6b8ecc07ef0e7473a0267a3 new file mode 100644 index 00000000..59715ebc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90c45123c6b8ecc07ef0e7473a0267a3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90c60f9564f4003760657b0b78795554 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90c60f9564f4003760657b0b78795554 new file mode 100644 index 00000000..8fb54e63 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90c60f9564f4003760657b0b78795554 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90e2f1f3324910fca6d25f15b57b6397 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90e2f1f3324910fca6d25f15b57b6397 new file mode 100644 index 00000000..5a893f5c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90e2f1f3324910fca6d25f15b57b6397 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90fc60335f8acba621bb4aaa604a7fef b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90fc60335f8acba621bb4aaa604a7fef new file mode 100644 index 00000000..ff504a1d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/90/90fc60335f8acba621bb4aaa604a7fef differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/910efa42879c8050b7a6ab6499d97892 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/910efa42879c8050b7a6ab6499d97892 new file mode 100644 index 00000000..af0c68ec Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/910efa42879c8050b7a6ab6499d97892 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/9133dbf1ddd6e16c8130cf2b46f1bfc9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/9133dbf1ddd6e16c8130cf2b46f1bfc9 new file mode 100644 index 00000000..4ffc6824 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/9133dbf1ddd6e16c8130cf2b46f1bfc9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/915864b3bf30f78a9298193a421f5abb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/915864b3bf30f78a9298193a421f5abb new file mode 100644 index 00000000..e0fa4d09 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/915864b3bf30f78a9298193a421f5abb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/9174923ca00437f17bcf63481c4895c9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/9174923ca00437f17bcf63481c4895c9 new file mode 100644 index 00000000..fadb1e53 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/9174923ca00437f17bcf63481c4895c9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91775ea4b43b7cce85148dd852be9f0b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91775ea4b43b7cce85148dd852be9f0b new file mode 100644 index 00000000..c561cdd2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91775ea4b43b7cce85148dd852be9f0b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91791f8d07850dda097349a6c3bb5bf1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91791f8d07850dda097349a6c3bb5bf1 new file mode 100644 index 00000000..235909dc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91791f8d07850dda097349a6c3bb5bf1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/9185f66ca0658d4380ade2bc036760b4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/9185f66ca0658d4380ade2bc036760b4 new file mode 100644 index 00000000..c6ecbcef Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/9185f66ca0658d4380ade2bc036760b4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91bb608380618cabcc720436c6c1b7c7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91bb608380618cabcc720436c6c1b7c7 new file mode 100644 index 00000000..e3549353 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91bb608380618cabcc720436c6c1b7c7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91c098c2f51144aa8a9cf5d9eeb13c0f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91c098c2f51144aa8a9cf5d9eeb13c0f new file mode 100644 index 00000000..a0bf700a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91c098c2f51144aa8a9cf5d9eeb13c0f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91d390cf61f909c2c70ea6fc4457c164 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91d390cf61f909c2c70ea6fc4457c164 new file mode 100644 index 00000000..78f69df3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91d390cf61f909c2c70ea6fc4457c164 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91d41d90b6411e95dc284c6ad362a2bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91d41d90b6411e95dc284c6ad362a2bc new file mode 100644 index 00000000..874dce64 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91d41d90b6411e95dc284c6ad362a2bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91df3f54c63ad9ea0967ef86ddc0053d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91df3f54c63ad9ea0967ef86ddc0053d new file mode 100644 index 00000000..22178590 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91df3f54c63ad9ea0967ef86ddc0053d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91dfed8efeafafa3fc1d4518fa0d9eff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91dfed8efeafafa3fc1d4518fa0d9eff new file mode 100644 index 00000000..2b0b9fa6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91dfed8efeafafa3fc1d4518fa0d9eff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91e028e2b08a738f2c0b4318baf4895a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91e028e2b08a738f2c0b4318baf4895a new file mode 100644 index 00000000..e7e6cdcb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91e028e2b08a738f2c0b4318baf4895a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91e65485aeff1969800459c4447402a0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91e65485aeff1969800459c4447402a0 new file mode 100644 index 00000000..efe95556 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91e65485aeff1969800459c4447402a0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91e76822db6796596923533ff31a6dad b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91e76822db6796596923533ff31a6dad new file mode 100644 index 00000000..1d0bc576 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91e76822db6796596923533ff31a6dad differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91fa2e4921cc942a22d6ae2a5f044bbe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91fa2e4921cc942a22d6ae2a5f044bbe new file mode 100644 index 00000000..555bc904 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/91/91fa2e4921cc942a22d6ae2a5f044bbe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92147d9ddc6c4e500c8a2c2c4d8dc4f7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92147d9ddc6c4e500c8a2c2c4d8dc4f7 new file mode 100644 index 00000000..659d4085 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92147d9ddc6c4e500c8a2c2c4d8dc4f7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/9215831175bc52e0d8d187ba88281f05 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/9215831175bc52e0d8d187ba88281f05 new file mode 100644 index 00000000..c47d3f42 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/9215831175bc52e0d8d187ba88281f05 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/9226b33e772fb61ea15c3554da8637c1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/9226b33e772fb61ea15c3554da8637c1 new file mode 100644 index 00000000..4da0338d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/9226b33e772fb61ea15c3554da8637c1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/924dc70f9f16bd987d695a3eb64f4a4e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/924dc70f9f16bd987d695a3eb64f4a4e new file mode 100644 index 00000000..f957fe02 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/924dc70f9f16bd987d695a3eb64f4a4e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/925b2a72774f18bedbb088e1203baa03 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/925b2a72774f18bedbb088e1203baa03 new file mode 100644 index 00000000..4ff705f9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/925b2a72774f18bedbb088e1203baa03 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/927498d307687f1a8fad8c8ec0422c21 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/927498d307687f1a8fad8c8ec0422c21 new file mode 100644 index 00000000..809e4774 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/927498d307687f1a8fad8c8ec0422c21 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/9276f83dcd65d7174cbe652788381dfc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/9276f83dcd65d7174cbe652788381dfc new file mode 100644 index 00000000..fe70264d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/9276f83dcd65d7174cbe652788381dfc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/927d3ca0ccf40bae883743794ff342d3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/927d3ca0ccf40bae883743794ff342d3 new file mode 100644 index 00000000..135c9267 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/927d3ca0ccf40bae883743794ff342d3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/928fbd240b6a7b345312b8799bf32404 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/928fbd240b6a7b345312b8799bf32404 new file mode 100644 index 00000000..8bd8b782 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/928fbd240b6a7b345312b8799bf32404 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92a71b92e82f0d47e398da512d5784a5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92a71b92e82f0d47e398da512d5784a5 new file mode 100644 index 00000000..718c5625 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92a71b92e82f0d47e398da512d5784a5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92b4c2e746fc31959e7ac8ece73b9f19 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92b4c2e746fc31959e7ac8ece73b9f19 new file mode 100644 index 00000000..1e939ac3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92b4c2e746fc31959e7ac8ece73b9f19 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92ef399c173717d325fd6233757b3658 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92ef399c173717d325fd6233757b3658 new file mode 100644 index 00000000..aa5d9d91 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92ef399c173717d325fd6233757b3658 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92fbf9b2c47367a823744684eb9ffbd4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92fbf9b2c47367a823744684eb9ffbd4 new file mode 100644 index 00000000..9411299b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/92/92fbf9b2c47367a823744684eb9ffbd4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/930bf26ca8968d2c54d8b53dee3a2e54 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/930bf26ca8968d2c54d8b53dee3a2e54 new file mode 100644 index 00000000..1bbf819a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/930bf26ca8968d2c54d8b53dee3a2e54 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/930e805a7d3ab97bcd2c2cc7e8711c35 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/930e805a7d3ab97bcd2c2cc7e8711c35 new file mode 100644 index 00000000..47e45aa9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/930e805a7d3ab97bcd2c2cc7e8711c35 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93114dd8ccadd57b0ed2046644b71860 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93114dd8ccadd57b0ed2046644b71860 new file mode 100644 index 00000000..dde0b032 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93114dd8ccadd57b0ed2046644b71860 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/933793e27360b1a9500611bab427a08f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/933793e27360b1a9500611bab427a08f new file mode 100644 index 00000000..c4458e3f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/933793e27360b1a9500611bab427a08f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93630696eec852bddcef0373e9ef2117 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93630696eec852bddcef0373e9ef2117 new file mode 100644 index 00000000..eef3a254 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93630696eec852bddcef0373e9ef2117 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/938aad9dff5b95ae779e72f44a25d5e0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/938aad9dff5b95ae779e72f44a25d5e0 new file mode 100644 index 00000000..ac4ec2b3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/938aad9dff5b95ae779e72f44a25d5e0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/939515f3dc02274f27c46cc7783843b0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/939515f3dc02274f27c46cc7783843b0 new file mode 100644 index 00000000..352fd207 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/939515f3dc02274f27c46cc7783843b0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93b882bf318c7a06379791b5417d23bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93b882bf318c7a06379791b5417d23bc new file mode 100644 index 00000000..20d94848 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93b882bf318c7a06379791b5417d23bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93d505f0ab888cdc5ad93f107f72bde4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93d505f0ab888cdc5ad93f107f72bde4 new file mode 100644 index 00000000..dda8b543 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93d505f0ab888cdc5ad93f107f72bde4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93e4dd7ac775a1bcfde23ce047c5e4bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93e4dd7ac775a1bcfde23ce047c5e4bc new file mode 100644 index 00000000..bbf24904 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93e4dd7ac775a1bcfde23ce047c5e4bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93fb0cfce05af6b0962026346e77f287 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93fb0cfce05af6b0962026346e77f287 new file mode 100644 index 00000000..c7239e64 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93fb0cfce05af6b0962026346e77f287 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93ff83a60bd9ecee9b2910410c3b32d4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93ff83a60bd9ecee9b2910410c3b32d4 new file mode 100644 index 00000000..914629ee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/93/93ff83a60bd9ecee9b2910410c3b32d4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/940c4b315dbe55284804981c96d6d0db b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/940c4b315dbe55284804981c96d6d0db new file mode 100644 index 00000000..5adb0281 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/940c4b315dbe55284804981c96d6d0db differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/942a3d7b5a0c3e0bbde2039d4b80764c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/942a3d7b5a0c3e0bbde2039d4b80764c new file mode 100644 index 00000000..0100ca03 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/942a3d7b5a0c3e0bbde2039d4b80764c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/944c9a9507155674c4d4c6d4eb58a8eb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/944c9a9507155674c4d4c6d4eb58a8eb new file mode 100644 index 00000000..f0103ef7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/944c9a9507155674c4d4c6d4eb58a8eb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94773b6344edf8843f2abb29dea40145 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94773b6344edf8843f2abb29dea40145 new file mode 100644 index 00000000..149526ac Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94773b6344edf8843f2abb29dea40145 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/9483d5175936c1878ebe924de8641dc1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/9483d5175936c1878ebe924de8641dc1 new file mode 100644 index 00000000..78f922e1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/9483d5175936c1878ebe924de8641dc1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/948a25946baa772b3b1bb01b2f373193 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/948a25946baa772b3b1bb01b2f373193 new file mode 100644 index 00000000..dff9f432 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/948a25946baa772b3b1bb01b2f373193 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94a80548c30fb42126dabd32fd22b8b9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94a80548c30fb42126dabd32fd22b8b9 new file mode 100644 index 00000000..7d3cdae2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94a80548c30fb42126dabd32fd22b8b9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94b669241597babfae6149cdfe8e6725 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94b669241597babfae6149cdfe8e6725 new file mode 100644 index 00000000..ca24c2f4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94b669241597babfae6149cdfe8e6725 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94e139175e6402c30877c6d4ddb3bcd4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94e139175e6402c30877c6d4ddb3bcd4 new file mode 100644 index 00000000..443e4cb3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94e139175e6402c30877c6d4ddb3bcd4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94e62f8ba95acfe1729392860dbe2f63 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94e62f8ba95acfe1729392860dbe2f63 new file mode 100644 index 00000000..bddf2ed8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94e62f8ba95acfe1729392860dbe2f63 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94ee1bd5eec4f58971d12d7fb8ad76bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94ee1bd5eec4f58971d12d7fb8ad76bc new file mode 100644 index 00000000..5d7f2b3f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/94/94ee1bd5eec4f58971d12d7fb8ad76bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/950da03acbbb76decc5cb168d589c62d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/950da03acbbb76decc5cb168d589c62d new file mode 100644 index 00000000..efa5e640 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/950da03acbbb76decc5cb168d589c62d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/95194445ec7af719611bcc3deba06f35 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/95194445ec7af719611bcc3deba06f35 new file mode 100644 index 00000000..7b24d595 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/95194445ec7af719611bcc3deba06f35 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/951aec14a1235d9d616bdc6c1feb1b3a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/951aec14a1235d9d616bdc6c1feb1b3a new file mode 100644 index 00000000..fccd9e42 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/951aec14a1235d9d616bdc6c1feb1b3a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/95575a1e4587d7b75d24ed18d1deaf8b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/95575a1e4587d7b75d24ed18d1deaf8b new file mode 100644 index 00000000..045d3945 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/95575a1e4587d7b75d24ed18d1deaf8b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/955b3732e497fc7bf1490d9822117779 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/955b3732e497fc7bf1490d9822117779 new file mode 100644 index 00000000..fbd4b5f1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/955b3732e497fc7bf1490d9822117779 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/956ce7604d71b1d2699d1db99b1b869d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/956ce7604d71b1d2699d1db99b1b869d new file mode 100644 index 00000000..04c0c49d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/956ce7604d71b1d2699d1db99b1b869d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/956f206f8581a42de25960c33e6b2823 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/956f206f8581a42de25960c33e6b2823 new file mode 100644 index 00000000..62d5f45c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/956f206f8581a42de25960c33e6b2823 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/957510ed5ac44654c69f85c7d07457ad b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/957510ed5ac44654c69f85c7d07457ad new file mode 100644 index 00000000..532d813d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/957510ed5ac44654c69f85c7d07457ad differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/95bf9d8f1815e52d7f284bf9e9bce21c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/95bf9d8f1815e52d7f284bf9e9bce21c new file mode 100644 index 00000000..04b2e7a8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/95bf9d8f1815e52d7f284bf9e9bce21c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/95ec507fe1f0f651b0a7c4b1ad00492e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/95ec507fe1f0f651b0a7c4b1ad00492e new file mode 100644 index 00000000..12868697 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/95/95ec507fe1f0f651b0a7c4b1ad00492e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/960d8df8505df7e6acb2d49bffb3f87d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/960d8df8505df7e6acb2d49bffb3f87d new file mode 100644 index 00000000..8e2398d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/960d8df8505df7e6acb2d49bffb3f87d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96113dc36b10be214d2547c1b8cf19fe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96113dc36b10be214d2547c1b8cf19fe new file mode 100644 index 00000000..c06832cb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96113dc36b10be214d2547c1b8cf19fe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/961d4f279600ca80d445fa986bcb776d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/961d4f279600ca80d445fa986bcb776d new file mode 100644 index 00000000..00745b87 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/961d4f279600ca80d445fa986bcb776d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/9620a3dcbec7308710f290e1f34eca50 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/9620a3dcbec7308710f290e1f34eca50 new file mode 100644 index 00000000..8402641f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/9620a3dcbec7308710f290e1f34eca50 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96255430d3402b15412da287500c9712 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96255430d3402b15412da287500c9712 new file mode 100644 index 00000000..b2322743 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96255430d3402b15412da287500c9712 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/963a7795e48b7cf061ffda72ba9e7364 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/963a7795e48b7cf061ffda72ba9e7364 new file mode 100644 index 00000000..02c5c2c5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/963a7795e48b7cf061ffda72ba9e7364 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/966b84d04415cd36c5d642c4036d0db2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/966b84d04415cd36c5d642c4036d0db2 new file mode 100644 index 00000000..2e305fa2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/966b84d04415cd36c5d642c4036d0db2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/966bb81f9d8f1b2a573647efac7a2023 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/966bb81f9d8f1b2a573647efac7a2023 new file mode 100644 index 00000000..de743f34 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/966bb81f9d8f1b2a573647efac7a2023 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/967f1cf5cfa4a30700a661563e6ac48a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/967f1cf5cfa4a30700a661563e6ac48a new file mode 100644 index 00000000..1973b113 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/967f1cf5cfa4a30700a661563e6ac48a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96878bff087438f2661c3b51659466a8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96878bff087438f2661c3b51659466a8 new file mode 100644 index 00000000..78d283ef Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96878bff087438f2661c3b51659466a8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/969ab7fd869900b4698fcba86e64c6a4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/969ab7fd869900b4698fcba86e64c6a4 new file mode 100644 index 00000000..a1a275fe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/969ab7fd869900b4698fcba86e64c6a4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/969df942a8f633c3c703d07f0398edaf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/969df942a8f633c3c703d07f0398edaf new file mode 100644 index 00000000..9e211019 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/969df942a8f633c3c703d07f0398edaf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96b1c7678a2a198b093deed657840792 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96b1c7678a2a198b093deed657840792 new file mode 100644 index 00000000..458b9656 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96b1c7678a2a198b093deed657840792 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96e94b22fd5cfbf9885c9271bc219370 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96e94b22fd5cfbf9885c9271bc219370 new file mode 100644 index 00000000..5fb6855f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/96/96e94b22fd5cfbf9885c9271bc219370 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97016a867eaeef9f7f517ddc47d376db b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97016a867eaeef9f7f517ddc47d376db new file mode 100644 index 00000000..3bf7bc99 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97016a867eaeef9f7f517ddc47d376db differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/970c146aa0fd2357a73c2cb08e521128 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/970c146aa0fd2357a73c2cb08e521128 new file mode 100644 index 00000000..14eda512 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/970c146aa0fd2357a73c2cb08e521128 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97265bd2a3ea613a888d7bec380d1176 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97265bd2a3ea613a888d7bec380d1176 new file mode 100644 index 00000000..4e362d11 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97265bd2a3ea613a888d7bec380d1176 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/972b05400cfbb0a0167861f9283dfd24 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/972b05400cfbb0a0167861f9283dfd24 new file mode 100644 index 00000000..23fb0ad5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/972b05400cfbb0a0167861f9283dfd24 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/9736e65f723feb3576dbb6f917f1f4f8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/9736e65f723feb3576dbb6f917f1f4f8 new file mode 100644 index 00000000..9d8f7a76 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/9736e65f723feb3576dbb6f917f1f4f8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/9739a2c7e5559b018e6f9d05f5fbc650 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/9739a2c7e5559b018e6f9d05f5fbc650 new file mode 100644 index 00000000..79a80a5b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/9739a2c7e5559b018e6f9d05f5fbc650 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/9754815f68206f81d87192a530738ba8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/9754815f68206f81d87192a530738ba8 new file mode 100644 index 00000000..e10e8363 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/9754815f68206f81d87192a530738ba8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97975b93170e130ae2c62e4c99cf949a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97975b93170e130ae2c62e4c99cf949a new file mode 100644 index 00000000..1ea3c80b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97975b93170e130ae2c62e4c99cf949a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/9797eb901ceaa8455020e57eeaf247f3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/9797eb901ceaa8455020e57eeaf247f3 new file mode 100644 index 00000000..75835e85 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/9797eb901ceaa8455020e57eeaf247f3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97ceedc74b84a5d3e022f44222ccd791 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97ceedc74b84a5d3e022f44222ccd791 new file mode 100644 index 00000000..47217a67 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97ceedc74b84a5d3e022f44222ccd791 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97da2bfd7821acf413329ec34cf7224e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97da2bfd7821acf413329ec34cf7224e new file mode 100644 index 00000000..b16e93ab Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97da2bfd7821acf413329ec34cf7224e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97f279637b5b737eba145e2986daea09 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97f279637b5b737eba145e2986daea09 new file mode 100644 index 00000000..78fb85a7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/97/97f279637b5b737eba145e2986daea09 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/9823390622d9f3010a1d0b5c39cddb4c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/9823390622d9f3010a1d0b5c39cddb4c new file mode 100644 index 00000000..d5201e47 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/9823390622d9f3010a1d0b5c39cddb4c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/9841129a4a2471ec3d46c0eab6a35753 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/9841129a4a2471ec3d46c0eab6a35753 new file mode 100644 index 00000000..a73a36f1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/9841129a4a2471ec3d46c0eab6a35753 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/984e536ab4b4efd7ea0a7e7354936119 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/984e536ab4b4efd7ea0a7e7354936119 new file mode 100644 index 00000000..6661787b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/984e536ab4b4efd7ea0a7e7354936119 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/98563cc59cb8ec4c0564b3b4b316dd55 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/98563cc59cb8ec4c0564b3b4b316dd55 new file mode 100644 index 00000000..ab7e94e0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/98563cc59cb8ec4c0564b3b4b316dd55 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/985be54d079e5915dd4f86fd486fec75 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/985be54d079e5915dd4f86fd486fec75 new file mode 100644 index 00000000..072f534d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/985be54d079e5915dd4f86fd486fec75 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/9871b1c15e72e05c138cd74e96a7b219 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/9871b1c15e72e05c138cd74e96a7b219 new file mode 100644 index 00000000..4f32ed6b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/9871b1c15e72e05c138cd74e96a7b219 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/988430b34a73493ba94d08db22654b48 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/988430b34a73493ba94d08db22654b48 new file mode 100644 index 00000000..c2f1175e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/988430b34a73493ba94d08db22654b48 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/988bf40ffebb5a8321a59fc81d6f368d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/988bf40ffebb5a8321a59fc81d6f368d new file mode 100644 index 00000000..856a66d1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/988bf40ffebb5a8321a59fc81d6f368d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/98d981e2442bc011cc1321210e24bea2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/98d981e2442bc011cc1321210e24bea2 new file mode 100644 index 00000000..dca1e861 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/98d981e2442bc011cc1321210e24bea2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/98e0e6e9496c09699b81192bc014538c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/98e0e6e9496c09699b81192bc014538c new file mode 100644 index 00000000..471fd320 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/98/98e0e6e9496c09699b81192bc014538c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99020d39358ad93783f04e5edc16f09a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99020d39358ad93783f04e5edc16f09a new file mode 100644 index 00000000..e6f22e2e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99020d39358ad93783f04e5edc16f09a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/990cbec8c7641f712435159ccce004e2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/990cbec8c7641f712435159ccce004e2 new file mode 100644 index 00000000..73043ffa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/990cbec8c7641f712435159ccce004e2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/990fae444a2dfe7cea0bbf0a03182174 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/990fae444a2dfe7cea0bbf0a03182174 new file mode 100644 index 00000000..0d0b880f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/990fae444a2dfe7cea0bbf0a03182174 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/991f4f6f9d66352ff5bd047ff93d755f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/991f4f6f9d66352ff5bd047ff93d755f new file mode 100644 index 00000000..85668c4e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/991f4f6f9d66352ff5bd047ff93d755f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99311db672a3accce1fd7644440e2be5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99311db672a3accce1fd7644440e2be5 new file mode 100644 index 00000000..cfec3440 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99311db672a3accce1fd7644440e2be5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99463a8a99a96d305aa3421f3bce502d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99463a8a99a96d305aa3421f3bce502d new file mode 100644 index 00000000..659ac5d0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99463a8a99a96d305aa3421f3bce502d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/9950e5b06bab0b77b082761b05313e59 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/9950e5b06bab0b77b082761b05313e59 new file mode 100644 index 00000000..dbe217fa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/9950e5b06bab0b77b082761b05313e59 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/997e4693d782be5f284ec33d0777bb49 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/997e4693d782be5f284ec33d0777bb49 new file mode 100644 index 00000000..0010a9f2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/997e4693d782be5f284ec33d0777bb49 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/998a850789b879da9349f862d59531e3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/998a850789b879da9349f862d59531e3 new file mode 100644 index 00000000..58388dc1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/998a850789b879da9349f862d59531e3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99af8ccd9493bb4aac479d68362d0b50 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99af8ccd9493bb4aac479d68362d0b50 new file mode 100644 index 00000000..6a024e2d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99af8ccd9493bb4aac479d68362d0b50 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99c156fa432f724481903a2fb9eb0e4a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99c156fa432f724481903a2fb9eb0e4a new file mode 100644 index 00000000..2b80b0c5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/99/99c156fa432f724481903a2fb9eb0e4a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a14c909c020a5c39fb8fbcbe27d05b1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a14c909c020a5c39fb8fbcbe27d05b1 new file mode 100644 index 00000000..c0869ab9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a14c909c020a5c39fb8fbcbe27d05b1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a2a64c7e123c22c96a2d8fc7b6dda4d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a2a64c7e123c22c96a2d8fc7b6dda4d new file mode 100644 index 00000000..a528d438 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a2a64c7e123c22c96a2d8fc7b6dda4d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a420780d4d3635ec6d3872e7d921f8e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a420780d4d3635ec6d3872e7d921f8e new file mode 100644 index 00000000..a83d6174 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a420780d4d3635ec6d3872e7d921f8e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a47abb7b5cbf72684674428524125e9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a47abb7b5cbf72684674428524125e9 new file mode 100644 index 00000000..aea8e01b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a47abb7b5cbf72684674428524125e9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a600292f8c1c277a930330c51f32641 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a600292f8c1c277a930330c51f32641 new file mode 100644 index 00000000..7fbbe27d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a600292f8c1c277a930330c51f32641 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a68cb416ae595f3c83c04012d61fdb9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a68cb416ae595f3c83c04012d61fdb9 new file mode 100644 index 00000000..15f4f0e4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a68cb416ae595f3c83c04012d61fdb9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a76256efd9dad109eed9525c6b4a271 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a76256efd9dad109eed9525c6b4a271 new file mode 100644 index 00000000..f189987b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a76256efd9dad109eed9525c6b4a271 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a7d704aa3c5ded90e8f9d843b8eef33 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a7d704aa3c5ded90e8f9d843b8eef33 new file mode 100644 index 00000000..f9b4538a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a7d704aa3c5ded90e8f9d843b8eef33 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a8e4b0f227b54f4dc7c6e8db68fb6d4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a8e4b0f227b54f4dc7c6e8db68fb6d4 new file mode 100644 index 00000000..fa930066 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a8e4b0f227b54f4dc7c6e8db68fb6d4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a90c32b29b3da435610d0bd2c60b11e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a90c32b29b3da435610d0bd2c60b11e new file mode 100644 index 00000000..f5ee4ab8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a90c32b29b3da435610d0bd2c60b11e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a96c445e9f02a73918bdd4a2731b500 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a96c445e9f02a73918bdd4a2731b500 new file mode 100644 index 00000000..04ea407a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9a96c445e9f02a73918bdd4a2731b500 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9ab0c3bf3cbc84d9c627e8a788de7c2e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9ab0c3bf3cbc84d9c627e8a788de7c2e new file mode 100644 index 00000000..3d465197 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9ab0c3bf3cbc84d9c627e8a788de7c2e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9ae27bdd80cef8c86db0ca25aca843a7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9ae27bdd80cef8c86db0ca25aca843a7 new file mode 100644 index 00000000..c4a209a4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9ae27bdd80cef8c86db0ca25aca843a7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9af8d79993a9dc819e0811247e4e26f2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9af8d79993a9dc819e0811247e4e26f2 new file mode 100644 index 00000000..fee5b166 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9a/9af8d79993a9dc819e0811247e4e26f2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9b5064672803b75d4a67903131fce757 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9b5064672803b75d4a67903131fce757 new file mode 100644 index 00000000..04fee1ec Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9b5064672803b75d4a67903131fce757 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9b7a35e6bcb63eeb7bb23a77a7615565 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9b7a35e6bcb63eeb7bb23a77a7615565 new file mode 100644 index 00000000..1556b858 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9b7a35e6bcb63eeb7bb23a77a7615565 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9b999d6d7e9f7e2a0aa99ce40843d074 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9b999d6d7e9f7e2a0aa99ce40843d074 new file mode 100644 index 00000000..3b0cf62c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9b999d6d7e9f7e2a0aa99ce40843d074 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9b9d2b2d6a7b3d07c29c1771c915aad8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9b9d2b2d6a7b3d07c29c1771c915aad8 new file mode 100644 index 00000000..f308dfa6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9b9d2b2d6a7b3d07c29c1771c915aad8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9bac06e787fab60054fdc73991d9671f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9bac06e787fab60054fdc73991d9671f new file mode 100644 index 00000000..c9bd8a39 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9bac06e787fab60054fdc73991d9671f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9baebf46bf32570bfe0dac6cd1ecb509 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9baebf46bf32570bfe0dac6cd1ecb509 new file mode 100644 index 00000000..4bde77e7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9baebf46bf32570bfe0dac6cd1ecb509 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9bca9bce73246fad75e87c0e0beebb6a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9bca9bce73246fad75e87c0e0beebb6a new file mode 100644 index 00000000..5aa81f30 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9bca9bce73246fad75e87c0e0beebb6a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9bef551674aade941b2940a32f58784a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9bef551674aade941b2940a32f58784a new file mode 100644 index 00000000..6a258bb2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9b/9bef551674aade941b2940a32f58784a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9c4c29e3c0299567106559a831c1b651 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9c4c29e3c0299567106559a831c1b651 new file mode 100644 index 00000000..900d2083 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9c4c29e3c0299567106559a831c1b651 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9c9a3a4dcc9700c0924e0be7ffd8673b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9c9a3a4dcc9700c0924e0be7ffd8673b new file mode 100644 index 00000000..3b88837d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9c9a3a4dcc9700c0924e0be7ffd8673b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9c9bfcb05d4ee16d43e9e7d4a7f0f8cc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9c9bfcb05d4ee16d43e9e7d4a7f0f8cc new file mode 100644 index 00000000..783f8939 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9c9bfcb05d4ee16d43e9e7d4a7f0f8cc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9ca22e5d2fd177747adb891ae98776bd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9ca22e5d2fd177747adb891ae98776bd new file mode 100644 index 00000000..ad9b8f1b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9ca22e5d2fd177747adb891ae98776bd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9cdafd9ad41da9928dab1183e5833f34 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9cdafd9ad41da9928dab1183e5833f34 new file mode 100644 index 00000000..9d47c12a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9cdafd9ad41da9928dab1183e5833f34 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9cdcd7ea7c2faa44553c87c55eaa2255 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9cdcd7ea7c2faa44553c87c55eaa2255 new file mode 100644 index 00000000..ef265c09 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9cdcd7ea7c2faa44553c87c55eaa2255 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9cfe408c71b086516999c57f0bd1f279 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9cfe408c71b086516999c57f0bd1f279 new file mode 100644 index 00000000..621ce1b3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9cfe408c71b086516999c57f0bd1f279 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9cff352ac5151e398dac2e9ca0c393e8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9cff352ac5151e398dac2e9ca0c393e8 new file mode 100644 index 00000000..02be04e5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9c/9cff352ac5151e398dac2e9ca0c393e8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d0f1a370b9bd9c6588ee1187b18e5bf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d0f1a370b9bd9c6588ee1187b18e5bf new file mode 100644 index 00000000..79688144 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d0f1a370b9bd9c6588ee1187b18e5bf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d1390064fd4edee107af5e5d6b26f59 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d1390064fd4edee107af5e5d6b26f59 new file mode 100644 index 00000000..ba667561 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d1390064fd4edee107af5e5d6b26f59 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d25ce4a5b077897bcb156b50034694b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d25ce4a5b077897bcb156b50034694b new file mode 100644 index 00000000..79379581 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d25ce4a5b077897bcb156b50034694b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d30655fd9d0a078a5df264e8c809ada b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d30655fd9d0a078a5df264e8c809ada new file mode 100644 index 00000000..623d7eba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d30655fd9d0a078a5df264e8c809ada differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d4cfb468023f40caed39a9f1b4bba4b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d4cfb468023f40caed39a9f1b4bba4b new file mode 100644 index 00000000..56229470 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d4cfb468023f40caed39a9f1b4bba4b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d4e00fb8bad5d55bd2086c86dbbe35d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d4e00fb8bad5d55bd2086c86dbbe35d new file mode 100644 index 00000000..25c9d6a3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d4e00fb8bad5d55bd2086c86dbbe35d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d626051ed092271b0755ade0c7dcac6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d626051ed092271b0755ade0c7dcac6 new file mode 100644 index 00000000..97a6c870 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d626051ed092271b0755ade0c7dcac6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d7dd3ba8bd5abf96fbe2f2895e53389 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d7dd3ba8bd5abf96fbe2f2895e53389 new file mode 100644 index 00000000..f7a9fe01 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d7dd3ba8bd5abf96fbe2f2895e53389 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d825aabd5f45a34995c85c6d51ca41f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d825aabd5f45a34995c85c6d51ca41f new file mode 100644 index 00000000..e7d2c063 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d825aabd5f45a34995c85c6d51ca41f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d83b8b7b85fdd909cc396ef7fb00267 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d83b8b7b85fdd909cc396ef7fb00267 new file mode 100644 index 00000000..e9181074 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d83b8b7b85fdd909cc396ef7fb00267 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d9dea894af15eca371a0bcd3a4097fc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d9dea894af15eca371a0bcd3a4097fc new file mode 100644 index 00000000..974f0838 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9d9dea894af15eca371a0bcd3a4097fc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9db5e9d275515c8525149d9d55de33a6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9db5e9d275515c8525149d9d55de33a6 new file mode 100644 index 00000000..f9a1bc11 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9db5e9d275515c8525149d9d55de33a6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9db8f0b602532fb0ba2442d781688f38 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9db8f0b602532fb0ba2442d781688f38 new file mode 100644 index 00000000..3347e85e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9db8f0b602532fb0ba2442d781688f38 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9dbb4454c6dd967b0fdcf2f452f15660 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9dbb4454c6dd967b0fdcf2f452f15660 new file mode 100644 index 00000000..642942d5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9dbb4454c6dd967b0fdcf2f452f15660 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9dc19cd2761de427a42b872f568f8ec9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9dc19cd2761de427a42b872f568f8ec9 new file mode 100644 index 00000000..2a70ffd9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9dc19cd2761de427a42b872f568f8ec9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9dccc22a2aa25f3fd67b53a78961108b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9dccc22a2aa25f3fd67b53a78961108b new file mode 100644 index 00000000..d12ed3b6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9dccc22a2aa25f3fd67b53a78961108b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9dd3ea697dd30154bfd8453f0584364d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9dd3ea697dd30154bfd8453f0584364d new file mode 100644 index 00000000..dacc72fa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9dd3ea697dd30154bfd8453f0584364d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9ddf13745ccb50fa8444e2f048dd629c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9ddf13745ccb50fa8444e2f048dd629c new file mode 100644 index 00000000..0c519e74 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9d/9ddf13745ccb50fa8444e2f048dd629c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9e0176f6e799366bcf3a328359e177d0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9e0176f6e799366bcf3a328359e177d0 new file mode 100644 index 00000000..d970bf3f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9e0176f6e799366bcf3a328359e177d0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9e21e469d521ae5479f3ec5af27e76d4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9e21e469d521ae5479f3ec5af27e76d4 new file mode 100644 index 00000000..181fa295 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9e21e469d521ae5479f3ec5af27e76d4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9e5a9b862fc4b3c670758667d0412fa2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9e5a9b862fc4b3c670758667d0412fa2 new file mode 100644 index 00000000..347ececb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9e5a9b862fc4b3c670758667d0412fa2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9edd675716954992fc3e57bd84a62f12 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9edd675716954992fc3e57bd84a62f12 new file mode 100644 index 00000000..e64ec536 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9edd675716954992fc3e57bd84a62f12 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9ee38ac77bfc6666f195e8f272bbae87 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9ee38ac77bfc6666f195e8f272bbae87 new file mode 100644 index 00000000..44be2c21 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9e/9ee38ac77bfc6666f195e8f272bbae87 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f0d97113686e1c4039036bcd4f47a83 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f0d97113686e1c4039036bcd4f47a83 new file mode 100644 index 00000000..f5a8500b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f0d97113686e1c4039036bcd4f47a83 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f1f025e9c34d2b809a4f600d239cfbf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f1f025e9c34d2b809a4f600d239cfbf new file mode 100644 index 00000000..bf52994c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f1f025e9c34d2b809a4f600d239cfbf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f2138f6175b97a890c32f86b25f3539 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f2138f6175b97a890c32f86b25f3539 new file mode 100644 index 00000000..410a0b40 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f2138f6175b97a890c32f86b25f3539 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f4023c9bd1aec986e945cf3334aa93c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f4023c9bd1aec986e945cf3334aa93c new file mode 100644 index 00000000..68ab4a70 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f4023c9bd1aec986e945cf3334aa93c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f50d89ded0ebdc7609e336589a40158 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f50d89ded0ebdc7609e336589a40158 new file mode 100644 index 00000000..56d0e3f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f50d89ded0ebdc7609e336589a40158 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f5b98f7dcabc0422f365b018aecf854 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f5b98f7dcabc0422f365b018aecf854 new file mode 100644 index 00000000..d4760e50 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f5b98f7dcabc0422f365b018aecf854 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f740ce5a6e430e68b308cc8740f2403 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f740ce5a6e430e68b308cc8740f2403 new file mode 100644 index 00000000..ac5247a4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f740ce5a6e430e68b308cc8740f2403 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f8f57f244ef243aada55093781840c9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f8f57f244ef243aada55093781840c9 new file mode 100644 index 00000000..ecf39347 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f8f57f244ef243aada55093781840c9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f90540c195e761dff79853d72b297d6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f90540c195e761dff79853d72b297d6 new file mode 100644 index 00000000..54ba4b35 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9f90540c195e761dff79853d72b297d6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fa582c552f51b34544bb5b8f66ccb19 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fa582c552f51b34544bb5b8f66ccb19 new file mode 100644 index 00000000..4ccb94e4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fa582c552f51b34544bb5b8f66ccb19 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fae66ccdde089bce0afbc4c19ef1fac b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fae66ccdde089bce0afbc4c19ef1fac new file mode 100644 index 00000000..e2bae622 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fae66ccdde089bce0afbc4c19ef1fac differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fafbe09f2976c6308887080141119b6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fafbe09f2976c6308887080141119b6 new file mode 100644 index 00000000..0c371b7b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fafbe09f2976c6308887080141119b6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fd363eb497eb35e258761eb918a049f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fd363eb497eb35e258761eb918a049f new file mode 100644 index 00000000..2f8b523a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fd363eb497eb35e258761eb918a049f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fd913e77a4063546e9e7dcf240b46fb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fd913e77a4063546e9e7dcf240b46fb new file mode 100644 index 00000000..106fc9c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fd913e77a4063546e9e7dcf240b46fb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fdcaf3ec1a8a156af3ff684261259ee b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fdcaf3ec1a8a156af3ff684261259ee new file mode 100644 index 00000000..33591094 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9fdcaf3ec1a8a156af3ff684261259ee differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9ffcc00bd56b9e99adc950bc150c5c7e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9ffcc00bd56b9e99adc950bc150c5c7e new file mode 100644 index 00000000..152400c3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/9f/9ffcc00bd56b9e99adc950bc150c5c7e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a017ab06dc7c996249e05b89ce556fb0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a017ab06dc7c996249e05b89ce556fb0 new file mode 100644 index 00000000..f46a8632 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a017ab06dc7c996249e05b89ce556fb0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a03d8421bc157b766f6c8bd2fa40b3f4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a03d8421bc157b766f6c8bd2fa40b3f4 new file mode 100644 index 00000000..6d5797bf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a03d8421bc157b766f6c8bd2fa40b3f4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a04278cf66dc30ba75c5471bc0f87130 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a04278cf66dc30ba75c5471bc0f87130 new file mode 100644 index 00000000..5f92d134 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a04278cf66dc30ba75c5471bc0f87130 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0429382a94fce71418909027246c053 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0429382a94fce71418909027246c053 new file mode 100644 index 00000000..5ccc841c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0429382a94fce71418909027246c053 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a084157d2b389c9e64809c3355444a00 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a084157d2b389c9e64809c3355444a00 new file mode 100644 index 00000000..39d72dfe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a084157d2b389c9e64809c3355444a00 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a089f400448c65dece40054fea48d4e3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a089f400448c65dece40054fea48d4e3 new file mode 100644 index 00000000..e3f3479c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a089f400448c65dece40054fea48d4e3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a092bd22aa693243be6be8cd270bf24b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a092bd22aa693243be6be8cd270bf24b new file mode 100644 index 00000000..6822a1d7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a092bd22aa693243be6be8cd270bf24b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a095a29fa8755e10d9ba89e962c3a3d1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a095a29fa8755e10d9ba89e962c3a3d1 new file mode 100644 index 00000000..734fa525 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a095a29fa8755e10d9ba89e962c3a3d1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a095bea202f4703c0eafd3d31a55301b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a095bea202f4703c0eafd3d31a55301b new file mode 100644 index 00000000..ecd0c23a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a095bea202f4703c0eafd3d31a55301b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0a0d1311dee489d7d7edba093f19161 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0a0d1311dee489d7d7edba093f19161 new file mode 100644 index 00000000..bd5b1027 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0a0d1311dee489d7d7edba093f19161 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0b645c75f102db4df1406f1370beafa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0b645c75f102db4df1406f1370beafa new file mode 100644 index 00000000..f165d819 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0b645c75f102db4df1406f1370beafa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0c81b72f84db23874b14c3b74f65f39 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0c81b72f84db23874b14c3b74f65f39 new file mode 100644 index 00000000..46555141 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0c81b72f84db23874b14c3b74f65f39 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0c84f89daf4c7b3d4f5c67b6fde45a5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0c84f89daf4c7b3d4f5c67b6fde45a5 new file mode 100644 index 00000000..87bb6260 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0c84f89daf4c7b3d4f5c67b6fde45a5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0d55ffdafbfcfb3d4b575abeb088190 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0d55ffdafbfcfb3d4b575abeb088190 new file mode 100644 index 00000000..d6eae2a7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0d55ffdafbfcfb3d4b575abeb088190 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0d7d764f2e83e64334f6e36735fc32c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0d7d764f2e83e64334f6e36735fc32c new file mode 100644 index 00000000..7b670f47 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0d7d764f2e83e64334f6e36735fc32c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0dc8ef2b85af37714fec1ccf7e55839 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0dc8ef2b85af37714fec1ccf7e55839 new file mode 100644 index 00000000..a8c40ff4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0dc8ef2b85af37714fec1ccf7e55839 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0e19781543ca5631807cc8710163208 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0e19781543ca5631807cc8710163208 new file mode 100644 index 00000000..196152d4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a0/a0e19781543ca5631807cc8710163208 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1033f9b17e2ad45ec9c6b4d7d1556af b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1033f9b17e2ad45ec9c6b4d7d1556af new file mode 100644 index 00000000..ee25438f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1033f9b17e2ad45ec9c6b4d7d1556af differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1071d59268561e9968a7074ab56de85 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1071d59268561e9968a7074ab56de85 new file mode 100644 index 00000000..304a1ab5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1071d59268561e9968a7074ab56de85 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a123d79775d4745fdd1e0d25e6a0e5f0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a123d79775d4745fdd1e0d25e6a0e5f0 new file mode 100644 index 00000000..02f27b31 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a123d79775d4745fdd1e0d25e6a0e5f0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a124da4722b7ac0dc1e00545b9a024b4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a124da4722b7ac0dc1e00545b9a024b4 new file mode 100644 index 00000000..0b7926f2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a124da4722b7ac0dc1e00545b9a024b4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a12d1bab1e2f10c00165cbfa4641457a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a12d1bab1e2f10c00165cbfa4641457a new file mode 100644 index 00000000..6ff63b72 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a12d1bab1e2f10c00165cbfa4641457a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a13bd3ea4ef75f0f05c6f9cf1736a0e1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a13bd3ea4ef75f0f05c6f9cf1736a0e1 new file mode 100644 index 00000000..675e4691 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a13bd3ea4ef75f0f05c6f9cf1736a0e1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1452535e7a99beefd8a55fdc89e2c28 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1452535e7a99beefd8a55fdc89e2c28 new file mode 100644 index 00000000..d7033381 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1452535e7a99beefd8a55fdc89e2c28 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a15b8bb933630ed3ce4002d15d07a991 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a15b8bb933630ed3ce4002d15d07a991 new file mode 100644 index 00000000..af2cd265 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a15b8bb933630ed3ce4002d15d07a991 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a15d8ec45cb0f8b57bd7526b8376ec15 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a15d8ec45cb0f8b57bd7526b8376ec15 new file mode 100644 index 00000000..596ab6be Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a15d8ec45cb0f8b57bd7526b8376ec15 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a15e6294b090a2b37f41f85673721ebd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a15e6294b090a2b37f41f85673721ebd new file mode 100644 index 00000000..b9ee5b4c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a15e6294b090a2b37f41f85673721ebd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1bdf01c5abb2a9276df9a80d42423b8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1bdf01c5abb2a9276df9a80d42423b8 new file mode 100644 index 00000000..5308f6a1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1bdf01c5abb2a9276df9a80d42423b8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1da0ac7c3037dd5275876f661168d41 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1da0ac7c3037dd5275876f661168d41 new file mode 100644 index 00000000..fcb0d5aa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1da0ac7c3037dd5275876f661168d41 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1f4ba2568d249981a4751b4c17010cf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1f4ba2568d249981a4751b4c17010cf new file mode 100644 index 00000000..2f0eb18c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a1/a1f4ba2568d249981a4751b4c17010cf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a20230cf7d867216acef68bb5f36922e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a20230cf7d867216acef68bb5f36922e new file mode 100644 index 00000000..160657c2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a20230cf7d867216acef68bb5f36922e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a231bb23bfd62d718213f4bca2af5161 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a231bb23bfd62d718213f4bca2af5161 new file mode 100644 index 00000000..69bf8435 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a231bb23bfd62d718213f4bca2af5161 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2352840037e3c1ccdea423db32d3add b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2352840037e3c1ccdea423db32d3add new file mode 100644 index 00000000..9c44d36a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2352840037e3c1ccdea423db32d3add differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a24906ad98d3cc8ab23aa477067b6cb5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a24906ad98d3cc8ab23aa477067b6cb5 new file mode 100644 index 00000000..24a0b068 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a24906ad98d3cc8ab23aa477067b6cb5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a24fe169d0179f46755b37fcc4c925de b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a24fe169d0179f46755b37fcc4c925de new file mode 100644 index 00000000..4011b983 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a24fe169d0179f46755b37fcc4c925de differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2500dc1fcbf3ea4b9e19a73138e2f67 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2500dc1fcbf3ea4b9e19a73138e2f67 new file mode 100644 index 00000000..f3a01998 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2500dc1fcbf3ea4b9e19a73138e2f67 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a26827842cad0d6a13fdd3c24f808f35 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a26827842cad0d6a13fdd3c24f808f35 new file mode 100644 index 00000000..d3882893 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a26827842cad0d6a13fdd3c24f808f35 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2699a0d8f16656c08a6f38e61750b62 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2699a0d8f16656c08a6f38e61750b62 new file mode 100644 index 00000000..4ca88b74 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2699a0d8f16656c08a6f38e61750b62 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a290e4675f039a3f25fbcf8df724e374 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a290e4675f039a3f25fbcf8df724e374 new file mode 100644 index 00000000..57532b11 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a290e4675f039a3f25fbcf8df724e374 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2a1e9c8799217219bdaee4e4ff653c5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2a1e9c8799217219bdaee4e4ff653c5 new file mode 100644 index 00000000..10dbedce Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2a1e9c8799217219bdaee4e4ff653c5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2b10aa7662fe56bde38f89751e8a8ba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2b10aa7662fe56bde38f89751e8a8ba new file mode 100644 index 00000000..9197fd90 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2b10aa7662fe56bde38f89751e8a8ba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2c9b2c2a8b3ab0940c2065de25232e1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2c9b2c2a8b3ab0940c2065de25232e1 new file mode 100644 index 00000000..d4a74d61 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2c9b2c2a8b3ab0940c2065de25232e1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2e920fafd1270e71b232b0a5aad6e2c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2e920fafd1270e71b232b0a5aad6e2c new file mode 100644 index 00000000..55fd1104 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a2/a2e920fafd1270e71b232b0a5aad6e2c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a30051b0f74265a11637ceca9fc565b0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a30051b0f74265a11637ceca9fc565b0 new file mode 100644 index 00000000..b1f03e2b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a30051b0f74265a11637ceca9fc565b0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a301f4e368dd0a8187451fc31dfd4c3b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a301f4e368dd0a8187451fc31dfd4c3b new file mode 100644 index 00000000..61227c6c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a301f4e368dd0a8187451fc31dfd4c3b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a32be87da0005a9045e5a89e28d8d20b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a32be87da0005a9045e5a89e28d8d20b new file mode 100644 index 00000000..48dac6d0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a32be87da0005a9045e5a89e28d8d20b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a32beffe9fc2b830ab431111043f1681 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a32beffe9fc2b830ab431111043f1681 new file mode 100644 index 00000000..9e05f814 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a32beffe9fc2b830ab431111043f1681 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a32e69752937220a434890caaebbc887 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a32e69752937220a434890caaebbc887 new file mode 100644 index 00000000..345a4cb2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a32e69752937220a434890caaebbc887 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a33b5a0c614430d9b456ae12fe03d91b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a33b5a0c614430d9b456ae12fe03d91b new file mode 100644 index 00000000..7a9c2155 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a33b5a0c614430d9b456ae12fe03d91b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a358462b24bc678680d8ec1c23818054 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a358462b24bc678680d8ec1c23818054 new file mode 100644 index 00000000..163abbd6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a358462b24bc678680d8ec1c23818054 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a35b6cfd2f960fa0d8563712729bb3af b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a35b6cfd2f960fa0d8563712729bb3af new file mode 100644 index 00000000..2766c425 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a35b6cfd2f960fa0d8563712729bb3af differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3645e46782057317527601102c55728 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3645e46782057317527601102c55728 new file mode 100644 index 00000000..92cc6961 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3645e46782057317527601102c55728 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a383edf3e7a1fb0ebc14b4633c78b99c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a383edf3e7a1fb0ebc14b4633c78b99c new file mode 100644 index 00000000..0d5c8999 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a383edf3e7a1fb0ebc14b4633c78b99c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a396195083675cd4d093e8b0607b0ac9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a396195083675cd4d093e8b0607b0ac9 new file mode 100644 index 00000000..964ad2de Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a396195083675cd4d093e8b0607b0ac9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3acd4ca41ecfb00155c8344baa4df24 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3acd4ca41ecfb00155c8344baa4df24 new file mode 100644 index 00000000..ae219794 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3acd4ca41ecfb00155c8344baa4df24 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3b596a4448ca4f86d26a918a8583d81 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3b596a4448ca4f86d26a918a8583d81 new file mode 100644 index 00000000..7c6bfb31 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3b596a4448ca4f86d26a918a8583d81 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3bc2fb3b943c21208199557e1510753 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3bc2fb3b943c21208199557e1510753 new file mode 100644 index 00000000..3e71ec2b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3bc2fb3b943c21208199557e1510753 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3cb8036db7eddbcead5a88c4e65d528 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3cb8036db7eddbcead5a88c4e65d528 new file mode 100644 index 00000000..7638447b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3cb8036db7eddbcead5a88c4e65d528 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3d9394a9962f66cf3697ef5184984cb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3d9394a9962f66cf3697ef5184984cb new file mode 100644 index 00000000..30cf6c9c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a3/a3d9394a9962f66cf3697ef5184984cb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a439ac1cbd3edb8a7afb123165305428 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a439ac1cbd3edb8a7afb123165305428 new file mode 100644 index 00000000..2586aaaf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a439ac1cbd3edb8a7afb123165305428 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a44453d6469ea8cdc4b83420a6970e7a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a44453d6469ea8cdc4b83420a6970e7a new file mode 100644 index 00000000..f9be4218 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a44453d6469ea8cdc4b83420a6970e7a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a450c9996f61d0d4c7f066a68254c913 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a450c9996f61d0d4c7f066a68254c913 new file mode 100644 index 00000000..d30ca68a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a450c9996f61d0d4c7f066a68254c913 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a47c66be9f374200909d85531d40240f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a47c66be9f374200909d85531d40240f new file mode 100644 index 00000000..efba3b5e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a47c66be9f374200909d85531d40240f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a47ef61a9944f5ca3b5bdce3635a22fd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a47ef61a9944f5ca3b5bdce3635a22fd new file mode 100644 index 00000000..9cb665d5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a47ef61a9944f5ca3b5bdce3635a22fd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4b0534838e1a2e51042f7afd65aea9a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4b0534838e1a2e51042f7afd65aea9a new file mode 100644 index 00000000..3e4532b3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4b0534838e1a2e51042f7afd65aea9a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4b3dc322e8976bd95b9b48a66d13fc8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4b3dc322e8976bd95b9b48a66d13fc8 new file mode 100644 index 00000000..7428aa2d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4b3dc322e8976bd95b9b48a66d13fc8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4c1866b972e512e2425bd6e03d96bab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4c1866b972e512e2425bd6e03d96bab new file mode 100644 index 00000000..03109e22 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4c1866b972e512e2425bd6e03d96bab differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4cd570724e14709a8c0bb5358899beb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4cd570724e14709a8c0bb5358899beb new file mode 100644 index 00000000..a75a851a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4cd570724e14709a8c0bb5358899beb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4d7019f9861531dd45c4aec2850aca8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4d7019f9861531dd45c4aec2850aca8 new file mode 100644 index 00000000..228c5809 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4d7019f9861531dd45c4aec2850aca8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4e1a126868323a39bab2916790ed576 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4e1a126868323a39bab2916790ed576 new file mode 100644 index 00000000..410df65b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4e1a126868323a39bab2916790ed576 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4e478c51dad0a6c3953369accf0e263 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4e478c51dad0a6c3953369accf0e263 new file mode 100644 index 00000000..2f9800dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4e478c51dad0a6c3953369accf0e263 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4e6c9728d6037f8f2d5ad3b29013b3e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4e6c9728d6037f8f2d5ad3b29013b3e new file mode 100644 index 00000000..4bdb2222 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a4/a4e6c9728d6037f8f2d5ad3b29013b3e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a51f25dfefda6f31ae7f4def49fde697 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a51f25dfefda6f31ae7f4def49fde697 new file mode 100644 index 00000000..1b26a060 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a51f25dfefda6f31ae7f4def49fde697 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a52ce862e375ac610e208d41c7205032 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a52ce862e375ac610e208d41c7205032 new file mode 100644 index 00000000..46795466 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a52ce862e375ac610e208d41c7205032 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5311c26d5a65b298cf8981df62016e3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5311c26d5a65b298cf8981df62016e3 new file mode 100644 index 00000000..816587e3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5311c26d5a65b298cf8981df62016e3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a53f3fe52ebf8a5111a7a22052122625 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a53f3fe52ebf8a5111a7a22052122625 new file mode 100644 index 00000000..39847780 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a53f3fe52ebf8a5111a7a22052122625 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a542766b6f240f3e04a89de6b37aa48e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a542766b6f240f3e04a89de6b37aa48e new file mode 100644 index 00000000..4b3dd236 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a542766b6f240f3e04a89de6b37aa48e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a54a80c586fcf628ede374a9bf5304a9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a54a80c586fcf628ede374a9bf5304a9 new file mode 100644 index 00000000..85eac54d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a54a80c586fcf628ede374a9bf5304a9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a555383f82734fea8dfee458972edd70 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a555383f82734fea8dfee458972edd70 new file mode 100644 index 00000000..5fe3d1ee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a555383f82734fea8dfee458972edd70 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5636ab214a63c20bcdcf5a2a60a222c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5636ab214a63c20bcdcf5a2a60a222c new file mode 100644 index 00000000..cb36bb3f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5636ab214a63c20bcdcf5a2a60a222c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a58d1c525b0fb9f36b7894f498e3cdca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a58d1c525b0fb9f36b7894f498e3cdca new file mode 100644 index 00000000..4f95a8d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a58d1c525b0fb9f36b7894f498e3cdca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a58e44284fccd8bacb43ea240fe658b5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a58e44284fccd8bacb43ea240fe658b5 new file mode 100644 index 00000000..bad9b7ff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a58e44284fccd8bacb43ea240fe658b5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a598a0c6960e6d5c6700ce8ab33f0af2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a598a0c6960e6d5c6700ce8ab33f0af2 new file mode 100644 index 00000000..9381b73d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a598a0c6960e6d5c6700ce8ab33f0af2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5a80040edf6881f6d9392b123213c5c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5a80040edf6881f6d9392b123213c5c new file mode 100644 index 00000000..53e3b270 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5a80040edf6881f6d9392b123213c5c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5aaf8f7c29e1d4b2f8ca70bf1319535 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5aaf8f7c29e1d4b2f8ca70bf1319535 new file mode 100644 index 00000000..7b1cef6c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5aaf8f7c29e1d4b2f8ca70bf1319535 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5e123f68e67f5dd5a3debc1d1cb0c12 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5e123f68e67f5dd5a3debc1d1cb0c12 new file mode 100644 index 00000000..d5ec5abc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5e123f68e67f5dd5a3debc1d1cb0c12 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5eb85c1264a9aa1dab4af26b20df01b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5eb85c1264a9aa1dab4af26b20df01b new file mode 100644 index 00000000..6bd6b4ba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5eb85c1264a9aa1dab4af26b20df01b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5fb224078a9ab95a0979018db66c126 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5fb224078a9ab95a0979018db66c126 new file mode 100644 index 00000000..ab4b04a4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a5/a5fb224078a9ab95a0979018db66c126 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a62817710baa839b8b12ae36c8b8e641 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a62817710baa839b8b12ae36c8b8e641 new file mode 100644 index 00000000..5bec5183 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a62817710baa839b8b12ae36c8b8e641 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a629ad1e5163908b2b214c61d8538e14 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a629ad1e5163908b2b214c61d8538e14 new file mode 100644 index 00000000..27a4e4f9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a629ad1e5163908b2b214c61d8538e14 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6555a335c86b19bd16b1ae3806ce833 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6555a335c86b19bd16b1ae3806ce833 new file mode 100644 index 00000000..e1c96ecf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6555a335c86b19bd16b1ae3806ce833 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a669ab3bacd3b6b48bda850de813a2ff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a669ab3bacd3b6b48bda850de813a2ff new file mode 100644 index 00000000..f2aa2ba7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a669ab3bacd3b6b48bda850de813a2ff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a66b14b30252d4e7882ca7d7b6c3def1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a66b14b30252d4e7882ca7d7b6c3def1 new file mode 100644 index 00000000..4966c390 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a66b14b30252d4e7882ca7d7b6c3def1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a677e9c0c8ff864c1c285fee1d46dad8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a677e9c0c8ff864c1c285fee1d46dad8 new file mode 100644 index 00000000..19fd66ea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a677e9c0c8ff864c1c285fee1d46dad8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a67b671ff4fb0fe3ebf82b4cd438d6f7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a67b671ff4fb0fe3ebf82b4cd438d6f7 new file mode 100644 index 00000000..939bf0ab Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a67b671ff4fb0fe3ebf82b4cd438d6f7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6981c07c93fc23c0e8b03d839781fb5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6981c07c93fc23c0e8b03d839781fb5 new file mode 100644 index 00000000..1f7dae29 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6981c07c93fc23c0e8b03d839781fb5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6b5ccb3e8975d619ab8fad62a6cf440 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6b5ccb3e8975d619ab8fad62a6cf440 new file mode 100644 index 00000000..aee1282a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6b5ccb3e8975d619ab8fad62a6cf440 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6bc44b5a950949d4edaacf3cfca81bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6bc44b5a950949d4edaacf3cfca81bc new file mode 100644 index 00000000..2a0d28ee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6bc44b5a950949d4edaacf3cfca81bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6e1ef62b78a550e400138af60d44f46 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6e1ef62b78a550e400138af60d44f46 new file mode 100644 index 00000000..e05cf666 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a6/a6e1ef62b78a550e400138af60d44f46 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a702ffc2974702d99ca0d7ac047b6a7e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a702ffc2974702d99ca0d7ac047b6a7e new file mode 100644 index 00000000..15bbda2d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a702ffc2974702d99ca0d7ac047b6a7e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a704c31421c7020ebb7adb58970a4735 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a704c31421c7020ebb7adb58970a4735 new file mode 100644 index 00000000..ebe7bece Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a704c31421c7020ebb7adb58970a4735 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a744458fa62cacb6344e7cb7aa5b8fbb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a744458fa62cacb6344e7cb7aa5b8fbb new file mode 100644 index 00000000..119b29ae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a744458fa62cacb6344e7cb7aa5b8fbb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a747041c9f4038a736e07badc6cb34b1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a747041c9f4038a736e07badc6cb34b1 new file mode 100644 index 00000000..b292b2fa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a747041c9f4038a736e07badc6cb34b1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a75a361f0b949e4d081d70a4f25aeaef b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a75a361f0b949e4d081d70a4f25aeaef new file mode 100644 index 00000000..c618c456 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a75a361f0b949e4d081d70a4f25aeaef differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a78a6b16ab8a37eebfb4b1569c1baf45 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a78a6b16ab8a37eebfb4b1569c1baf45 new file mode 100644 index 00000000..44e3c9c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a78a6b16ab8a37eebfb4b1569c1baf45 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7a1c534c6ef61867949b90e9ec73151 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7a1c534c6ef61867949b90e9ec73151 new file mode 100644 index 00000000..8429ec40 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7a1c534c6ef61867949b90e9ec73151 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7a5796fab1f56da157a00d78e271c67 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7a5796fab1f56da157a00d78e271c67 new file mode 100644 index 00000000..da47c684 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7a5796fab1f56da157a00d78e271c67 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7b0a45897d3fca3de74fd878467e9b6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7b0a45897d3fca3de74fd878467e9b6 new file mode 100644 index 00000000..cf0d6c4d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7b0a45897d3fca3de74fd878467e9b6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7b2a75dcb7871bd6e1411d90d98cdeb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7b2a75dcb7871bd6e1411d90d98cdeb new file mode 100644 index 00000000..86f23f64 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7b2a75dcb7871bd6e1411d90d98cdeb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7bf59f7262dd0627e9963fb729e186a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7bf59f7262dd0627e9963fb729e186a new file mode 100644 index 00000000..a0459c6f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7bf59f7262dd0627e9963fb729e186a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7d9e052b163de97fa6d3cdc403ee67a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7d9e052b163de97fa6d3cdc403ee67a new file mode 100644 index 00000000..3864b1e0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7d9e052b163de97fa6d3cdc403ee67a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7ef0f319a96c2baac2c49654c5948b0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7ef0f319a96c2baac2c49654c5948b0 new file mode 100644 index 00000000..a3617d4f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7ef0f319a96c2baac2c49654c5948b0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7f18db9a4e30e6d2a549ccdc7f1b604 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7f18db9a4e30e6d2a549ccdc7f1b604 new file mode 100644 index 00000000..d5727d89 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a7/a7f18db9a4e30e6d2a549ccdc7f1b604 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a80b3dbc206215eb27a0012ba68b94b2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a80b3dbc206215eb27a0012ba68b94b2 new file mode 100644 index 00000000..cf2ed720 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a80b3dbc206215eb27a0012ba68b94b2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a830d9210c2e64d8e8df80424b8bcff7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a830d9210c2e64d8e8df80424b8bcff7 new file mode 100644 index 00000000..dfaf4038 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a830d9210c2e64d8e8df80424b8bcff7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a85651b8774a78ef79edcd06fe5d0576 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a85651b8774a78ef79edcd06fe5d0576 new file mode 100644 index 00000000..d7476415 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a85651b8774a78ef79edcd06fe5d0576 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8652f2e0be5fd076c85456f61fbab43 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8652f2e0be5fd076c85456f61fbab43 new file mode 100644 index 00000000..ea157d14 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8652f2e0be5fd076c85456f61fbab43 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8752a4d9aeba680acc0a252cd7a7525 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8752a4d9aeba680acc0a252cd7a7525 new file mode 100644 index 00000000..db76e148 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8752a4d9aeba680acc0a252cd7a7525 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a87a2b74aee425bfc38af9e9be5e567b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a87a2b74aee425bfc38af9e9be5e567b new file mode 100644 index 00000000..5570c7d5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a87a2b74aee425bfc38af9e9be5e567b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a89a48c41585022f955ee6522c180b56 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a89a48c41585022f955ee6522c180b56 new file mode 100644 index 00000000..2f29cd37 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a89a48c41585022f955ee6522c180b56 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8b13cf8cb5fe2de00b6a527ada3c3ca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8b13cf8cb5fe2de00b6a527ada3c3ca new file mode 100644 index 00000000..979afa4b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8b13cf8cb5fe2de00b6a527ada3c3ca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8c74aabfbb76dc49118491a42f4cec6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8c74aabfbb76dc49118491a42f4cec6 new file mode 100644 index 00000000..7f82c29f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8c74aabfbb76dc49118491a42f4cec6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8cf7c5f594621d6e17b551b862cbca3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8cf7c5f594621d6e17b551b862cbca3 new file mode 100644 index 00000000..36583196 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8cf7c5f594621d6e17b551b862cbca3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8dfc0219652f25ba8fb1b923d4bd8f3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8dfc0219652f25ba8fb1b923d4bd8f3 new file mode 100644 index 00000000..9dec0601 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8dfc0219652f25ba8fb1b923d4bd8f3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8f58e6d967e586d56a3278b0313cccd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8f58e6d967e586d56a3278b0313cccd new file mode 100644 index 00000000..2c985b15 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a8/a8f58e6d967e586d56a3278b0313cccd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a918ccc27c65d686fecde92a1a04d6f5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a918ccc27c65d686fecde92a1a04d6f5 new file mode 100644 index 00000000..d63e5e22 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a918ccc27c65d686fecde92a1a04d6f5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a91b2709d8e4c69bd9542f1d74821676 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a91b2709d8e4c69bd9542f1d74821676 new file mode 100644 index 00000000..6d96eb6f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a91b2709d8e4c69bd9542f1d74821676 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a92c0c85393d2a29e35658836db60247 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a92c0c85393d2a29e35658836db60247 new file mode 100644 index 00000000..c9858665 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a92c0c85393d2a29e35658836db60247 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a93be273b023820c9ca29443818f508b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a93be273b023820c9ca29443818f508b new file mode 100644 index 00000000..18007340 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a93be273b023820c9ca29443818f508b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9505e68408d0ff58a2dd20125749d40 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9505e68408d0ff58a2dd20125749d40 new file mode 100644 index 00000000..2de740d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9505e68408d0ff58a2dd20125749d40 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a95f654df7677c2fb1a56acb3db8b862 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a95f654df7677c2fb1a56acb3db8b862 new file mode 100644 index 00000000..32ba3670 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a95f654df7677c2fb1a56acb3db8b862 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a97112711dce2a3de2f0dea16ab12476 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a97112711dce2a3de2f0dea16ab12476 new file mode 100644 index 00000000..21982beb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a97112711dce2a3de2f0dea16ab12476 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a976a61e3ac6de0d786cf51be6cfc953 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a976a61e3ac6de0d786cf51be6cfc953 new file mode 100644 index 00000000..353e968f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a976a61e3ac6de0d786cf51be6cfc953 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9789716d86a2ca2767b01119828c6b0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9789716d86a2ca2767b01119828c6b0 new file mode 100644 index 00000000..b5b6153d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9789716d86a2ca2767b01119828c6b0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a97c012b1d7d4f991fb834d6a51b4324 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a97c012b1d7d4f991fb834d6a51b4324 new file mode 100644 index 00000000..1471fc68 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a97c012b1d7d4f991fb834d6a51b4324 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9a295871a5962145d16e2a61afa1e89 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9a295871a5962145d16e2a61afa1e89 new file mode 100644 index 00000000..bfa11fbc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9a295871a5962145d16e2a61afa1e89 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9b528a873e97c1721d32ce124893c81 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9b528a873e97c1721d32ce124893c81 new file mode 100644 index 00000000..d74ad11a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9b528a873e97c1721d32ce124893c81 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9b6a52573a09647cd5a1c11f787b18a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9b6a52573a09647cd5a1c11f787b18a new file mode 100644 index 00000000..34328eb3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9b6a52573a09647cd5a1c11f787b18a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9d468ab28b59baba0bc4c8dcfbb42e1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9d468ab28b59baba0bc4c8dcfbb42e1 new file mode 100644 index 00000000..1ed221fb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9d468ab28b59baba0bc4c8dcfbb42e1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9d50270723151e2f6c200d5bf92b562 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9d50270723151e2f6c200d5bf92b562 new file mode 100644 index 00000000..d93e4081 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9d50270723151e2f6c200d5bf92b562 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9d59a6be4224a9e0e0283612073fdf9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9d59a6be4224a9e0e0283612073fdf9 new file mode 100644 index 00000000..63c59eaa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9d59a6be4224a9e0e0283612073fdf9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9d9b772c8fe33190bfa96d1a4141d43 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9d9b772c8fe33190bfa96d1a4141d43 new file mode 100644 index 00000000..5510ab0f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9d9b772c8fe33190bfa96d1a4141d43 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9e3b3dbaab920cd02b112a7d981a011 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9e3b3dbaab920cd02b112a7d981a011 new file mode 100644 index 00000000..aaa4bea6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9e3b3dbaab920cd02b112a7d981a011 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9e959caa40d7c1e9e92787301cfe897 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9e959caa40d7c1e9e92787301cfe897 new file mode 100644 index 00000000..a6d1b69b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9e959caa40d7c1e9e92787301cfe897 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9fcbb5357a86951c5565bc6412ab54e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9fcbb5357a86951c5565bc6412ab54e new file mode 100644 index 00000000..8b33facd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/a9/a9fcbb5357a86951c5565bc6412ab54e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa1725dc9705a6837180ff2890fd83a8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa1725dc9705a6837180ff2890fd83a8 new file mode 100644 index 00000000..b6f452f4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa1725dc9705a6837180ff2890fd83a8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa2272a7a5637c7b8d8ef0fd19da3ed0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa2272a7a5637c7b8d8ef0fd19da3ed0 new file mode 100644 index 00000000..5c285dbc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa2272a7a5637c7b8d8ef0fd19da3ed0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa283533b2b9ade4c975187b019a8fd1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa283533b2b9ade4c975187b019a8fd1 new file mode 100644 index 00000000..55967b17 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa283533b2b9ade4c975187b019a8fd1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa33e31bc01a98c322e8ddb1c3a191ca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa33e31bc01a98c322e8ddb1c3a191ca new file mode 100644 index 00000000..c885901f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa33e31bc01a98c322e8ddb1c3a191ca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa38872ccb6844f9ec6790ae287d440d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa38872ccb6844f9ec6790ae287d440d new file mode 100644 index 00000000..6b6b4617 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa38872ccb6844f9ec6790ae287d440d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa396d6cff36b20a77b7e0a1d5652384 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa396d6cff36b20a77b7e0a1d5652384 new file mode 100644 index 00000000..e0399bb9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa396d6cff36b20a77b7e0a1d5652384 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa397b60865a0bcbfc9d04865c794be6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa397b60865a0bcbfc9d04865c794be6 new file mode 100644 index 00000000..84e2665a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa397b60865a0bcbfc9d04865c794be6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa616f99e51dc4cd270b971f4134b159 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa616f99e51dc4cd270b971f4134b159 new file mode 100644 index 00000000..d19ee26b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa616f99e51dc4cd270b971f4134b159 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa65136753ee0637cb948ac33506b8bf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa65136753ee0637cb948ac33506b8bf new file mode 100644 index 00000000..83f71bf7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa65136753ee0637cb948ac33506b8bf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa9c99999623ed16bfabf187f057ce43 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa9c99999623ed16bfabf187f057ce43 new file mode 100644 index 00000000..da8e7cff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aa9c99999623ed16bfabf187f057ce43 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aacc88ea4ed23c5ea4d36004c7251dbd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aacc88ea4ed23c5ea4d36004c7251dbd new file mode 100644 index 00000000..928660e0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aacc88ea4ed23c5ea4d36004c7251dbd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aad220e7f86f28d0231d91075d4b841b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aad220e7f86f28d0231d91075d4b841b new file mode 100644 index 00000000..e932379e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aad220e7f86f28d0231d91075d4b841b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aad307a176a955796bd4be3316014d36 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aad307a176a955796bd4be3316014d36 new file mode 100644 index 00000000..b6516f4f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aad307a176a955796bd4be3316014d36 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aafe20a3ff7f19fc11123b93e3fce7ec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aafe20a3ff7f19fc11123b93e3fce7ec new file mode 100644 index 00000000..c9f01223 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/aa/aafe20a3ff7f19fc11123b93e3fce7ec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab2713ec38bba5c97b99aaf87a9cd41d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab2713ec38bba5c97b99aaf87a9cd41d new file mode 100644 index 00000000..da3e0379 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab2713ec38bba5c97b99aaf87a9cd41d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab27530c221a7e6208896af958a0247b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab27530c221a7e6208896af958a0247b new file mode 100644 index 00000000..d378dc89 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab27530c221a7e6208896af958a0247b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab30db65145970361017197e564a6b8d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab30db65145970361017197e564a6b8d new file mode 100644 index 00000000..423e253e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab30db65145970361017197e564a6b8d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab5038496ad866f4054677ff848e15b9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab5038496ad866f4054677ff848e15b9 new file mode 100644 index 00000000..2709686d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab5038496ad866f4054677ff848e15b9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab598300738654b6539d560ce3f2e829 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab598300738654b6539d560ce3f2e829 new file mode 100644 index 00000000..a4575a10 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab598300738654b6539d560ce3f2e829 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab5cc5e1e02c0a53f4af903df550e220 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab5cc5e1e02c0a53f4af903df550e220 new file mode 100644 index 00000000..c666f8a6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab5cc5e1e02c0a53f4af903df550e220 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab77601e88c635a12df1f4e48d986ad5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab77601e88c635a12df1f4e48d986ad5 new file mode 100644 index 00000000..fb2ff6ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab77601e88c635a12df1f4e48d986ad5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab7d57682eff1b5a6a14ccdeff57e5fa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab7d57682eff1b5a6a14ccdeff57e5fa new file mode 100644 index 00000000..e1c5a3ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab7d57682eff1b5a6a14ccdeff57e5fa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab85398a9e8b2351bfea76b9ae23f123 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab85398a9e8b2351bfea76b9ae23f123 new file mode 100644 index 00000000..39af1aa6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/ab85398a9e8b2351bfea76b9ae23f123 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abbd615f6d345e38eefa5b7aca986996 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abbd615f6d345e38eefa5b7aca986996 new file mode 100644 index 00000000..056e7159 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abbd615f6d345e38eefa5b7aca986996 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abc082dfe2a423310aabeca433222123 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abc082dfe2a423310aabeca433222123 new file mode 100644 index 00000000..b4a8e576 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abc082dfe2a423310aabeca433222123 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abcd55e28d6888dd2e7c07ad85d58f75 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abcd55e28d6888dd2e7c07ad85d58f75 new file mode 100644 index 00000000..62423336 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abcd55e28d6888dd2e7c07ad85d58f75 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abe87ba8eec07098c003def3d3f8ab7d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abe87ba8eec07098c003def3d3f8ab7d new file mode 100644 index 00000000..e6ce6feb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abe87ba8eec07098c003def3d3f8ab7d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abe8da1ac6084ddb6c5e19305e0cb525 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abe8da1ac6084ddb6c5e19305e0cb525 new file mode 100644 index 00000000..beac8232 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abe8da1ac6084ddb6c5e19305e0cb525 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abfbcf5ad9872d0bd5f6f9880df86079 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abfbcf5ad9872d0bd5f6f9880df86079 new file mode 100644 index 00000000..44368156 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ab/abfbcf5ad9872d0bd5f6f9880df86079 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac2d2e94257de9d9f09407ca69a206a2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac2d2e94257de9d9f09407ca69a206a2 new file mode 100644 index 00000000..6c529059 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac2d2e94257de9d9f09407ca69a206a2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac2f799e1ffa211479059cff16b7fd35 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac2f799e1ffa211479059cff16b7fd35 new file mode 100644 index 00000000..6c48ea8d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac2f799e1ffa211479059cff16b7fd35 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac319a053228892881d588a62141fea9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac319a053228892881d588a62141fea9 new file mode 100644 index 00000000..f53fa8d5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac319a053228892881d588a62141fea9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac669874aa1f5afa09bf692b6347a49c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac669874aa1f5afa09bf692b6347a49c new file mode 100644 index 00000000..ad6902eb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac669874aa1f5afa09bf692b6347a49c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac67abb0046633c34d0869185fdaa23a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac67abb0046633c34d0869185fdaa23a new file mode 100644 index 00000000..09c8d823 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac67abb0046633c34d0869185fdaa23a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac86f31d0cab01a61ffc172621d8899c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac86f31d0cab01a61ffc172621d8899c new file mode 100644 index 00000000..0e6ed917 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac86f31d0cab01a61ffc172621d8899c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac8d98e07a355c1039ceaa7298be1c18 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac8d98e07a355c1039ceaa7298be1c18 new file mode 100644 index 00000000..1039d9f0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ac8d98e07a355c1039ceaa7298be1c18 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/aca74f53407a9d0c33128c6065d68b65 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/aca74f53407a9d0c33128c6065d68b65 new file mode 100644 index 00000000..5a509715 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/aca74f53407a9d0c33128c6065d68b65 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/acbb05cf8b7791f8ff2e17e7af07c749 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/acbb05cf8b7791f8ff2e17e7af07c749 new file mode 100644 index 00000000..05fcf52c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/acbb05cf8b7791f8ff2e17e7af07c749 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/acc140a700e0d9e496ee2db3b68f9f59 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/acc140a700e0d9e496ee2db3b68f9f59 new file mode 100644 index 00000000..c7b9dadf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/acc140a700e0d9e496ee2db3b68f9f59 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ace8ded40fe256d8313d1c026a4f0e75 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ace8ded40fe256d8313d1c026a4f0e75 new file mode 100644 index 00000000..c8d212d0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ac/ace8ded40fe256d8313d1c026a4f0e75 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad0a415b567df0ddd2b72b23fcf40738 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad0a415b567df0ddd2b72b23fcf40738 new file mode 100644 index 00000000..5a4bb13d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad0a415b567df0ddd2b72b23fcf40738 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad10426477b5c82387ee73d3a9b55afa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad10426477b5c82387ee73d3a9b55afa new file mode 100644 index 00000000..06bd12de Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad10426477b5c82387ee73d3a9b55afa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad16b45f52c1541f1b313cd77e68a55e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad16b45f52c1541f1b313cd77e68a55e new file mode 100644 index 00000000..03ac7d39 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad16b45f52c1541f1b313cd77e68a55e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad1a129440f3377b8ef761aee724f1ea b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad1a129440f3377b8ef761aee724f1ea new file mode 100644 index 00000000..7b9432c1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad1a129440f3377b8ef761aee724f1ea differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad61935e1ee907e036bc4c0922c4eebc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad61935e1ee907e036bc4c0922c4eebc new file mode 100644 index 00000000..020b2924 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad61935e1ee907e036bc4c0922c4eebc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad713a80218087f7aae260b5bec4cba7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad713a80218087f7aae260b5bec4cba7 new file mode 100644 index 00000000..c5f49d55 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad713a80218087f7aae260b5bec4cba7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad87a1d492c84b65a8eb2c0f603c2b89 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad87a1d492c84b65a8eb2c0f603c2b89 new file mode 100644 index 00000000..f8c2c50d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ad87a1d492c84b65a8eb2c0f603c2b89 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/adcd4a2a7791de6b7855453931ca0f49 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/adcd4a2a7791de6b7855453931ca0f49 new file mode 100644 index 00000000..064fd600 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/adcd4a2a7791de6b7855453931ca0f49 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ade1468c13c04beefac79461d0ade634 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ade1468c13c04beefac79461d0ade634 new file mode 100644 index 00000000..7b4813a4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ade1468c13c04beefac79461d0ade634 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ade29fcf89b5d4e8994ec5631d54d917 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ade29fcf89b5d4e8994ec5631d54d917 new file mode 100644 index 00000000..64acb185 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/ade29fcf89b5d4e8994ec5631d54d917 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/adf4ddd09245191c5f66ff45fe5933cf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/adf4ddd09245191c5f66ff45fe5933cf new file mode 100644 index 00000000..475dfc15 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ad/adf4ddd09245191c5f66ff45fe5933cf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae1d4df2a38a30e7ed06e129594b1d2b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae1d4df2a38a30e7ed06e129594b1d2b new file mode 100644 index 00000000..2c9d7395 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae1d4df2a38a30e7ed06e129594b1d2b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae24d8e4b47d7cda19c59875192f186b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae24d8e4b47d7cda19c59875192f186b new file mode 100644 index 00000000..705d1fb4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae24d8e4b47d7cda19c59875192f186b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae41c54e68d873c49f1fb25c9c17a476 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae41c54e68d873c49f1fb25c9c17a476 new file mode 100644 index 00000000..a9c8588f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae41c54e68d873c49f1fb25c9c17a476 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae6a1c70c66a8eb9f7a54bcd31d78a5d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae6a1c70c66a8eb9f7a54bcd31d78a5d new file mode 100644 index 00000000..d872c70f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae6a1c70c66a8eb9f7a54bcd31d78a5d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae72d5d98a9c829f3e53b0591c9c7935 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae72d5d98a9c829f3e53b0591c9c7935 new file mode 100644 index 00000000..89a2a57f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae72d5d98a9c829f3e53b0591c9c7935 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae73ca1e1a4a06597623f37449699274 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae73ca1e1a4a06597623f37449699274 new file mode 100644 index 00000000..ee6b195e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae73ca1e1a4a06597623f37449699274 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae86eef2574666466cdf172e11f67bd2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae86eef2574666466cdf172e11f67bd2 new file mode 100644 index 00000000..78ffa67a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae86eef2574666466cdf172e11f67bd2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae86f0a8a94c9d782b2156475aa474c5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae86f0a8a94c9d782b2156475aa474c5 new file mode 100644 index 00000000..c421deec Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae86f0a8a94c9d782b2156475aa474c5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae8f5bcaf1b91e56abaa2c55a4d38aa6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae8f5bcaf1b91e56abaa2c55a4d38aa6 new file mode 100644 index 00000000..f5c4997e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae8f5bcaf1b91e56abaa2c55a4d38aa6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae94885c86fe8a44ce553fa11bf8a41e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae94885c86fe8a44ce553fa11bf8a41e new file mode 100644 index 00000000..8faedbc2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae94885c86fe8a44ce553fa11bf8a41e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae97e75f5f781b44ada6d0e6e2541b91 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae97e75f5f781b44ada6d0e6e2541b91 new file mode 100644 index 00000000..58ccdfff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/ae97e75f5f781b44ada6d0e6e2541b91 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/aea5f45e2e7e6d70277171456adf9d0b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/aea5f45e2e7e6d70277171456adf9d0b new file mode 100644 index 00000000..a0c9f417 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/aea5f45e2e7e6d70277171456adf9d0b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/aeb1000332606963375866e7e493fa1e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/aeb1000332606963375866e7e493fa1e new file mode 100644 index 00000000..1a0fe194 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/aeb1000332606963375866e7e493fa1e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/aec6ec9c618b4151af72530cc8f04500 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/aec6ec9c618b4151af72530cc8f04500 new file mode 100644 index 00000000..a9eb669e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/aec6ec9c618b4151af72530cc8f04500 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/aef28aa50c1689fd597e134ae1c90966 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/aef28aa50c1689fd597e134ae1c90966 new file mode 100644 index 00000000..a2238236 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ae/aef28aa50c1689fd597e134ae1c90966 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af076412b33fc3839296813e81e8c2d5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af076412b33fc3839296813e81e8c2d5 new file mode 100644 index 00000000..8bab2e0c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af076412b33fc3839296813e81e8c2d5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af0e1427e83c2d0619be3c2e97759ef2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af0e1427e83c2d0619be3c2e97759ef2 new file mode 100644 index 00000000..622f1422 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af0e1427e83c2d0619be3c2e97759ef2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af1fb5a8d48a7098494c64563e427851 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af1fb5a8d48a7098494c64563e427851 new file mode 100644 index 00000000..2a682401 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af1fb5a8d48a7098494c64563e427851 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af263e9dda961ebd7d71024fed10d2c1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af263e9dda961ebd7d71024fed10d2c1 new file mode 100644 index 00000000..0dad6501 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af263e9dda961ebd7d71024fed10d2c1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af8ad1ec224b3b1918d3e0ceffbbc4c1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af8ad1ec224b3b1918d3e0ceffbbc4c1 new file mode 100644 index 00000000..9493e6d9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af8ad1ec224b3b1918d3e0ceffbbc4c1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af9ae2df4cad0ead7506c027a8196de3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af9ae2df4cad0ead7506c027a8196de3 new file mode 100644 index 00000000..e36dbcf9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af9ae2df4cad0ead7506c027a8196de3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af9bf96121b2a52668638bd236359cae b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af9bf96121b2a52668638bd236359cae new file mode 100644 index 00000000..ff2c4157 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/af9bf96121b2a52668638bd236359cae differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/afac0b081364db05e9f429b70cbf5a48 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/afac0b081364db05e9f429b70cbf5a48 new file mode 100644 index 00000000..dfda2682 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/afac0b081364db05e9f429b70cbf5a48 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/afdfe72988d29f3d9d5093916026d6bf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/afdfe72988d29f3d9d5093916026d6bf new file mode 100644 index 00000000..ee50e19d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/afdfe72988d29f3d9d5093916026d6bf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/aff1d3b683965d423781632e77419c0a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/aff1d3b683965d423781632e77419c0a new file mode 100644 index 00000000..ae82d5b7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/af/aff1d3b683965d423781632e77419c0a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0009d0557cfd883282713e61463c255 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0009d0557cfd883282713e61463c255 new file mode 100644 index 00000000..69380ac8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0009d0557cfd883282713e61463c255 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0049c0157d4056a0889cf5f0e91c647 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0049c0157d4056a0889cf5f0e91c647 new file mode 100644 index 00000000..7f3008af Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0049c0157d4056a0889cf5f0e91c647 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b02e629321b4cb8a61c380f2d6e8d7cc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b02e629321b4cb8a61c380f2d6e8d7cc new file mode 100644 index 00000000..f3e67068 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b02e629321b4cb8a61c380f2d6e8d7cc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b058bc862d5f4538707951ebaf5fcf5a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b058bc862d5f4538707951ebaf5fcf5a new file mode 100644 index 00000000..2df5b99f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b058bc862d5f4538707951ebaf5fcf5a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b05f725c46268853b7cb38b9e536dc4f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b05f725c46268853b7cb38b9e536dc4f new file mode 100644 index 00000000..a2077d8a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b05f725c46268853b7cb38b9e536dc4f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b06f9a39b6a757f340ff66bdda7eb302 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b06f9a39b6a757f340ff66bdda7eb302 new file mode 100644 index 00000000..50bfec10 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b06f9a39b6a757f340ff66bdda7eb302 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0728d6541bf0216c970328321a23d9f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0728d6541bf0216c970328321a23d9f new file mode 100644 index 00000000..5f7f5d41 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0728d6541bf0216c970328321a23d9f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0880f455f258089fc963fe3b767510e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0880f455f258089fc963fe3b767510e new file mode 100644 index 00000000..843b5591 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0880f455f258089fc963fe3b767510e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0c23340dc7be8e0ef98499d86394383 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0c23340dc7be8e0ef98499d86394383 new file mode 100644 index 00000000..e1d234ef Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0c23340dc7be8e0ef98499d86394383 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0c92804eba9ac6815883b1c927743bb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0c92804eba9ac6815883b1c927743bb new file mode 100644 index 00000000..83dd90cf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0c92804eba9ac6815883b1c927743bb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0d364169477b0991a53949c999cff73 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0d364169477b0991a53949c999cff73 new file mode 100644 index 00000000..3a806071 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0d364169477b0991a53949c999cff73 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0e66e2aaf81a0b4a9b21a24771e65a0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0e66e2aaf81a0b4a9b21a24771e65a0 new file mode 100644 index 00000000..4136fbfc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0e66e2aaf81a0b4a9b21a24771e65a0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0f4ccda1da154f57be299261d6dbb67 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0f4ccda1da154f57be299261d6dbb67 new file mode 100644 index 00000000..44e9a1f8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b0/b0f4ccda1da154f57be299261d6dbb67 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b10b516618cb4cd85f7588cb6c70d103 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b10b516618cb4cd85f7588cb6c70d103 new file mode 100644 index 00000000..59226f87 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b10b516618cb4cd85f7588cb6c70d103 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b11422dd0f6b7fcab7d4c3f75741c31a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b11422dd0f6b7fcab7d4c3f75741c31a new file mode 100644 index 00000000..6ce5dabd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b11422dd0f6b7fcab7d4c3f75741c31a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b144d4e4afd7bdf92b8b55d15e370a7f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b144d4e4afd7bdf92b8b55d15e370a7f new file mode 100644 index 00000000..718b12e9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b144d4e4afd7bdf92b8b55d15e370a7f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b14602ae4e01f7fbc3438886dbcc5387 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b14602ae4e01f7fbc3438886dbcc5387 new file mode 100644 index 00000000..73941a88 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b14602ae4e01f7fbc3438886dbcc5387 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b14aa65f4dc0ab68188798e1ab4feb29 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b14aa65f4dc0ab68188798e1ab4feb29 new file mode 100644 index 00000000..2f11eed5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b14aa65f4dc0ab68188798e1ab4feb29 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b14d562223bb95078dd214bacb4b2609 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b14d562223bb95078dd214bacb4b2609 new file mode 100644 index 00000000..51b1be5c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b14d562223bb95078dd214bacb4b2609 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b14edadf04f9edd337b771b04e459196 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b14edadf04f9edd337b771b04e459196 new file mode 100644 index 00000000..1a39562f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b14edadf04f9edd337b771b04e459196 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1568fb512279b53ead0e001ce58e15f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1568fb512279b53ead0e001ce58e15f new file mode 100644 index 00000000..71435192 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1568fb512279b53ead0e001ce58e15f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b159995408072bd2e0d0c2d7452ec1cb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b159995408072bd2e0d0c2d7452ec1cb new file mode 100644 index 00000000..e37daff7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b159995408072bd2e0d0c2d7452ec1cb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b15f44036f2ccd4d8786f312348317ee b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b15f44036f2ccd4d8786f312348317ee new file mode 100644 index 00000000..11d464bc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b15f44036f2ccd4d8786f312348317ee differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b17f38a8f541ca0d8bdfb924f2c6bffe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b17f38a8f541ca0d8bdfb924f2c6bffe new file mode 100644 index 00000000..66209e16 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b17f38a8f541ca0d8bdfb924f2c6bffe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1882c97fd294b362437f7da1694c8d7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1882c97fd294b362437f7da1694c8d7 new file mode 100644 index 00000000..5fd6ef00 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1882c97fd294b362437f7da1694c8d7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b19e55aaace8d34dd938060295844e87 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b19e55aaace8d34dd938060295844e87 new file mode 100644 index 00000000..bcceb6c3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b19e55aaace8d34dd938060295844e87 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1a827a7d55dbb0ce05b9d45bd3f19c7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1a827a7d55dbb0ce05b9d45bd3f19c7 new file mode 100644 index 00000000..c9614342 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1a827a7d55dbb0ce05b9d45bd3f19c7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1ba387ac9395f257eed7f4575c229a1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1ba387ac9395f257eed7f4575c229a1 new file mode 100644 index 00000000..9a9045de Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1ba387ac9395f257eed7f4575c229a1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1c6b11380253d890a629a1356e1c29c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1c6b11380253d890a629a1356e1c29c new file mode 100644 index 00000000..a1cf166f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1c6b11380253d890a629a1356e1c29c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1e4a3a5ccef9b1dae5a9322a9041ba8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1e4a3a5ccef9b1dae5a9322a9041ba8 new file mode 100644 index 00000000..9b7b256a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1e4a3a5ccef9b1dae5a9322a9041ba8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1edd02e4f81e329f0474e301383fff2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1edd02e4f81e329f0474e301383fff2 new file mode 100644 index 00000000..102297f4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1edd02e4f81e329f0474e301383fff2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1efc0983756bfe78726f35481a9fd14 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1efc0983756bfe78726f35481a9fd14 new file mode 100644 index 00000000..820291cb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1efc0983756bfe78726f35481a9fd14 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1f247b6869b735fd798d069d090c59f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1f247b6869b735fd798d069d090c59f new file mode 100644 index 00000000..9c2d8461 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1f247b6869b735fd798d069d090c59f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1f3d8d2599269270b3dacdfcb5fc2ab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1f3d8d2599269270b3dacdfcb5fc2ab new file mode 100644 index 00000000..42bd7289 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1f3d8d2599269270b3dacdfcb5fc2ab differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1f6d0d74bb62b1748ed963834cac33e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1f6d0d74bb62b1748ed963834cac33e new file mode 100644 index 00000000..4486ea0a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b1/b1f6d0d74bb62b1748ed963834cac33e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b206999c121e56bdc29e434ccac32358 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b206999c121e56bdc29e434ccac32358 new file mode 100644 index 00000000..a0622668 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b206999c121e56bdc29e434ccac32358 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b20c485c7b80bf97e1e733cc0a73ba9e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b20c485c7b80bf97e1e733cc0a73ba9e new file mode 100644 index 00000000..0c2ea082 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b20c485c7b80bf97e1e733cc0a73ba9e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b21b0d12aca6ed6d23bc1f79b6e7231d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b21b0d12aca6ed6d23bc1f79b6e7231d new file mode 100644 index 00000000..be8af101 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b21b0d12aca6ed6d23bc1f79b6e7231d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b21ea8c1ee68dabfd3ebf87251049ca6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b21ea8c1ee68dabfd3ebf87251049ca6 new file mode 100644 index 00000000..75818e8f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b21ea8c1ee68dabfd3ebf87251049ca6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b22ef8fd7321fd7af8b1da21c1a5faa6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b22ef8fd7321fd7af8b1da21c1a5faa6 new file mode 100644 index 00000000..50055be0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b22ef8fd7321fd7af8b1da21c1a5faa6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b247d7d27e23e8118310e0f1c9e2c0ca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b247d7d27e23e8118310e0f1c9e2c0ca new file mode 100644 index 00000000..aa0fb392 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b247d7d27e23e8118310e0f1c9e2c0ca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b25047b868e54488af5c630f31dc49bf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b25047b868e54488af5c630f31dc49bf new file mode 100644 index 00000000..ec4976b6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b25047b868e54488af5c630f31dc49bf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b25d4709acd0a0f0f5199bf8869c407f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b25d4709acd0a0f0f5199bf8869c407f new file mode 100644 index 00000000..57624c3c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b25d4709acd0a0f0f5199bf8869c407f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b25f423515ad3c28860675285114828c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b25f423515ad3c28860675285114828c new file mode 100644 index 00000000..55edac1b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b25f423515ad3c28860675285114828c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b264c15502bc9c6f9a5bf8142fb6ccb1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b264c15502bc9c6f9a5bf8142fb6ccb1 new file mode 100644 index 00000000..b97fb283 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b264c15502bc9c6f9a5bf8142fb6ccb1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2899867df20cb6780085aa645cb43c6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2899867df20cb6780085aa645cb43c6 new file mode 100644 index 00000000..bcba0008 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2899867df20cb6780085aa645cb43c6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2967910414329f71f7c5598b8e7d39a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2967910414329f71f7c5598b8e7d39a new file mode 100644 index 00000000..0a73a1f3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2967910414329f71f7c5598b8e7d39a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2a262543c81dc9412739455d803eba8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2a262543c81dc9412739455d803eba8 new file mode 100644 index 00000000..69f04288 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2a262543c81dc9412739455d803eba8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2a6654e6ae4b4cfaeb404fcae92146d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2a6654e6ae4b4cfaeb404fcae92146d new file mode 100644 index 00000000..ee181c87 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2a6654e6ae4b4cfaeb404fcae92146d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2cb20e7bbaaf3b0ebe2134e7b1f81a4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2cb20e7bbaaf3b0ebe2134e7b1f81a4 new file mode 100644 index 00000000..3678a028 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2cb20e7bbaaf3b0ebe2134e7b1f81a4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2db5f23d2cc943a6579d4d4a2727616 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2db5f23d2cc943a6579d4d4a2727616 new file mode 100644 index 00000000..0461cfe4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b2/b2db5f23d2cc943a6579d4d4a2727616 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b3024b5740df16f60a6373b4138ac45f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b3024b5740df16f60a6373b4138ac45f new file mode 100644 index 00000000..a6880a1d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b3024b5740df16f60a6373b4138ac45f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b313d0452e97f64d72b2b00a052cc477 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b313d0452e97f64d72b2b00a052cc477 new file mode 100644 index 00000000..262bd232 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b313d0452e97f64d72b2b00a052cc477 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b32e82c8b119eaea7ef8412f7ad3b938 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b32e82c8b119eaea7ef8412f7ad3b938 new file mode 100644 index 00000000..90c8a573 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b32e82c8b119eaea7ef8412f7ad3b938 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b331040d234f2e4b7e3deeef4156c178 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b331040d234f2e4b7e3deeef4156c178 new file mode 100644 index 00000000..f7e74f1c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b331040d234f2e4b7e3deeef4156c178 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b33c72b3e34411e5d52691290294e791 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b33c72b3e34411e5d52691290294e791 new file mode 100644 index 00000000..96f1b45f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b33c72b3e34411e5d52691290294e791 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b346588487179a04c55134d2668d339f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b346588487179a04c55134d2668d339f new file mode 100644 index 00000000..73eedb83 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b346588487179a04c55134d2668d339f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b34de12e63fb60cb14b4b947f51fa1f1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b34de12e63fb60cb14b4b947f51fa1f1 new file mode 100644 index 00000000..757db34c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b34de12e63fb60cb14b4b947f51fa1f1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b35d2b6a9bb58be6429f999a4fd92e10 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b35d2b6a9bb58be6429f999a4fd92e10 new file mode 100644 index 00000000..3b8e7837 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b35d2b6a9bb58be6429f999a4fd92e10 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b3627247a5094ad076de7b765bc986af b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b3627247a5094ad076de7b765bc986af new file mode 100644 index 00000000..05ee2489 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b3627247a5094ad076de7b765bc986af differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b373ef50510cc91f2c968fe9058b0fec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b373ef50510cc91f2c968fe9058b0fec new file mode 100644 index 00000000..ea949742 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b373ef50510cc91f2c968fe9058b0fec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b37bb1e447347bf9bf1a3624758d41be b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b37bb1e447347bf9bf1a3624758d41be new file mode 100644 index 00000000..012f88ae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b37bb1e447347bf9bf1a3624758d41be differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b381a34404ea981aac832365978f2de8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b381a34404ea981aac832365978f2de8 new file mode 100644 index 00000000..1a6375da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b381a34404ea981aac832365978f2de8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b397bd3f9fd37d26ad31c23a6a706302 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b397bd3f9fd37d26ad31c23a6a706302 new file mode 100644 index 00000000..b7a863be Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b397bd3f9fd37d26ad31c23a6a706302 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b3a40cae68954b2f24336a61407c5fab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b3a40cae68954b2f24336a61407c5fab new file mode 100644 index 00000000..95e628ec Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b3a40cae68954b2f24336a61407c5fab differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b3e626ad4ea99b325b6c6e30a4f82a61 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b3e626ad4ea99b325b6c6e30a4f82a61 new file mode 100644 index 00000000..9651a64b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b3/b3e626ad4ea99b325b6c6e30a4f82a61 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b40792c67757fdb0313d53746c1eb759 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b40792c67757fdb0313d53746c1eb759 new file mode 100644 index 00000000..46a500cb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b40792c67757fdb0313d53746c1eb759 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b40bf7f120efe565e3f8aa10e6f907f0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b40bf7f120efe565e3f8aa10e6f907f0 new file mode 100644 index 00000000..ef6148a4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b40bf7f120efe565e3f8aa10e6f907f0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b43aff7ad9be8b308f8c7c13ed962332 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b43aff7ad9be8b308f8c7c13ed962332 new file mode 100644 index 00000000..7b735997 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b43aff7ad9be8b308f8c7c13ed962332 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b447d1e497dc15dc0a9b408345977380 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b447d1e497dc15dc0a9b408345977380 new file mode 100644 index 00000000..57c23697 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b447d1e497dc15dc0a9b408345977380 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4480de985e83866be086f0f30b5921d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4480de985e83866be086f0f30b5921d new file mode 100644 index 00000000..9792ab84 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4480de985e83866be086f0f30b5921d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b44e81392db646c71680239f0a0b10aa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b44e81392db646c71680239f0a0b10aa new file mode 100644 index 00000000..d05c8459 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b44e81392db646c71680239f0a0b10aa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b456fe6fef9b0ab3195e319bd6a96d6a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b456fe6fef9b0ab3195e319bd6a96d6a new file mode 100644 index 00000000..082d9323 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b456fe6fef9b0ab3195e319bd6a96d6a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b465f2f7b0b89ad9ba4f5fdccd25a94f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b465f2f7b0b89ad9ba4f5fdccd25a94f new file mode 100644 index 00000000..85646395 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b465f2f7b0b89ad9ba4f5fdccd25a94f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b47a78566e05a90713c8795c1acf7036 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b47a78566e05a90713c8795c1acf7036 new file mode 100644 index 00000000..95a713df Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b47a78566e05a90713c8795c1acf7036 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b47fd2503a5c52e14864fafdcea09d51 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b47fd2503a5c52e14864fafdcea09d51 new file mode 100644 index 00000000..da96e6e5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b47fd2503a5c52e14864fafdcea09d51 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b484026aefef1b7c03d87036b9440a16 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b484026aefef1b7c03d87036b9440a16 new file mode 100644 index 00000000..2548e00c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b484026aefef1b7c03d87036b9440a16 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b49101673165757509fe2460ee8cc5ab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b49101673165757509fe2460ee8cc5ab new file mode 100644 index 00000000..67b92dc1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b49101673165757509fe2460ee8cc5ab differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b49e3f3d052d358b1a01c6dc1273372e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b49e3f3d052d358b1a01c6dc1273372e new file mode 100644 index 00000000..49318c93 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b49e3f3d052d358b1a01c6dc1273372e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4c79954d0493d8e3f16416d4e323101 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4c79954d0493d8e3f16416d4e323101 new file mode 100644 index 00000000..37ebf05b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4c79954d0493d8e3f16416d4e323101 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4c8ec794631aae5cd9bee65501514c5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4c8ec794631aae5cd9bee65501514c5 new file mode 100644 index 00000000..fff56982 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4c8ec794631aae5cd9bee65501514c5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4d75e7c6121c90389e0b06eaf88f4c1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4d75e7c6121c90389e0b06eaf88f4c1 new file mode 100644 index 00000000..e0d54010 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4d75e7c6121c90389e0b06eaf88f4c1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4fa59ff7ef58decc6ef22fd01a127a3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4fa59ff7ef58decc6ef22fd01a127a3 new file mode 100644 index 00000000..ac6bf7ba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b4/b4fa59ff7ef58decc6ef22fd01a127a3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5081ed5aa9646b1c098e89eefe66f84 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5081ed5aa9646b1c098e89eefe66f84 new file mode 100644 index 00000000..6874b9bb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5081ed5aa9646b1c098e89eefe66f84 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b51b4a2253d1d1cd7f4a92344a9d89bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b51b4a2253d1d1cd7f4a92344a9d89bc new file mode 100644 index 00000000..feccc330 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b51b4a2253d1d1cd7f4a92344a9d89bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b51d13db70cbcfc2a1d25062a8f853a6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b51d13db70cbcfc2a1d25062a8f853a6 new file mode 100644 index 00000000..7d13285c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b51d13db70cbcfc2a1d25062a8f853a6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b530edd7911dc56e3c76908f36aa13c8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b530edd7911dc56e3c76908f36aa13c8 new file mode 100644 index 00000000..a68cdef7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b530edd7911dc56e3c76908f36aa13c8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b55a7b45f2c2e2fd904e326274302d5d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b55a7b45f2c2e2fd904e326274302d5d new file mode 100644 index 00000000..a925e79c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b55a7b45f2c2e2fd904e326274302d5d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b55b0d3b4805efe67a6f943db0ae3bbf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b55b0d3b4805efe67a6f943db0ae3bbf new file mode 100644 index 00000000..434dfa72 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b55b0d3b4805efe67a6f943db0ae3bbf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b56bfc83c8ca299070d651cc04cb4ead b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b56bfc83c8ca299070d651cc04cb4ead new file mode 100644 index 00000000..76cc6519 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b56bfc83c8ca299070d651cc04cb4ead differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b57cf7818a0abb0911d9b3940b2fecbd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b57cf7818a0abb0911d9b3940b2fecbd new file mode 100644 index 00000000..378d5b0b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b57cf7818a0abb0911d9b3940b2fecbd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b57f036994e15542ba1b7ca1ffc43422 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b57f036994e15542ba1b7ca1ffc43422 new file mode 100644 index 00000000..e5d3a45c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b57f036994e15542ba1b7ca1ffc43422 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5925bae44307e15e2ea7e1e1208666f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5925bae44307e15e2ea7e1e1208666f new file mode 100644 index 00000000..e1b3738f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5925bae44307e15e2ea7e1e1208666f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b59c86198080696a1467c3d9ec08a8c0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b59c86198080696a1467c3d9ec08a8c0 new file mode 100644 index 00000000..ea8641cd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b59c86198080696a1467c3d9ec08a8c0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5c4c4e6e70b8f50051d1fb4d7ffcbaf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5c4c4e6e70b8f50051d1fb4d7ffcbaf new file mode 100644 index 00000000..9412a3fb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5c4c4e6e70b8f50051d1fb4d7ffcbaf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5d259f36f725de5a10d1c174e2c8df8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5d259f36f725de5a10d1c174e2c8df8 new file mode 100644 index 00000000..a47e8a1e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5d259f36f725de5a10d1c174e2c8df8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5d2c6bfd1540cf2bdd1efa9dd22d154 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5d2c6bfd1540cf2bdd1efa9dd22d154 new file mode 100644 index 00000000..d9147701 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5d2c6bfd1540cf2bdd1efa9dd22d154 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5dd98dea3ed64ff4f16448f379b8456 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5dd98dea3ed64ff4f16448f379b8456 new file mode 100644 index 00000000..22e15610 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5dd98dea3ed64ff4f16448f379b8456 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5de5ffebc25c47b2d9c917604e43060 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5de5ffebc25c47b2d9c917604e43060 new file mode 100644 index 00000000..fe944b8e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5de5ffebc25c47b2d9c917604e43060 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5e30338605470dbda51f3886a11a0e3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5e30338605470dbda51f3886a11a0e3 new file mode 100644 index 00000000..ab404ab7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b5/b5e30338605470dbda51f3886a11a0e3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b62ffa114d6883b2ce7a01798100b4c8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b62ffa114d6883b2ce7a01798100b4c8 new file mode 100644 index 00000000..a964c4df Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b62ffa114d6883b2ce7a01798100b4c8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b64f72ef2844d3cd4cd09c24991240bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b64f72ef2844d3cd4cd09c24991240bc new file mode 100644 index 00000000..e57f491a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b64f72ef2844d3cd4cd09c24991240bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b662e86b4135cdf95e0186f442627e29 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b662e86b4135cdf95e0186f442627e29 new file mode 100644 index 00000000..ddf43849 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b662e86b4135cdf95e0186f442627e29 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b66e70479a8471fe3fdf3ad33561b72a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b66e70479a8471fe3fdf3ad33561b72a new file mode 100644 index 00000000..c4ee4ea6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b66e70479a8471fe3fdf3ad33561b72a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b671817dac495615925f83c6346b3780 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b671817dac495615925f83c6346b3780 new file mode 100644 index 00000000..ad97eb7a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b671817dac495615925f83c6346b3780 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b67735aabc859d0c6c1a22cba394c1e5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b67735aabc859d0c6c1a22cba394c1e5 new file mode 100644 index 00000000..074ebeba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b67735aabc859d0c6c1a22cba394c1e5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6b1d25db7fbcdb91d6003076b4c6207 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6b1d25db7fbcdb91d6003076b4c6207 new file mode 100644 index 00000000..9d6c6bec Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6b1d25db7fbcdb91d6003076b4c6207 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6be0e304a53e24c263d76d4a061239b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6be0e304a53e24c263d76d4a061239b new file mode 100644 index 00000000..9bd4ac01 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6be0e304a53e24c263d76d4a061239b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6c0a7d28ffb60be3fc7fa1a57f9ec4c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6c0a7d28ffb60be3fc7fa1a57f9ec4c new file mode 100644 index 00000000..5dcb639a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6c0a7d28ffb60be3fc7fa1a57f9ec4c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6c220c5d7f672036151b5c10974331e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6c220c5d7f672036151b5c10974331e new file mode 100644 index 00000000..f4148b08 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6c220c5d7f672036151b5c10974331e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6c54be739ebd38702a6faaa51185eb0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6c54be739ebd38702a6faaa51185eb0 new file mode 100644 index 00000000..e3583d05 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6c54be739ebd38702a6faaa51185eb0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6ccd4350a0a2eb3095760a99d8e3cb6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6ccd4350a0a2eb3095760a99d8e3cb6 new file mode 100644 index 00000000..a3be12ba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6ccd4350a0a2eb3095760a99d8e3cb6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6d811d20f6c7c1d631ccd6454ddc04c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6d811d20f6c7c1d631ccd6454ddc04c new file mode 100644 index 00000000..1057c7cc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6d811d20f6c7c1d631ccd6454ddc04c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6de78dce981fc29044ef6808faa0233 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6de78dce981fc29044ef6808faa0233 new file mode 100644 index 00000000..814c955f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6de78dce981fc29044ef6808faa0233 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6e463d04cd8a13fcb494f9cad53ec34 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6e463d04cd8a13fcb494f9cad53ec34 new file mode 100644 index 00000000..94e7d8ac Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6e463d04cd8a13fcb494f9cad53ec34 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6e81b053ea3f1205b1832bba9db3dc5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6e81b053ea3f1205b1832bba9db3dc5 new file mode 100644 index 00000000..5ca4278e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6e81b053ea3f1205b1832bba9db3dc5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6fb4fa7a46b00d7ad9ab535e58000da b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6fb4fa7a46b00d7ad9ab535e58000da new file mode 100644 index 00000000..bf5fc1a7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b6/b6fb4fa7a46b00d7ad9ab535e58000da differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b712c385552469b97d6b5a525ca77d40 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b712c385552469b97d6b5a525ca77d40 new file mode 100644 index 00000000..b6d17c98 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b712c385552469b97d6b5a525ca77d40 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b72f165729969d80e7dbf8b5e62eca1a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b72f165729969d80e7dbf8b5e62eca1a new file mode 100644 index 00000000..c42fcec1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b72f165729969d80e7dbf8b5e62eca1a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b72f32efd038c12930f3667ad72afe76 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b72f32efd038c12930f3667ad72afe76 new file mode 100644 index 00000000..752e5993 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b72f32efd038c12930f3667ad72afe76 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b735d0534464a4fd81723fc9b2698b5b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b735d0534464a4fd81723fc9b2698b5b new file mode 100644 index 00000000..073faf33 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b735d0534464a4fd81723fc9b2698b5b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b745dcb3b0dcf195e9a662d051d7e2e7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b745dcb3b0dcf195e9a662d051d7e2e7 new file mode 100644 index 00000000..dc02489e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b745dcb3b0dcf195e9a662d051d7e2e7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b749e52230d7b659b93cf89917452c0d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b749e52230d7b659b93cf89917452c0d new file mode 100644 index 00000000..64812b36 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b749e52230d7b659b93cf89917452c0d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b74cb9676d3cc773bee23a1a325e6ccf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b74cb9676d3cc773bee23a1a325e6ccf new file mode 100644 index 00000000..4a9e4817 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b74cb9676d3cc773bee23a1a325e6ccf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b750e5f3fe99c4b456084e0f1af47393 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b750e5f3fe99c4b456084e0f1af47393 new file mode 100644 index 00000000..8f52f808 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b750e5f3fe99c4b456084e0f1af47393 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7685301e9956f0f14fb43d127ef5138 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7685301e9956f0f14fb43d127ef5138 new file mode 100644 index 00000000..9ea4e509 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7685301e9956f0f14fb43d127ef5138 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b76b2cc5c181842d671d7047656a0bf3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b76b2cc5c181842d671d7047656a0bf3 new file mode 100644 index 00000000..f0d42454 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b76b2cc5c181842d671d7047656a0bf3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b76b573072b0a4227ba76b529190ba37 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b76b573072b0a4227ba76b529190ba37 new file mode 100644 index 00000000..04be5fd6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b76b573072b0a4227ba76b529190ba37 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b78e49fa95bf9e4ee6a0dc5085167f7e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b78e49fa95bf9e4ee6a0dc5085167f7e new file mode 100644 index 00000000..d2e254fa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b78e49fa95bf9e4ee6a0dc5085167f7e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b79d13e6453fbe541c5ada9c29a2ff21 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b79d13e6453fbe541c5ada9c29a2ff21 new file mode 100644 index 00000000..e5e3371a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b79d13e6453fbe541c5ada9c29a2ff21 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7b4961a2eac839b151d40a291edc936 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7b4961a2eac839b151d40a291edc936 new file mode 100644 index 00000000..2b31b322 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7b4961a2eac839b151d40a291edc936 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7ca60f93cd978fb02ebe6be3d341031 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7ca60f93cd978fb02ebe6be3d341031 new file mode 100644 index 00000000..f1d2089f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7ca60f93cd978fb02ebe6be3d341031 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7dadcab94149a882d5ec3b28d60956d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7dadcab94149a882d5ec3b28d60956d new file mode 100644 index 00000000..ee5e3628 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7dadcab94149a882d5ec3b28d60956d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7f48573238684cfe0257c81b99ee00c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7f48573238684cfe0257c81b99ee00c new file mode 100644 index 00000000..2616b0a0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b7/b7f48573238684cfe0257c81b99ee00c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8084fd67b8ae7185401f24287665098 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8084fd67b8ae7185401f24287665098 new file mode 100644 index 00000000..924570d2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8084fd67b8ae7185401f24287665098 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b809c94e0bc38726cd3c22dfc6170942 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b809c94e0bc38726cd3c22dfc6170942 new file mode 100644 index 00000000..51906c40 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b809c94e0bc38726cd3c22dfc6170942 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b80a855a38d40427f2c0213440370eed b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b80a855a38d40427f2c0213440370eed new file mode 100644 index 00000000..346b6471 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b80a855a38d40427f2c0213440370eed differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b80cdfbc55be2631066cefad3993f4d0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b80cdfbc55be2631066cefad3993f4d0 new file mode 100644 index 00000000..963d4b6e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b80cdfbc55be2631066cefad3993f4d0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b83826d2ccdccbaa0e4bc4145350e636 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b83826d2ccdccbaa0e4bc4145350e636 new file mode 100644 index 00000000..8b455178 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b83826d2ccdccbaa0e4bc4145350e636 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8528505e1ac82560849cc5344096d63 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8528505e1ac82560849cc5344096d63 new file mode 100644 index 00000000..caa74ab7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8528505e1ac82560849cc5344096d63 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b85de022068fc1f2f7275d9dc27ba46f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b85de022068fc1f2f7275d9dc27ba46f new file mode 100644 index 00000000..f8ff024d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b85de022068fc1f2f7275d9dc27ba46f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b86eb1345a0b235667787078d8ae0a7a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b86eb1345a0b235667787078d8ae0a7a new file mode 100644 index 00000000..f5e7b787 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b86eb1345a0b235667787078d8ae0a7a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8706b28f1737a2d44862aa1966f41f4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8706b28f1737a2d44862aa1966f41f4 new file mode 100644 index 00000000..192dc1a6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8706b28f1737a2d44862aa1966f41f4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b88883d312790feee5862252ef1a94fa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b88883d312790feee5862252ef1a94fa new file mode 100644 index 00000000..bc64160d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b88883d312790feee5862252ef1a94fa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b896fc3b3ba3de5bb5117746caa07b96 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b896fc3b3ba3de5bb5117746caa07b96 new file mode 100644 index 00000000..992e3238 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b896fc3b3ba3de5bb5117746caa07b96 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8b1d9ba3509cec6740cd9c286b487b5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8b1d9ba3509cec6740cd9c286b487b5 new file mode 100644 index 00000000..100f22e8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8b1d9ba3509cec6740cd9c286b487b5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8bb5a74bb677bbbb98baed74bcdd4e5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8bb5a74bb677bbbb98baed74bcdd4e5 new file mode 100644 index 00000000..44593cf1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8bb5a74bb677bbbb98baed74bcdd4e5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8d4c1961d62e9ad70aa9bdf53ea7bb2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8d4c1961d62e9ad70aa9bdf53ea7bb2 new file mode 100644 index 00000000..7754e89c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8d4c1961d62e9ad70aa9bdf53ea7bb2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8d86dae142c978aa4b1974854487667 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8d86dae142c978aa4b1974854487667 new file mode 100644 index 00000000..37de701c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8d86dae142c978aa4b1974854487667 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8e806c771c17153af09cf2b0a4ced6c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8e806c771c17153af09cf2b0a4ced6c new file mode 100644 index 00000000..d8c64ae7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8e806c771c17153af09cf2b0a4ced6c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8e91de08e93e60ff4a5cb9a532b3184 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8e91de08e93e60ff4a5cb9a532b3184 new file mode 100644 index 00000000..4c19bca7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b8/b8e91de08e93e60ff4a5cb9a532b3184 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b93acd649ae1f365d5b4b5e431afce01 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b93acd649ae1f365d5b4b5e431afce01 new file mode 100644 index 00000000..58d6f455 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b93acd649ae1f365d5b4b5e431afce01 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b97df521a95306389fbb834753b8dbf1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b97df521a95306389fbb834753b8dbf1 new file mode 100644 index 00000000..a1309278 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b97df521a95306389fbb834753b8dbf1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b997ca76127d84da18b90dd6011a17ff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b997ca76127d84da18b90dd6011a17ff new file mode 100644 index 00000000..b4f6b371 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b997ca76127d84da18b90dd6011a17ff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b999e32657525fd630997ae237c76d86 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b999e32657525fd630997ae237c76d86 new file mode 100644 index 00000000..a984b626 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b999e32657525fd630997ae237c76d86 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9ab2afee93c6a6ad27b446ef228a895 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9ab2afee93c6a6ad27b446ef228a895 new file mode 100644 index 00000000..967195da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9ab2afee93c6a6ad27b446ef228a895 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9b45e674b2dc462623bb7014ca95ec8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9b45e674b2dc462623bb7014ca95ec8 new file mode 100644 index 00000000..aa8b2608 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9b45e674b2dc462623bb7014ca95ec8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9b9ff438409660f14d7652b0bba4278 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9b9ff438409660f14d7652b0bba4278 new file mode 100644 index 00000000..b13ce7bf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9b9ff438409660f14d7652b0bba4278 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9be4983f42044b23316e650b09f83e4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9be4983f42044b23316e650b09f83e4 new file mode 100644 index 00000000..e4ce65e3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9be4983f42044b23316e650b09f83e4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9d756380691137e6759c30d0ff14df4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9d756380691137e6759c30d0ff14df4 new file mode 100644 index 00000000..261e2ca3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9d756380691137e6759c30d0ff14df4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9e6e598bb2b794a02d554388dd98aac b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9e6e598bb2b794a02d554388dd98aac new file mode 100644 index 00000000..c5004628 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9e6e598bb2b794a02d554388dd98aac differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9e833c7183f611ac6d2a54688357b71 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9e833c7183f611ac6d2a54688357b71 new file mode 100644 index 00000000..b0e5590f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9e833c7183f611ac6d2a54688357b71 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9ec10ec84926fe01ecb549328489c14 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9ec10ec84926fe01ecb549328489c14 new file mode 100644 index 00000000..c295bfd1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9ec10ec84926fe01ecb549328489c14 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9fcec0272037aca309156d2a5a62906 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9fcec0272037aca309156d2a5a62906 new file mode 100644 index 00000000..4a93557e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/b9/b9fcec0272037aca309156d2a5a62906 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba05e1025e39796bb0e268b4a646c2f1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba05e1025e39796bb0e268b4a646c2f1 new file mode 100644 index 00000000..b989d66d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba05e1025e39796bb0e268b4a646c2f1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba08c2e57138a4876785a772ed8de7fc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba08c2e57138a4876785a772ed8de7fc new file mode 100644 index 00000000..f2fb2c9a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba08c2e57138a4876785a772ed8de7fc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba32ec64d6b13a3bbdcedce1c670e3a5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba32ec64d6b13a3bbdcedce1c670e3a5 new file mode 100644 index 00000000..ff9fce44 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba32ec64d6b13a3bbdcedce1c670e3a5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba63bf935885f0ab7ddc0133ddcbadb5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba63bf935885f0ab7ddc0133ddcbadb5 new file mode 100644 index 00000000..e900ebb5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba63bf935885f0ab7ddc0133ddcbadb5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba7205afc51608fcf04ab2604f1aaf6e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba7205afc51608fcf04ab2604f1aaf6e new file mode 100644 index 00000000..6cb495eb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba7205afc51608fcf04ab2604f1aaf6e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba78e5500a9eabc8e1223d444380a695 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba78e5500a9eabc8e1223d444380a695 new file mode 100644 index 00000000..de6022a1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba78e5500a9eabc8e1223d444380a695 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba934a8b36b177d3261036af000f3bde b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba934a8b36b177d3261036af000f3bde new file mode 100644 index 00000000..1a090850 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/ba934a8b36b177d3261036af000f3bde differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/baa053391c7baceb071117b02fc80327 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/baa053391c7baceb071117b02fc80327 new file mode 100644 index 00000000..ec92800c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/baa053391c7baceb071117b02fc80327 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/baf356e26be78f8ed8e8fb2fc711f9fc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/baf356e26be78f8ed8e8fb2fc711f9fc new file mode 100644 index 00000000..d8b764ec Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ba/baf356e26be78f8ed8e8fb2fc711f9fc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb0ce7d3db80b5738fd723e58f64f1db b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb0ce7d3db80b5738fd723e58f64f1db new file mode 100644 index 00000000..f41fb13c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb0ce7d3db80b5738fd723e58f64f1db differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb1adf7fb9bed791b20489db24b3003e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb1adf7fb9bed791b20489db24b3003e new file mode 100644 index 00000000..1d0a7b85 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb1adf7fb9bed791b20489db24b3003e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb1c1ad52269af0385330291bdef71a2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb1c1ad52269af0385330291bdef71a2 new file mode 100644 index 00000000..d69788aa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb1c1ad52269af0385330291bdef71a2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb50179d4631b3f5f616ec9afcf9fc2b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb50179d4631b3f5f616ec9afcf9fc2b new file mode 100644 index 00000000..dbe167cf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb50179d4631b3f5f616ec9afcf9fc2b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb51197519016af9f76395a8fc37c341 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb51197519016af9f76395a8fc37c341 new file mode 100644 index 00000000..07079602 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb51197519016af9f76395a8fc37c341 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb7f1d40a9d3e97f3d85b013a82c35c7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb7f1d40a9d3e97f3d85b013a82c35c7 new file mode 100644 index 00000000..c6a5f4c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb7f1d40a9d3e97f3d85b013a82c35c7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb8d7faec11deefde2d4cb9211b3d45e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb8d7faec11deefde2d4cb9211b3d45e new file mode 100644 index 00000000..e741e3ce Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb8d7faec11deefde2d4cb9211b3d45e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb932db99ba5e158f72a5fb63542958e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb932db99ba5e158f72a5fb63542958e new file mode 100644 index 00000000..dab0b007 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bb932db99ba5e158f72a5fb63542958e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbb0ee7b1f25147086d86f53a64df18c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbb0ee7b1f25147086d86f53a64df18c new file mode 100644 index 00000000..087fde1d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbb0ee7b1f25147086d86f53a64df18c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbb6032edd63f758559382e1a786d95f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbb6032edd63f758559382e1a786d95f new file mode 100644 index 00000000..738aac07 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbb6032edd63f758559382e1a786d95f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbbf9dde1fbbae6194a6d114651f9dd9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbbf9dde1fbbae6194a6d114651f9dd9 new file mode 100644 index 00000000..052216ae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbbf9dde1fbbae6194a6d114651f9dd9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbcff9d37e8917664b7be15eca2cdad8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbcff9d37e8917664b7be15eca2cdad8 new file mode 100644 index 00000000..14c67f4e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbcff9d37e8917664b7be15eca2cdad8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbddbd6b3a176574f5817489283aeec0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbddbd6b3a176574f5817489283aeec0 new file mode 100644 index 00000000..3f9e9936 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbddbd6b3a176574f5817489283aeec0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbef5d874b7ba330d636804d5a6db50d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbef5d874b7ba330d636804d5a6db50d new file mode 100644 index 00000000..93cb19cb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbef5d874b7ba330d636804d5a6db50d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbf2107696f52e4e7f600280c036e73d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbf2107696f52e4e7f600280c036e73d new file mode 100644 index 00000000..cbc49a6a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbf2107696f52e4e7f600280c036e73d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbff861fc79685bb991db44c944cd94d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbff861fc79685bb991db44c944cd94d new file mode 100644 index 00000000..f996edcc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bb/bbff861fc79685bb991db44c944cd94d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc06e43f66185b1bcd2455199d85e492 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc06e43f66185b1bcd2455199d85e492 new file mode 100644 index 00000000..9f9d89a9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc06e43f66185b1bcd2455199d85e492 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc347146b844b043f337c67907e57fcb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc347146b844b043f337c67907e57fcb new file mode 100644 index 00000000..1934bdd7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc347146b844b043f337c67907e57fcb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc6dec0bda80a0da638020cf7d7674c6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc6dec0bda80a0da638020cf7d7674c6 new file mode 100644 index 00000000..07845be0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc6dec0bda80a0da638020cf7d7674c6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc75e88562a3700690a4fabef58cbe4e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc75e88562a3700690a4fabef58cbe4e new file mode 100644 index 00000000..7be53772 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc75e88562a3700690a4fabef58cbe4e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc82f0eef914ee93a53cecf9b0cf195a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc82f0eef914ee93a53cecf9b0cf195a new file mode 100644 index 00000000..c7d6b7b1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc82f0eef914ee93a53cecf9b0cf195a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc86aec27fb9ff8134cdc46cd4274503 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc86aec27fb9ff8134cdc46cd4274503 new file mode 100644 index 00000000..795b4119 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc86aec27fb9ff8134cdc46cd4274503 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc94ab64ded2f1bffb2f81e56cac0e6b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc94ab64ded2f1bffb2f81e56cac0e6b new file mode 100644 index 00000000..f4b39ce2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc94ab64ded2f1bffb2f81e56cac0e6b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc96d8c4ae5a2e2e9b4f8af59115435a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc96d8c4ae5a2e2e9b4f8af59115435a new file mode 100644 index 00000000..b4852da6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc96d8c4ae5a2e2e9b4f8af59115435a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc9934b3fa1e81026574150847293ecd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc9934b3fa1e81026574150847293ecd new file mode 100644 index 00000000..3bca0f48 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bc9934b3fa1e81026574150847293ecd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcac88b39b9cd4223949e333a50572fa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcac88b39b9cd4223949e333a50572fa new file mode 100644 index 00000000..ffe807d7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcac88b39b9cd4223949e333a50572fa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcbce05ca6cc2873ef193c81eb2eb365 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcbce05ca6cc2873ef193c81eb2eb365 new file mode 100644 index 00000000..c689b30e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcbce05ca6cc2873ef193c81eb2eb365 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bccb72341f13531b4ae29aa4654c05a3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bccb72341f13531b4ae29aa4654c05a3 new file mode 100644 index 00000000..04f5c148 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bccb72341f13531b4ae29aa4654c05a3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcde75c3a95991fd02e4c7367c8615c8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcde75c3a95991fd02e4c7367c8615c8 new file mode 100644 index 00000000..88bd6591 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcde75c3a95991fd02e4c7367c8615c8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bce7b975512405a83999bede4c8483a4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bce7b975512405a83999bede4c8483a4 new file mode 100644 index 00000000..871da3a3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bce7b975512405a83999bede4c8483a4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcee34d7dbe2c9bcb4447b5905ada410 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcee34d7dbe2c9bcb4447b5905ada410 new file mode 100644 index 00000000..23b471e0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcee34d7dbe2c9bcb4447b5905ada410 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcfe23505bdb210c43da83ccddb10290 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcfe23505bdb210c43da83ccddb10290 new file mode 100644 index 00000000..5470df13 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bc/bcfe23505bdb210c43da83ccddb10290 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd0506a633296339d3a688cb60cdc747 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd0506a633296339d3a688cb60cdc747 new file mode 100644 index 00000000..c241d96e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd0506a633296339d3a688cb60cdc747 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd05ce81ef7a48caba5435f7ee72baca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd05ce81ef7a48caba5435f7ee72baca new file mode 100644 index 00000000..3b6915b3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd05ce81ef7a48caba5435f7ee72baca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd211fde3327596287016c57426e82d7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd211fde3327596287016c57426e82d7 new file mode 100644 index 00000000..5f19a488 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd211fde3327596287016c57426e82d7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd2e4909c5f55053adc698b26b48b509 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd2e4909c5f55053adc698b26b48b509 new file mode 100644 index 00000000..5e4dd141 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd2e4909c5f55053adc698b26b48b509 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd4dc1ab8f96f9f032a6c4d91d9db216 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd4dc1ab8f96f9f032a6c4d91d9db216 new file mode 100644 index 00000000..315a5c7b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd4dc1ab8f96f9f032a6c4d91d9db216 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd57aaf474e8273ec8a23691491e468b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd57aaf474e8273ec8a23691491e468b new file mode 100644 index 00000000..946845d7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd57aaf474e8273ec8a23691491e468b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd67e2ba7560f43a036e656e6af4ac16 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd67e2ba7560f43a036e656e6af4ac16 new file mode 100644 index 00000000..cfb20e2c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd67e2ba7560f43a036e656e6af4ac16 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd6a6411e3b40106d82299821e6c5f8c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd6a6411e3b40106d82299821e6c5f8c new file mode 100644 index 00000000..fbe7d41c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd6a6411e3b40106d82299821e6c5f8c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd6c6ff6c1f99035e39dd554bac153ae b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd6c6ff6c1f99035e39dd554bac153ae new file mode 100644 index 00000000..ba977791 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd6c6ff6c1f99035e39dd554bac153ae differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd9319e376cf28349676b4b81d59279d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd9319e376cf28349676b4b81d59279d new file mode 100644 index 00000000..858b518c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bd9319e376cf28349676b4b81d59279d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdcf252c7145b9b6a87979bd721b86cc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdcf252c7145b9b6a87979bd721b86cc new file mode 100644 index 00000000..936eaa75 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdcf252c7145b9b6a87979bd721b86cc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdd587bacc405f94ea7763786224c42b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdd587bacc405f94ea7763786224c42b new file mode 100644 index 00000000..c80ebcd4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdd587bacc405f94ea7763786224c42b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdd9affcc815a590de3b7a60ab2c3a7c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdd9affcc815a590de3b7a60ab2c3a7c new file mode 100644 index 00000000..8e77da1a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdd9affcc815a590de3b7a60ab2c3a7c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdde307d157132bf242ccccb5f30c0f4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdde307d157132bf242ccccb5f30c0f4 new file mode 100644 index 00000000..80a79b52 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdde307d157132bf242ccccb5f30c0f4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdecabbc7d737ffce8da45476a305229 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdecabbc7d737ffce8da45476a305229 new file mode 100644 index 00000000..ef7c23c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdecabbc7d737ffce8da45476a305229 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdef4dd97c0e3085f6290f0a1e277976 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdef4dd97c0e3085f6290f0a1e277976 new file mode 100644 index 00000000..5dc5cd29 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdef4dd97c0e3085f6290f0a1e277976 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdfd3a4a434a9bf27af07dd9c0ed8206 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdfd3a4a434a9bf27af07dd9c0ed8206 new file mode 100644 index 00000000..65381d78 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bd/bdfd3a4a434a9bf27af07dd9c0ed8206 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be00270bcbc68ee44b55ddbbbbfa7338 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be00270bcbc68ee44b55ddbbbbfa7338 new file mode 100644 index 00000000..d6ea6c87 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be00270bcbc68ee44b55ddbbbbfa7338 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be0b5d4eb239e74001c2ae4e0c2ad891 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be0b5d4eb239e74001c2ae4e0c2ad891 new file mode 100644 index 00000000..a5def9da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be0b5d4eb239e74001c2ae4e0c2ad891 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be139e11f5b4b739c2a60cf772dd2897 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be139e11f5b4b739c2a60cf772dd2897 new file mode 100644 index 00000000..802932a2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be139e11f5b4b739c2a60cf772dd2897 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be248b6b54ee3bb4cad7ab629f845bb5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be248b6b54ee3bb4cad7ab629f845bb5 new file mode 100644 index 00000000..ff3d3851 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be248b6b54ee3bb4cad7ab629f845bb5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be25329355b418b791d6fa1b3ea59787 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be25329355b418b791d6fa1b3ea59787 new file mode 100644 index 00000000..6653ffd0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be25329355b418b791d6fa1b3ea59787 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be395e6c7b0a3584a64f9368203e6c5c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be395e6c7b0a3584a64f9368203e6c5c new file mode 100644 index 00000000..982f9cb2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be395e6c7b0a3584a64f9368203e6c5c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be528aa1d4cf53bc0088c629130b76f5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be528aa1d4cf53bc0088c629130b76f5 new file mode 100644 index 00000000..388f0a45 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be528aa1d4cf53bc0088c629130b76f5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be6ae961ff2e57916e42db6f77a8aa62 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be6ae961ff2e57916e42db6f77a8aa62 new file mode 100644 index 00000000..aa4866ea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be6ae961ff2e57916e42db6f77a8aa62 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be7d10c00b324b0ade0871e8352b8ed3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be7d10c00b324b0ade0871e8352b8ed3 new file mode 100644 index 00000000..4323facb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be7d10c00b324b0ade0871e8352b8ed3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be8e80ca39b864bb8ca809a11c51a116 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be8e80ca39b864bb8ca809a11c51a116 new file mode 100644 index 00000000..3e508e5d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be8e80ca39b864bb8ca809a11c51a116 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be9c5c620a9bb6ba970601d10171b32a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be9c5c620a9bb6ba970601d10171b32a new file mode 100644 index 00000000..c0a654cc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/be9c5c620a9bb6ba970601d10171b32a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bed92411cdfc77a5725e3de287d66775 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bed92411cdfc77a5725e3de287d66775 new file mode 100644 index 00000000..995cafc7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bed92411cdfc77a5725e3de287d66775 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bedfd1dbfaceb1ede462ad65b7f90bdf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bedfd1dbfaceb1ede462ad65b7f90bdf new file mode 100644 index 00000000..4bbf0d6a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bedfd1dbfaceb1ede462ad65b7f90bdf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bee0d1f7b72f9f2076703b8c2afde743 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bee0d1f7b72f9f2076703b8c2afde743 new file mode 100644 index 00000000..329b03d5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bee0d1f7b72f9f2076703b8c2afde743 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bee348114144fd1b01eb302665dede9f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bee348114144fd1b01eb302665dede9f new file mode 100644 index 00000000..e7cef71a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bee348114144fd1b01eb302665dede9f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bee72a5c01aac5bc492fe5af041f1c17 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bee72a5c01aac5bc492fe5af041f1c17 new file mode 100644 index 00000000..552f18da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bee72a5c01aac5bc492fe5af041f1c17 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/beeb8910308ae08616c12876c22321a3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/beeb8910308ae08616c12876c22321a3 new file mode 100644 index 00000000..b3bbdee7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/beeb8910308ae08616c12876c22321a3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bef26641e3963a42e332fb18ed0f01b7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bef26641e3963a42e332fb18ed0f01b7 new file mode 100644 index 00000000..223aaece Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bef26641e3963a42e332fb18ed0f01b7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bef3b91d5edc585e3437a6ea6b9e28a1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bef3b91d5edc585e3437a6ea6b9e28a1 new file mode 100644 index 00000000..8b2aae06 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/be/bef3b91d5edc585e3437a6ea6b9e28a1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf0f8a17a1d4d585d1ae049ae9cb93f1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf0f8a17a1d4d585d1ae049ae9cb93f1 new file mode 100644 index 00000000..dca10835 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf0f8a17a1d4d585d1ae049ae9cb93f1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf21f583488e4369b5ec01cb2b517dcc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf21f583488e4369b5ec01cb2b517dcc new file mode 100644 index 00000000..fc6336ff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf21f583488e4369b5ec01cb2b517dcc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf3177464d3058d25a26a598b3ec8e8f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf3177464d3058d25a26a598b3ec8e8f new file mode 100644 index 00000000..3ad482fc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf3177464d3058d25a26a598b3ec8e8f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf3c3e057dd4ba2ee3ddfcea950019a5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf3c3e057dd4ba2ee3ddfcea950019a5 new file mode 100644 index 00000000..95f05ece Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf3c3e057dd4ba2ee3ddfcea950019a5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf4fa252146c878fe5879c3f3a02b0d6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf4fa252146c878fe5879c3f3a02b0d6 new file mode 100644 index 00000000..f97c49bd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf4fa252146c878fe5879c3f3a02b0d6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf6cefc3c7aec7e0d6f6e4a6e2fb98cb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf6cefc3c7aec7e0d6f6e4a6e2fb98cb new file mode 100644 index 00000000..85f3125e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf6cefc3c7aec7e0d6f6e4a6e2fb98cb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf78459dc2114df9cbfc29cd447f190a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf78459dc2114df9cbfc29cd447f190a new file mode 100644 index 00000000..217e25bb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf78459dc2114df9cbfc29cd447f190a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf811888e8749cf6381b0fe32c403731 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf811888e8749cf6381b0fe32c403731 new file mode 100644 index 00000000..a5dacf3c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf811888e8749cf6381b0fe32c403731 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf87d9e4872ba0fab246f66abfc421f6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf87d9e4872ba0fab246f66abfc421f6 new file mode 100644 index 00000000..d4d7a012 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf87d9e4872ba0fab246f66abfc421f6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf8822527c2640bb9b0f3017214e3a29 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf8822527c2640bb9b0f3017214e3a29 new file mode 100644 index 00000000..d393fec8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf8822527c2640bb9b0f3017214e3a29 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf90273a29bde45e4f23bdc75a1732c4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf90273a29bde45e4f23bdc75a1732c4 new file mode 100644 index 00000000..b4f68742 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf90273a29bde45e4f23bdc75a1732c4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf967d6bc2f6d315407209512ecde5f0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf967d6bc2f6d315407209512ecde5f0 new file mode 100644 index 00000000..f7b99af8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf967d6bc2f6d315407209512ecde5f0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf97fafd73476ab182d5d6d670ab82a2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf97fafd73476ab182d5d6d670ab82a2 new file mode 100644 index 00000000..9ea933da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf97fafd73476ab182d5d6d670ab82a2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf9d505ce2a1cf50feed3b2e5ab9ddbe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf9d505ce2a1cf50feed3b2e5ab9ddbe new file mode 100644 index 00000000..305d713c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf9d505ce2a1cf50feed3b2e5ab9ddbe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf9fe4cf994babf502787155db82830f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf9fe4cf994babf502787155db82830f new file mode 100644 index 00000000..ae23839e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bf9fe4cf994babf502787155db82830f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfa10828503acf9bda49e8d8c38472f5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfa10828503acf9bda49e8d8c38472f5 new file mode 100644 index 00000000..9f38e8c3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfa10828503acf9bda49e8d8c38472f5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfc7cf646cb07181adb406746ca061a9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfc7cf646cb07181adb406746ca061a9 new file mode 100644 index 00000000..5ee7ce78 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfc7cf646cb07181adb406746ca061a9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfcad2b28a750eb98b311b874e4a3fc9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfcad2b28a750eb98b311b874e4a3fc9 new file mode 100644 index 00000000..72527c2d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfcad2b28a750eb98b311b874e4a3fc9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfccf5fb7bb1501cf24b75a50157967c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfccf5fb7bb1501cf24b75a50157967c new file mode 100644 index 00000000..1920503f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfccf5fb7bb1501cf24b75a50157967c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfe855f5184af5d8cd04c68ec59c647d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfe855f5184af5d8cd04c68ec59c647d new file mode 100644 index 00000000..b6ff008b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bfe855f5184af5d8cd04c68ec59c647d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bff12b3b41ce52d744393cc32098e4cc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bff12b3b41ce52d744393cc32098e4cc new file mode 100644 index 00000000..b5efa52a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bff12b3b41ce52d744393cc32098e4cc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bff14584ca0ac183cc4d8023f01f3067 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bff14584ca0ac183cc4d8023f01f3067 new file mode 100644 index 00000000..0cef23c8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bff14584ca0ac183cc4d8023f01f3067 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bff4b756f2ee3a64b1af83bcac3e31fd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bff4b756f2ee3a64b1af83bcac3e31fd new file mode 100644 index 00000000..6b127a7b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/bf/bff4b756f2ee3a64b1af83bcac3e31fd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0289f61afb94b80dd431fc806ef0ed1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0289f61afb94b80dd431fc806ef0ed1 new file mode 100644 index 00000000..72d0dad6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0289f61afb94b80dd431fc806ef0ed1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c02f8d6f74d291c81a868cf525fd660e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c02f8d6f74d291c81a868cf525fd660e new file mode 100644 index 00000000..3887c07c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c02f8d6f74d291c81a868cf525fd660e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0357ec991b429c25414c1b4f7bb54d5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0357ec991b429c25414c1b4f7bb54d5 new file mode 100644 index 00000000..d0d4f132 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0357ec991b429c25414c1b4f7bb54d5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c05668b02f14bb86ba547b71edc66ea3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c05668b02f14bb86ba547b71edc66ea3 new file mode 100644 index 00000000..0606a810 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c05668b02f14bb86ba547b71edc66ea3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c060e9f03bda2b0e0050006576d9b9a3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c060e9f03bda2b0e0050006576d9b9a3 new file mode 100644 index 00000000..8cf00e54 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c060e9f03bda2b0e0050006576d9b9a3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0660d4e8bd1605423c41c703b8fb526 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0660d4e8bd1605423c41c703b8fb526 new file mode 100644 index 00000000..576391fb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0660d4e8bd1605423c41c703b8fb526 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c068319361b994fbafcb84732f36ed49 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c068319361b994fbafcb84732f36ed49 new file mode 100644 index 00000000..58c47b30 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c068319361b994fbafcb84732f36ed49 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c09c4acd33b0f96a3760e1f6861699ac b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c09c4acd33b0f96a3760e1f6861699ac new file mode 100644 index 00000000..f99ef60a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c09c4acd33b0f96a3760e1f6861699ac differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0b34cab040d2091c9f1b2a1e0fd4feb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0b34cab040d2091c9f1b2a1e0fd4feb new file mode 100644 index 00000000..d032497e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0b34cab040d2091c9f1b2a1e0fd4feb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0cc95031242ef92bbe82813fa6dc5e9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0cc95031242ef92bbe82813fa6dc5e9 new file mode 100644 index 00000000..9a1b0768 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0cc95031242ef92bbe82813fa6dc5e9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0db5dac4d282a453204f6eb34a20e78 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0db5dac4d282a453204f6eb34a20e78 new file mode 100644 index 00000000..08067f1f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c0/c0db5dac4d282a453204f6eb34a20e78 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c130ade4780e2eb755c5276ed396d091 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c130ade4780e2eb755c5276ed396d091 new file mode 100644 index 00000000..445d2c67 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c130ade4780e2eb755c5276ed396d091 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c14d774467ce8c309bc472e1c87f0139 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c14d774467ce8c309bc472e1c87f0139 new file mode 100644 index 00000000..a9579de3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c14d774467ce8c309bc472e1c87f0139 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1579dcab990a1c32e6ba8b02bd3c7e5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1579dcab990a1c32e6ba8b02bd3c7e5 new file mode 100644 index 00000000..d6ac2ab7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1579dcab990a1c32e6ba8b02bd3c7e5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c16d385b639d129d8ef7918504440609 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c16d385b639d129d8ef7918504440609 new file mode 100644 index 00000000..2ce967da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c16d385b639d129d8ef7918504440609 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1acef48bcf59f640da6f7b5d9bc555c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1acef48bcf59f640da6f7b5d9bc555c new file mode 100644 index 00000000..6836f77e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1acef48bcf59f640da6f7b5d9bc555c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1ad453d71b1cd060a54bc856ebbf840 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1ad453d71b1cd060a54bc856ebbf840 new file mode 100644 index 00000000..a59626cf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1ad453d71b1cd060a54bc856ebbf840 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1bebd23f75332ebd628b421f65157ef b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1bebd23f75332ebd628b421f65157ef new file mode 100644 index 00000000..bd3032ef Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1bebd23f75332ebd628b421f65157ef differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1bfc67ec15d944d66483147f2b377ab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1bfc67ec15d944d66483147f2b377ab new file mode 100644 index 00000000..8d247c0d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1bfc67ec15d944d66483147f2b377ab differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1dbf46d7612258a2fc2684b404e439f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1dbf46d7612258a2fc2684b404e439f new file mode 100644 index 00000000..40ac2768 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1dbf46d7612258a2fc2684b404e439f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1f2ead89943baaf37e4a1a0d29345d1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1f2ead89943baaf37e4a1a0d29345d1 new file mode 100644 index 00000000..c0e3ca21 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c1/c1f2ead89943baaf37e4a1a0d29345d1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c216b5b1d46fab154e1752ec7942b98c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c216b5b1d46fab154e1752ec7942b98c new file mode 100644 index 00000000..46b4727c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c216b5b1d46fab154e1752ec7942b98c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c22244959db2f549e586decc398509f7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c22244959db2f549e586decc398509f7 new file mode 100644 index 00000000..a6560c3c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c22244959db2f549e586decc398509f7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c222af3cfdad73c093271d8b4f0f9dc0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c222af3cfdad73c093271d8b4f0f9dc0 new file mode 100644 index 00000000..d1b2418f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c222af3cfdad73c093271d8b4f0f9dc0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2281cdaf35c39844b354d88c1aeec9f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2281cdaf35c39844b354d88c1aeec9f new file mode 100644 index 00000000..08a79189 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2281cdaf35c39844b354d88c1aeec9f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c22a7d6550fe9660ba5819f7f013caf5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c22a7d6550fe9660ba5819f7f013caf5 new file mode 100644 index 00000000..15ad9d21 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c22a7d6550fe9660ba5819f7f013caf5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c248fe6baa4b5dca0f54f00e602b7ff4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c248fe6baa4b5dca0f54f00e602b7ff4 new file mode 100644 index 00000000..8566acd0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c248fe6baa4b5dca0f54f00e602b7ff4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c28f17efee00184c1df2776cacddab4c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c28f17efee00184c1df2776cacddab4c new file mode 100644 index 00000000..3c022918 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c28f17efee00184c1df2776cacddab4c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c29d2c184550d213b19143c748b2c5f4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c29d2c184550d213b19143c748b2c5f4 new file mode 100644 index 00000000..e3545530 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c29d2c184550d213b19143c748b2c5f4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2c67baf99b78442e052895ee3f5a470 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2c67baf99b78442e052895ee3f5a470 new file mode 100644 index 00000000..afc725d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2c67baf99b78442e052895ee3f5a470 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2c84d4d66371410ded21bc082e9e6cf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2c84d4d66371410ded21bc082e9e6cf new file mode 100644 index 00000000..cae7342c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2c84d4d66371410ded21bc082e9e6cf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2e14422558f6d8aea1e3dd1d0230b13 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2e14422558f6d8aea1e3dd1d0230b13 new file mode 100644 index 00000000..448a8751 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2e14422558f6d8aea1e3dd1d0230b13 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2f1409a2446a9d4243ccd9bddcfd579 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2f1409a2446a9d4243ccd9bddcfd579 new file mode 100644 index 00000000..ad3bde0c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c2/c2f1409a2446a9d4243ccd9bddcfd579 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c31a0856afcd42a3c9de87ced1de16f7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c31a0856afcd42a3c9de87ced1de16f7 new file mode 100644 index 00000000..0ecee620 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c31a0856afcd42a3c9de87ced1de16f7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3629ae240da3715c3e0a2f3d5eab760 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3629ae240da3715c3e0a2f3d5eab760 new file mode 100644 index 00000000..c20132ee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3629ae240da3715c3e0a2f3d5eab760 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3681b73ea398e197863842ca354f11e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3681b73ea398e197863842ca354f11e new file mode 100644 index 00000000..4319177a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3681b73ea398e197863842ca354f11e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3724ce12607aa6a03efe078eca238c4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3724ce12607aa6a03efe078eca238c4 new file mode 100644 index 00000000..68a103d7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3724ce12607aa6a03efe078eca238c4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c382b70800566d7e915b526276b88e43 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c382b70800566d7e915b526276b88e43 new file mode 100644 index 00000000..09fbd7ae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c382b70800566d7e915b526276b88e43 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3bc180a37e91e330bbb8c9455fe10a7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3bc180a37e91e330bbb8c9455fe10a7 new file mode 100644 index 00000000..95130016 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3bc180a37e91e330bbb8c9455fe10a7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3c76760e97f698c50db30d8a8404a14 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3c76760e97f698c50db30d8a8404a14 new file mode 100644 index 00000000..97b6df17 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3c76760e97f698c50db30d8a8404a14 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3cae44996aa8682cd6e85bcbe79e69a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3cae44996aa8682cd6e85bcbe79e69a new file mode 100644 index 00000000..219be10f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c3/c3cae44996aa8682cd6e85bcbe79e69a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c403c8331296860caf275867a8e80ed9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c403c8331296860caf275867a8e80ed9 new file mode 100644 index 00000000..ca242831 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c403c8331296860caf275867a8e80ed9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4395e7753908b1cb99e7742ad0fd84f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4395e7753908b1cb99e7742ad0fd84f new file mode 100644 index 00000000..1f83a6a9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4395e7753908b1cb99e7742ad0fd84f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c445c35991170beb7a8a79385057868f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c445c35991170beb7a8a79385057868f new file mode 100644 index 00000000..4160dbfe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c445c35991170beb7a8a79385057868f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c44d0a401550f9da6364dfd24cdc17f0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c44d0a401550f9da6364dfd24cdc17f0 new file mode 100644 index 00000000..58367f94 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c44d0a401550f9da6364dfd24cdc17f0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c455889da99ffdc617b037269fe146e8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c455889da99ffdc617b037269fe146e8 new file mode 100644 index 00000000..1cc4bddd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c455889da99ffdc617b037269fe146e8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4769dc2a042dd60105c9002e87409e5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4769dc2a042dd60105c9002e87409e5 new file mode 100644 index 00000000..9b50020d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4769dc2a042dd60105c9002e87409e5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4784533eb75c590ade8e6646ad83997 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4784533eb75c590ade8e6646ad83997 new file mode 100644 index 00000000..ba292174 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4784533eb75c590ade8e6646ad83997 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c48641fbf255159d11ad9995a09170ea b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c48641fbf255159d11ad9995a09170ea new file mode 100644 index 00000000..ec9187aa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c48641fbf255159d11ad9995a09170ea differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4a048d53c3cad2b038149272acc4d7f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4a048d53c3cad2b038149272acc4d7f new file mode 100644 index 00000000..edf3e2a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4a048d53c3cad2b038149272acc4d7f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4a914fede6bd43df2adaa6ac47b407d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4a914fede6bd43df2adaa6ac47b407d new file mode 100644 index 00000000..1acc688a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4a914fede6bd43df2adaa6ac47b407d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4aae7bc2b4eba2fbbb1216574e2064b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4aae7bc2b4eba2fbbb1216574e2064b new file mode 100644 index 00000000..28d8a4e9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4aae7bc2b4eba2fbbb1216574e2064b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4b4709ea7dc94a53db20ac02b655950 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4b4709ea7dc94a53db20ac02b655950 new file mode 100644 index 00000000..f305ce93 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4b4709ea7dc94a53db20ac02b655950 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4bbb85e91d5f5ffaba0d59f51ccf41d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4bbb85e91d5f5ffaba0d59f51ccf41d new file mode 100644 index 00000000..3cea1ec5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4bbb85e91d5f5ffaba0d59f51ccf41d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4c6950d77bd83aaac996cf9db846980 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4c6950d77bd83aaac996cf9db846980 new file mode 100644 index 00000000..9db6e9b7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4c6950d77bd83aaac996cf9db846980 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4c8c176d19ca7b2f4c5fc230b135506 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4c8c176d19ca7b2f4c5fc230b135506 new file mode 100644 index 00000000..4a2eb26f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4c8c176d19ca7b2f4c5fc230b135506 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4cbbb0417f54a679cdc136f16cf0d6a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4cbbb0417f54a679cdc136f16cf0d6a new file mode 100644 index 00000000..451ae921 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4cbbb0417f54a679cdc136f16cf0d6a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4d1d8146f933e7f3344036fdb7ef46d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4d1d8146f933e7f3344036fdb7ef46d new file mode 100644 index 00000000..dbde55d1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c4/c4d1d8146f933e7f3344036fdb7ef46d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c51a61a0cd161ef70327d0182470df32 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c51a61a0cd161ef70327d0182470df32 new file mode 100644 index 00000000..58705e22 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c51a61a0cd161ef70327d0182470df32 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c5274b522098bfd861016af347057a8e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c5274b522098bfd861016af347057a8e new file mode 100644 index 00000000..62f701c7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c5274b522098bfd861016af347057a8e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c531eb7f610c569d3e869319a5deb149 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c531eb7f610c569d3e869319a5deb149 new file mode 100644 index 00000000..646ab2dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c531eb7f610c569d3e869319a5deb149 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c533fbf0ed187211ea9611a71aca51a8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c533fbf0ed187211ea9611a71aca51a8 new file mode 100644 index 00000000..2516ca89 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c533fbf0ed187211ea9611a71aca51a8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c54b8e308f1b140ceca0cdea8cb11705 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c54b8e308f1b140ceca0cdea8cb11705 new file mode 100644 index 00000000..0ebc139c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c54b8e308f1b140ceca0cdea8cb11705 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c550987ab78fb7abd0282201775cf27b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c550987ab78fb7abd0282201775cf27b new file mode 100644 index 00000000..e5ac15b9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c550987ab78fb7abd0282201775cf27b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c55db7fe8b16248b015eed9865363e92 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c55db7fe8b16248b015eed9865363e92 new file mode 100644 index 00000000..d6adfbe6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c55db7fe8b16248b015eed9865363e92 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c55e7b6c6c2d3044d4f2094f9d2c993f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c55e7b6c6c2d3044d4f2094f9d2c993f new file mode 100644 index 00000000..eb1181d9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c55e7b6c6c2d3044d4f2094f9d2c993f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c56d3367b7e2b4cb5288b4b34b313600 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c56d3367b7e2b4cb5288b4b34b313600 new file mode 100644 index 00000000..8e801ffa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c56d3367b7e2b4cb5288b4b34b313600 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c57bc19a784e649b4d70fd250d8e2ad3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c57bc19a784e649b4d70fd250d8e2ad3 new file mode 100644 index 00000000..7fbb1023 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c57bc19a784e649b4d70fd250d8e2ad3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c5d062fe423726c68a2bdcb0a6d6d47a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c5d062fe423726c68a2bdcb0a6d6d47a new file mode 100644 index 00000000..148935a3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c5d062fe423726c68a2bdcb0a6d6d47a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c5ef5b4700ecc8f1161583af64a3d089 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c5ef5b4700ecc8f1161583af64a3d089 new file mode 100644 index 00000000..8156f6d5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c5ef5b4700ecc8f1161583af64a3d089 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c5fbf4c2c5caee0960324f8b10d81143 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c5fbf4c2c5caee0960324f8b10d81143 new file mode 100644 index 00000000..74100029 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c5/c5fbf4c2c5caee0960324f8b10d81143 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c60250adafedbb9625a24ef9fd40987c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c60250adafedbb9625a24ef9fd40987c new file mode 100644 index 00000000..bc91ee45 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c60250adafedbb9625a24ef9fd40987c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c62ab5898f1ed1d2dc832969a1f20483 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c62ab5898f1ed1d2dc832969a1f20483 new file mode 100644 index 00000000..c1d4f5b5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c62ab5898f1ed1d2dc832969a1f20483 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c643ab20d349f6328a4e2eb8afe78105 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c643ab20d349f6328a4e2eb8afe78105 new file mode 100644 index 00000000..70b39fb0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c643ab20d349f6328a4e2eb8afe78105 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c64823f0163128f3fd07a84c20e7c344 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c64823f0163128f3fd07a84c20e7c344 new file mode 100644 index 00000000..06769f3f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c64823f0163128f3fd07a84c20e7c344 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c65dcc2bef09a0d219571c12196198b9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c65dcc2bef09a0d219571c12196198b9 new file mode 100644 index 00000000..bd7b37d9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c65dcc2bef09a0d219571c12196198b9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c660155b9c698eabe4bc30e086f714ff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c660155b9c698eabe4bc30e086f714ff new file mode 100644 index 00000000..2557f149 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c660155b9c698eabe4bc30e086f714ff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c66e6657315cec64edb97e7d2187c316 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c66e6657315cec64edb97e7d2187c316 new file mode 100644 index 00000000..4f8043cc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c66e6657315cec64edb97e7d2187c316 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c68535be452a9add8efa90898e46f476 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c68535be452a9add8efa90898e46f476 new file mode 100644 index 00000000..98b0b8c5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c68535be452a9add8efa90898e46f476 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c693292d174379db7d09ed3a38b07ca0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c693292d174379db7d09ed3a38b07ca0 new file mode 100644 index 00000000..949a740d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c693292d174379db7d09ed3a38b07ca0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6aa420145b346900ea31b84e7f072fa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6aa420145b346900ea31b84e7f072fa new file mode 100644 index 00000000..b1518486 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6aa420145b346900ea31b84e7f072fa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6adbe4daa174dad08c0a47436a4f211 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6adbe4daa174dad08c0a47436a4f211 new file mode 100644 index 00000000..469faea3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6adbe4daa174dad08c0a47436a4f211 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6b2868806bce2c4d1b88399fa68ef5f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6b2868806bce2c4d1b88399fa68ef5f new file mode 100644 index 00000000..31186357 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6b2868806bce2c4d1b88399fa68ef5f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6bea0d9bb2ed66f849d02994300d123 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6bea0d9bb2ed66f849d02994300d123 new file mode 100644 index 00000000..e3b6b862 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6bea0d9bb2ed66f849d02994300d123 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6dc118577a803727006b4dc8cd6ab25 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6dc118577a803727006b4dc8cd6ab25 new file mode 100644 index 00000000..968bd044 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6dc118577a803727006b4dc8cd6ab25 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6e198319e6c0572f02ee6e4b520a23b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6e198319e6c0572f02ee6e4b520a23b new file mode 100644 index 00000000..544d630f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6e198319e6c0572f02ee6e4b520a23b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6eb7911d56028a9bb890dae0f6ebb9a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6eb7911d56028a9bb890dae0f6ebb9a new file mode 100644 index 00000000..a3695529 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6eb7911d56028a9bb890dae0f6ebb9a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6edc2a5941c9a5cbfe1d914d3eded61 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6edc2a5941c9a5cbfe1d914d3eded61 new file mode 100644 index 00000000..7a7d4efd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c6/c6edc2a5941c9a5cbfe1d914d3eded61 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7121ba3cb8ebef9a56c27ac77e8b183 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7121ba3cb8ebef9a56c27ac77e8b183 new file mode 100644 index 00000000..e38a9e41 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7121ba3cb8ebef9a56c27ac77e8b183 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c71a9726a58575628a1ac9c9cdddce96 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c71a9726a58575628a1ac9c9cdddce96 new file mode 100644 index 00000000..eb5d88d5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c71a9726a58575628a1ac9c9cdddce96 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c725bf1cc36f93f91c4e2dc559c197a5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c725bf1cc36f93f91c4e2dc559c197a5 new file mode 100644 index 00000000..6230610e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c725bf1cc36f93f91c4e2dc559c197a5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c72e8d32c82a64854431df2245d1a320 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c72e8d32c82a64854431df2245d1a320 new file mode 100644 index 00000000..b83a4be3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c72e8d32c82a64854431df2245d1a320 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c73515908b2f0ea306b8532610acd1cd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c73515908b2f0ea306b8532610acd1cd new file mode 100644 index 00000000..c5de799b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c73515908b2f0ea306b8532610acd1cd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7383411c875470d6f042a79238c89ee b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7383411c875470d6f042a79238c89ee new file mode 100644 index 00000000..90bcdbb2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7383411c875470d6f042a79238c89ee differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c73c591afc63bfda5713a0aad23754f7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c73c591afc63bfda5713a0aad23754f7 new file mode 100644 index 00000000..a1235287 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c73c591afc63bfda5713a0aad23754f7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7a737e7e6c52c9e16d896a7e497ccb4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7a737e7e6c52c9e16d896a7e497ccb4 new file mode 100644 index 00000000..88f204cc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7a737e7e6c52c9e16d896a7e497ccb4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7a856db869410f7642a3322153fbdd3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7a856db869410f7642a3322153fbdd3 new file mode 100644 index 00000000..e7825e9d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7a856db869410f7642a3322153fbdd3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7a9973fec98985e0ae8a5351b70b928 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7a9973fec98985e0ae8a5351b70b928 new file mode 100644 index 00000000..defa2c9c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7a9973fec98985e0ae8a5351b70b928 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7aed4d1f3490a12e51bc2763e32b36a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7aed4d1f3490a12e51bc2763e32b36a new file mode 100644 index 00000000..673a8441 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7aed4d1f3490a12e51bc2763e32b36a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7b76890a98ff48e95a16582b3a5564c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7b76890a98ff48e95a16582b3a5564c new file mode 100644 index 00000000..3244a8e8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7b76890a98ff48e95a16582b3a5564c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7b7d415d70bc3c0a0dcad46272d30e1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7b7d415d70bc3c0a0dcad46272d30e1 new file mode 100644 index 00000000..fbf42620 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7b7d415d70bc3c0a0dcad46272d30e1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7ff81de82e2001e10412e1466d235a6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7ff81de82e2001e10412e1466d235a6 new file mode 100644 index 00000000..1f12e45e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c7/c7ff81de82e2001e10412e1466d235a6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c834c6288762e0cd2bd910de78c812fa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c834c6288762e0cd2bd910de78c812fa new file mode 100644 index 00000000..507b1427 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c834c6288762e0cd2bd910de78c812fa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c837131db7c7ca8d0e109687eca31c49 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c837131db7c7ca8d0e109687eca31c49 new file mode 100644 index 00000000..84a3fe0b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c837131db7c7ca8d0e109687eca31c49 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c8792b4003554ccba608d40700d19036 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c8792b4003554ccba608d40700d19036 new file mode 100644 index 00000000..129a034e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c8792b4003554ccba608d40700d19036 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c8d477fff33329960d95ee8bb5d1f947 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c8d477fff33329960d95ee8bb5d1f947 new file mode 100644 index 00000000..3d8a9c76 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c8d477fff33329960d95ee8bb5d1f947 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c8d7fc16042e6e38c9aa301e92db4457 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c8d7fc16042e6e38c9aa301e92db4457 new file mode 100644 index 00000000..152fc960 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c8d7fc16042e6e38c9aa301e92db4457 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c8f80f2f9aeb5f92f77103872605501e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c8f80f2f9aeb5f92f77103872605501e new file mode 100644 index 00000000..31926aff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c8/c8f80f2f9aeb5f92f77103872605501e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9238247d550c5d6b3079dc34cff7c38 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9238247d550c5d6b3079dc34cff7c38 new file mode 100644 index 00000000..3022e553 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9238247d550c5d6b3079dc34cff7c38 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c937553b4702bdb05caee1035558c1c9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c937553b4702bdb05caee1035558c1c9 new file mode 100644 index 00000000..6f3d297d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c937553b4702bdb05caee1035558c1c9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c944be0b41f1a2666420f165ed47c6b0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c944be0b41f1a2666420f165ed47c6b0 new file mode 100644 index 00000000..19ce85ee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c944be0b41f1a2666420f165ed47c6b0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c94d0c6b786dd256dcaa0e618187c40d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c94d0c6b786dd256dcaa0e618187c40d new file mode 100644 index 00000000..21ec3edb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c94d0c6b786dd256dcaa0e618187c40d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9719867f3b611fe3534e21ce47c39b9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9719867f3b611fe3534e21ce47c39b9 new file mode 100644 index 00000000..74b584f4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9719867f3b611fe3534e21ce47c39b9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c97b774784467191ff0d2647f82a70a5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c97b774784467191ff0d2647f82a70a5 new file mode 100644 index 00000000..cff8f585 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c97b774784467191ff0d2647f82a70a5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c982043276e56018b5ec90b47d3da526 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c982043276e56018b5ec90b47d3da526 new file mode 100644 index 00000000..1ab648c1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c982043276e56018b5ec90b47d3da526 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c992918731e919c298e32278feec313f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c992918731e919c298e32278feec313f new file mode 100644 index 00000000..9b7a52d1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c992918731e919c298e32278feec313f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c99649f064f9894bb5856d20cb5186b2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c99649f064f9894bb5856d20cb5186b2 new file mode 100644 index 00000000..efce64f4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c99649f064f9894bb5856d20cb5186b2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c997d3fe173492ebf0e1d724dc38a73f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c997d3fe173492ebf0e1d724dc38a73f new file mode 100644 index 00000000..a3f2ea60 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c997d3fe173492ebf0e1d724dc38a73f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c99d12bddf9c150ccd4dc48eea734c9d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c99d12bddf9c150ccd4dc48eea734c9d new file mode 100644 index 00000000..c4307965 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c99d12bddf9c150ccd4dc48eea734c9d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c99d2872302f362cf2020eef439a2f63 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c99d2872302f362cf2020eef439a2f63 new file mode 100644 index 00000000..277fae9c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c99d2872302f362cf2020eef439a2f63 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9a05d0023de52b7a98602dbda1c7f91 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9a05d0023de52b7a98602dbda1c7f91 new file mode 100644 index 00000000..a767a976 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9a05d0023de52b7a98602dbda1c7f91 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9dd082ee85685cb62ab131ba3f38d6a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9dd082ee85685cb62ab131ba3f38d6a new file mode 100644 index 00000000..60132578 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9dd082ee85685cb62ab131ba3f38d6a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9f80ac4958e11db9e6c7f9a8e68bc70 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9f80ac4958e11db9e6c7f9a8e68bc70 new file mode 100644 index 00000000..5131398a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9f80ac4958e11db9e6c7f9a8e68bc70 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9ff71a3f7bcf84baec087087b47415e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9ff71a3f7bcf84baec087087b47415e new file mode 100644 index 00000000..c623c626 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/c9/c9ff71a3f7bcf84baec087087b47415e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca0146c3fb53c688fe769313a0cabaeb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca0146c3fb53c688fe769313a0cabaeb new file mode 100644 index 00000000..f5e8eb99 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca0146c3fb53c688fe769313a0cabaeb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca16aec9b8fff5f491e2050fed11e76d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca16aec9b8fff5f491e2050fed11e76d new file mode 100644 index 00000000..9098f2a0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca16aec9b8fff5f491e2050fed11e76d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca3bf5a26d2ec70d5451f55f451118e2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca3bf5a26d2ec70d5451f55f451118e2 new file mode 100644 index 00000000..4e4e0b23 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca3bf5a26d2ec70d5451f55f451118e2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca48d7ff88c07afae47f878d5f476842 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca48d7ff88c07afae47f878d5f476842 new file mode 100644 index 00000000..da79acc4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca48d7ff88c07afae47f878d5f476842 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca500e64b4b13a1c8f0281ac670727a0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca500e64b4b13a1c8f0281ac670727a0 new file mode 100644 index 00000000..afe8f52f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca500e64b4b13a1c8f0281ac670727a0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca731902cdaca65780904b3520690865 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca731902cdaca65780904b3520690865 new file mode 100644 index 00000000..604cf04d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca731902cdaca65780904b3520690865 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca7aeac664fa7c7e6d2d1a973cf97114 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca7aeac664fa7c7e6d2d1a973cf97114 new file mode 100644 index 00000000..9d905263 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca7aeac664fa7c7e6d2d1a973cf97114 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca7d4aeab7994185771af3e06619fe3d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca7d4aeab7994185771af3e06619fe3d new file mode 100644 index 00000000..262cc15b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca7d4aeab7994185771af3e06619fe3d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca80a5d04d4a4b108c94e14bb8be2343 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca80a5d04d4a4b108c94e14bb8be2343 new file mode 100644 index 00000000..75a2a25a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca80a5d04d4a4b108c94e14bb8be2343 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca80de249ca7b19a6e1b1d2c316efc68 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca80de249ca7b19a6e1b1d2c316efc68 new file mode 100644 index 00000000..b178af7e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca80de249ca7b19a6e1b1d2c316efc68 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca843826193677d324cf618603b058a0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca843826193677d324cf618603b058a0 new file mode 100644 index 00000000..40625000 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca843826193677d324cf618603b058a0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca8deb31d4650dbabcea211985b6719f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca8deb31d4650dbabcea211985b6719f new file mode 100644 index 00000000..74dab045 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca8deb31d4650dbabcea211985b6719f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca9631c7dc33e5b17530790092036ce8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca9631c7dc33e5b17530790092036ce8 new file mode 100644 index 00000000..624dffb2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca9631c7dc33e5b17530790092036ce8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca9defbdf0cfe939980a2202c5f28acd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca9defbdf0cfe939980a2202c5f28acd new file mode 100644 index 00000000..6f1613d7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/ca9defbdf0cfe939980a2202c5f28acd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/caa181d2f54bd18828c2f221c5132a40 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/caa181d2f54bd18828c2f221c5132a40 new file mode 100644 index 00000000..25ae12b8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/caa181d2f54bd18828c2f221c5132a40 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/cab60bd7fd675e05bc83cfdd5460cd25 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/cab60bd7fd675e05bc83cfdd5460cd25 new file mode 100644 index 00000000..7ad1a82c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/cab60bd7fd675e05bc83cfdd5460cd25 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/caea3fd3998294f7be1da2b5c45a7828 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/caea3fd3998294f7be1da2b5c45a7828 new file mode 100644 index 00000000..56fa94aa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ca/caea3fd3998294f7be1da2b5c45a7828 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb03d3e5d5741423b6ce6126571d1176 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb03d3e5d5741423b6ce6126571d1176 new file mode 100644 index 00000000..547c25d5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb03d3e5d5741423b6ce6126571d1176 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb1fa97729873bf951801b1a12444caa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb1fa97729873bf951801b1a12444caa new file mode 100644 index 00000000..d6d491cb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb1fa97729873bf951801b1a12444caa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb46f382ddd69b085163b977779f9bd8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb46f382ddd69b085163b977779f9bd8 new file mode 100644 index 00000000..0ccbe1e5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb46f382ddd69b085163b977779f9bd8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb4ea0d0e27d0627776c787a7e7f3d8e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb4ea0d0e27d0627776c787a7e7f3d8e new file mode 100644 index 00000000..69e3e5db Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb4ea0d0e27d0627776c787a7e7f3d8e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb5270a24c243f86f45eebbafc3955e1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb5270a24c243f86f45eebbafc3955e1 new file mode 100644 index 00000000..713b9b14 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb5270a24c243f86f45eebbafc3955e1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb81f2df9bef0ffaec1f073d1d35745b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb81f2df9bef0ffaec1f073d1d35745b new file mode 100644 index 00000000..97cac06a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb81f2df9bef0ffaec1f073d1d35745b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb880fdd07b2cca9d923bae800533660 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb880fdd07b2cca9d923bae800533660 new file mode 100644 index 00000000..b9382d47 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cb880fdd07b2cca9d923bae800533660 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbafaa27a2c5f03e604da545c96e348a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbafaa27a2c5f03e604da545c96e348a new file mode 100644 index 00000000..b20ce156 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbafaa27a2c5f03e604da545c96e348a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbb4d35eb88e75886f7fc4b1ca7e9dce b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbb4d35eb88e75886f7fc4b1ca7e9dce new file mode 100644 index 00000000..e1ed7387 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbb4d35eb88e75886f7fc4b1ca7e9dce differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbb5c9ecfb6a6a3b8a1858ff8de941a9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbb5c9ecfb6a6a3b8a1858ff8de941a9 new file mode 100644 index 00000000..01c88efa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbb5c9ecfb6a6a3b8a1858ff8de941a9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbc7352ec260987ac864007aa1d40419 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbc7352ec260987ac864007aa1d40419 new file mode 100644 index 00000000..6fb4d965 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbc7352ec260987ac864007aa1d40419 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbc963165b0d738bee94498a2ca52ec6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbc963165b0d738bee94498a2ca52ec6 new file mode 100644 index 00000000..a1827c1e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbc963165b0d738bee94498a2ca52ec6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbca2f4c5bca6fc95561b87650ac6bc4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbca2f4c5bca6fc95561b87650ac6bc4 new file mode 100644 index 00000000..85f84dd7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbca2f4c5bca6fc95561b87650ac6bc4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbdd2d06de756ebfdf1a09b4bf632b2f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbdd2d06de756ebfdf1a09b4bf632b2f new file mode 100644 index 00000000..8abc3d8d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbdd2d06de756ebfdf1a09b4bf632b2f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbf34c69c6bf77ce2bb192729c033986 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbf34c69c6bf77ce2bb192729c033986 new file mode 100644 index 00000000..324f657a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbf34c69c6bf77ce2bb192729c033986 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbfd456bce0e45ef873f19e294e3f1d9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbfd456bce0e45ef873f19e294e3f1d9 new file mode 100644 index 00000000..4420b872 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cb/cbfd456bce0e45ef873f19e294e3f1d9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc0dd0b7531c6660c0f928fe1bcd38bc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc0dd0b7531c6660c0f928fe1bcd38bc new file mode 100644 index 00000000..644f9adb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc0dd0b7531c6660c0f928fe1bcd38bc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc1e61c13fffdf49e6082f8d76bbd07f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc1e61c13fffdf49e6082f8d76bbd07f new file mode 100644 index 00000000..65753cdf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc1e61c13fffdf49e6082f8d76bbd07f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc23dbf7d8e5aa34c4dceb3a6a39c14a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc23dbf7d8e5aa34c4dceb3a6a39c14a new file mode 100644 index 00000000..bf70640d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc23dbf7d8e5aa34c4dceb3a6a39c14a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc4bd216404f646071bcece879dc5d3d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc4bd216404f646071bcece879dc5d3d new file mode 100644 index 00000000..c3546c3e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc4bd216404f646071bcece879dc5d3d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc673cdd3095ddef54f12bb8f983ed93 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc673cdd3095ddef54f12bb8f983ed93 new file mode 100644 index 00000000..565bd6db Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cc673cdd3095ddef54f12bb8f983ed93 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/ccc823ee5bd9ce9dfaa1e6a2b54c988e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/ccc823ee5bd9ce9dfaa1e6a2b54c988e new file mode 100644 index 00000000..48394287 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/ccc823ee5bd9ce9dfaa1e6a2b54c988e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/ccd223438e423e11f7fe5a86b06bb23f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/ccd223438e423e11f7fe5a86b06bb23f new file mode 100644 index 00000000..79b3f373 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/ccd223438e423e11f7fe5a86b06bb23f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cced317d1170e23c86ecdc979250292f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cced317d1170e23c86ecdc979250292f new file mode 100644 index 00000000..384ff3f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/cced317d1170e23c86ecdc979250292f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/ccfba7ca6d30138551ef02fa325cb6a9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/ccfba7ca6d30138551ef02fa325cb6a9 new file mode 100644 index 00000000..93eebce1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/ccfba7ca6d30138551ef02fa325cb6a9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/ccff49e15f677a2a849a5a8342d32385 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/ccff49e15f677a2a849a5a8342d32385 new file mode 100644 index 00000000..1b335ba5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cc/ccff49e15f677a2a849a5a8342d32385 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd0a25853d4b4946757332639e34ef32 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd0a25853d4b4946757332639e34ef32 new file mode 100644 index 00000000..a9abf69f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd0a25853d4b4946757332639e34ef32 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd220731ee9871c807028b737d5f1534 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd220731ee9871c807028b737d5f1534 new file mode 100644 index 00000000..225f441b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd220731ee9871c807028b737d5f1534 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd22a7ff5957738d80420e932e122d37 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd22a7ff5957738d80420e932e122d37 new file mode 100644 index 00000000..dca36eb4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd22a7ff5957738d80420e932e122d37 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd2a00a7d41480e9c52653f9b9a67387 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd2a00a7d41480e9c52653f9b9a67387 new file mode 100644 index 00000000..a22625dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd2a00a7d41480e9c52653f9b9a67387 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd2e140404ce8c028ba5607f3e4c8ae3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd2e140404ce8c028ba5607f3e4c8ae3 new file mode 100644 index 00000000..6fbe931a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd2e140404ce8c028ba5607f3e4c8ae3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd44d67eea1277384a69747c4fad71af b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd44d67eea1277384a69747c4fad71af new file mode 100644 index 00000000..807b8959 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd44d67eea1277384a69747c4fad71af differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd50ce2c2f2b9270920f59bc8b14dbac b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd50ce2c2f2b9270920f59bc8b14dbac new file mode 100644 index 00000000..91ec4c5c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd50ce2c2f2b9270920f59bc8b14dbac differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd54e27be6e9066bc3b0520d5b7fbfaf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd54e27be6e9066bc3b0520d5b7fbfaf new file mode 100644 index 00000000..0de4452a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd54e27be6e9066bc3b0520d5b7fbfaf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd635fb87a1853946495ca39d830374a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd635fb87a1853946495ca39d830374a new file mode 100644 index 00000000..57dbe0f6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd635fb87a1853946495ca39d830374a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd67b0a3cf4ea1e8598a9ec1e4f10d0d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd67b0a3cf4ea1e8598a9ec1e4f10d0d new file mode 100644 index 00000000..a2143018 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd67b0a3cf4ea1e8598a9ec1e4f10d0d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd7029679ae89eaf9411d1450ba29193 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd7029679ae89eaf9411d1450ba29193 new file mode 100644 index 00000000..aeaf02c7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd7029679ae89eaf9411d1450ba29193 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd735acc3904e8900d8b3141d5060269 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd735acc3904e8900d8b3141d5060269 new file mode 100644 index 00000000..502f33e0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd735acc3904e8900d8b3141d5060269 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd82a72635e66aac9150fb01e3b1fae5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd82a72635e66aac9150fb01e3b1fae5 new file mode 100644 index 00000000..c2c8d69c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd82a72635e66aac9150fb01e3b1fae5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd938b2ce91067137686234dbf50bd92 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd938b2ce91067137686234dbf50bd92 new file mode 100644 index 00000000..f36425d5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd938b2ce91067137686234dbf50bd92 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd95dd5e4e2e53108164af7c2ff9cf01 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd95dd5e4e2e53108164af7c2ff9cf01 new file mode 100644 index 00000000..d5a53d03 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd95dd5e4e2e53108164af7c2ff9cf01 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd98b2fc12ddd5560d741ca1223d2c76 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd98b2fc12ddd5560d741ca1223d2c76 new file mode 100644 index 00000000..addbc50c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cd98b2fc12ddd5560d741ca1223d2c76 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cda12c22cf23f8292bf8239a0505a70b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cda12c22cf23f8292bf8239a0505a70b new file mode 100644 index 00000000..3deebd24 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cda12c22cf23f8292bf8239a0505a70b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cda760445d6ecf35f854fe34adde059c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cda760445d6ecf35f854fe34adde059c new file mode 100644 index 00000000..5c39317e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cda760445d6ecf35f854fe34adde059c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdb1899ced818a977418330649c85d32 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdb1899ced818a977418330649c85d32 new file mode 100644 index 00000000..803d74ae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdb1899ced818a977418330649c85d32 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdb396dc666d140fa054c2a9e11203e1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdb396dc666d140fa054c2a9e11203e1 new file mode 100644 index 00000000..9bedde01 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdb396dc666d140fa054c2a9e11203e1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdbb88cd5a042d193c8a3122c05b2b96 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdbb88cd5a042d193c8a3122c05b2b96 new file mode 100644 index 00000000..a4ce5c5c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdbb88cd5a042d193c8a3122c05b2b96 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdc23a3d03a664f0c4174337f431fdaf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdc23a3d03a664f0c4174337f431fdaf new file mode 100644 index 00000000..dcaefee4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdc23a3d03a664f0c4174337f431fdaf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdf161a77935c13bccc7b85c77f6001f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdf161a77935c13bccc7b85c77f6001f new file mode 100644 index 00000000..1816d523 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdf161a77935c13bccc7b85c77f6001f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdf61fbb895926b8c7742ea4c0d3b83f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdf61fbb895926b8c7742ea4c0d3b83f new file mode 100644 index 00000000..8840590c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cd/cdf61fbb895926b8c7742ea4c0d3b83f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce1f482fb0c7ece105146c36b727b8b1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce1f482fb0c7ece105146c36b727b8b1 new file mode 100644 index 00000000..bda253d0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce1f482fb0c7ece105146c36b727b8b1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce24a0cb1115e75d298a170596249e64 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce24a0cb1115e75d298a170596249e64 new file mode 100644 index 00000000..af88c45a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce24a0cb1115e75d298a170596249e64 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce2ed09efeaa22aef5a97606a6de8ef0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce2ed09efeaa22aef5a97606a6de8ef0 new file mode 100644 index 00000000..6b5632ff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce2ed09efeaa22aef5a97606a6de8ef0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce4f11acf638ea329699eb33ac512b63 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce4f11acf638ea329699eb33ac512b63 new file mode 100644 index 00000000..4f142e94 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce4f11acf638ea329699eb33ac512b63 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce51eb409fe860469f22d5aa23f2e2f4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce51eb409fe860469f22d5aa23f2e2f4 new file mode 100644 index 00000000..1051ab69 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce51eb409fe860469f22d5aa23f2e2f4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce64d29f176771ecb258e66cb0c33db9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce64d29f176771ecb258e66cb0c33db9 new file mode 100644 index 00000000..1150514e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce64d29f176771ecb258e66cb0c33db9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce722257f6ef41cab12a50084064c313 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce722257f6ef41cab12a50084064c313 new file mode 100644 index 00000000..cf54377a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ce722257f6ef41cab12a50084064c313 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ced61adde2bfcf8d84e74baa5a72aaa4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ced61adde2bfcf8d84e74baa5a72aaa4 new file mode 100644 index 00000000..a8576805 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/ced61adde2bfcf8d84e74baa5a72aaa4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/cee28434e07f01a592de85fb024908be b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/cee28434e07f01a592de85fb024908be new file mode 100644 index 00000000..80b4b657 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/cee28434e07f01a592de85fb024908be differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/cefbfe7907ec4b4d0acc4522b45d2ab3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/cefbfe7907ec4b4d0acc4522b45d2ab3 new file mode 100644 index 00000000..d88b723b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ce/cefbfe7907ec4b4d0acc4522b45d2ab3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf37d499c9b3cc85b08a639a6cb11b5f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf37d499c9b3cc85b08a639a6cb11b5f new file mode 100644 index 00000000..b062ccd8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf37d499c9b3cc85b08a639a6cb11b5f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf3817de175490589a103fb185063255 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf3817de175490589a103fb185063255 new file mode 100644 index 00000000..3ca746a6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf3817de175490589a103fb185063255 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf6195e0192606496d691f1ee9ef5e8e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf6195e0192606496d691f1ee9ef5e8e new file mode 100644 index 00000000..4f1e9abe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf6195e0192606496d691f1ee9ef5e8e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf7b5114997b282cbc74866262492ed4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf7b5114997b282cbc74866262492ed4 new file mode 100644 index 00000000..8b3f7185 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf7b5114997b282cbc74866262492ed4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf80470bc4821e17e336dc56db1e3c14 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf80470bc4821e17e336dc56db1e3c14 new file mode 100644 index 00000000..2630a6ab Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf80470bc4821e17e336dc56db1e3c14 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf873d25134b52c23d752ae6019e3c84 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf873d25134b52c23d752ae6019e3c84 new file mode 100644 index 00000000..652b3177 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cf873d25134b52c23d752ae6019e3c84 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cfbed8dfb422356cbfaca49e07de4033 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cfbed8dfb422356cbfaca49e07de4033 new file mode 100644 index 00000000..354beac5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cfbed8dfb422356cbfaca49e07de4033 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cfd4c7bae94a9c37fe6db5097bed1e23 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cfd4c7bae94a9c37fe6db5097bed1e23 new file mode 100644 index 00000000..f882b9eb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/cf/cfd4c7bae94a9c37fe6db5097bed1e23 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d027f334a9f9b80e8bd0ac7820d15894 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d027f334a9f9b80e8bd0ac7820d15894 new file mode 100644 index 00000000..4de4033f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d027f334a9f9b80e8bd0ac7820d15894 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d03e24ef2ba67e9ff3d09e0183c3554a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d03e24ef2ba67e9ff3d09e0183c3554a new file mode 100644 index 00000000..7e42e75c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d03e24ef2ba67e9ff3d09e0183c3554a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d04c38b67fe4728b1cbc3ec4ceaa3c3d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d04c38b67fe4728b1cbc3ec4ceaa3c3d new file mode 100644 index 00000000..4dd7ad3f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d04c38b67fe4728b1cbc3ec4ceaa3c3d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0591977c53047acd18b888358e03999 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0591977c53047acd18b888358e03999 new file mode 100644 index 00000000..e2335643 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0591977c53047acd18b888358e03999 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d063148e1bf3b979f56a8d41aeef3af1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d063148e1bf3b979f56a8d41aeef3af1 new file mode 100644 index 00000000..e889a83f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d063148e1bf3b979f56a8d41aeef3af1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d06f6939e9a729189e8b67cfb159759c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d06f6939e9a729189e8b67cfb159759c new file mode 100644 index 00000000..71ea6cdd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d06f6939e9a729189e8b67cfb159759c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0981e83bfa3d5c2fec87977640c6631 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0981e83bfa3d5c2fec87977640c6631 new file mode 100644 index 00000000..559df5db Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0981e83bfa3d5c2fec87977640c6631 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d099f4d8deea625fa6e88af8bf519d3e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d099f4d8deea625fa6e88af8bf519d3e new file mode 100644 index 00000000..7e4c4599 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d099f4d8deea625fa6e88af8bf519d3e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0b068c731212f8d77f1dfaae229bffb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0b068c731212f8d77f1dfaae229bffb new file mode 100644 index 00000000..3219ddc7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0b068c731212f8d77f1dfaae229bffb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0b92c64cd44431ebbee9a4ca58d62d9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0b92c64cd44431ebbee9a4ca58d62d9 new file mode 100644 index 00000000..3790a22e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0b92c64cd44431ebbee9a4ca58d62d9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0c2e8170db887bbd4a1426f2c869041 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0c2e8170db887bbd4a1426f2c869041 new file mode 100644 index 00000000..3550909a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0c2e8170db887bbd4a1426f2c869041 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0e82096e129fcc7e914c3efb720657f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0e82096e129fcc7e914c3efb720657f new file mode 100644 index 00000000..19bf5d1b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0e82096e129fcc7e914c3efb720657f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0f3b302b65b78a98d8f47bc18d7fa02 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0f3b302b65b78a98d8f47bc18d7fa02 new file mode 100644 index 00000000..702a473b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0f3b302b65b78a98d8f47bc18d7fa02 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0f404232172f90d4a842bf39c9e3510 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0f404232172f90d4a842bf39c9e3510 new file mode 100644 index 00000000..b9791125 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0f404232172f90d4a842bf39c9e3510 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0f5889b9e192b8c3bbab928a92aceed b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0f5889b9e192b8c3bbab928a92aceed new file mode 100644 index 00000000..dbffe67f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d0/d0f5889b9e192b8c3bbab928a92aceed differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d12bddc61d86d25c133ed317ffd8a703 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d12bddc61d86d25c133ed317ffd8a703 new file mode 100644 index 00000000..3a39451e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d12bddc61d86d25c133ed317ffd8a703 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d18854dd210778b1df495b58fc310439 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d18854dd210778b1df495b58fc310439 new file mode 100644 index 00000000..f9864c50 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d18854dd210778b1df495b58fc310439 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d19c683652002aeab8ba461dfdbe09ce b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d19c683652002aeab8ba461dfdbe09ce new file mode 100644 index 00000000..0d4f5afa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d19c683652002aeab8ba461dfdbe09ce differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d1a0a7e4baa525c683a6ae4497cfe431 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d1a0a7e4baa525c683a6ae4497cfe431 new file mode 100644 index 00000000..5e3b6178 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d1a0a7e4baa525c683a6ae4497cfe431 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d1ddcf5db967dc3ff78b0afa80809266 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d1ddcf5db967dc3ff78b0afa80809266 new file mode 100644 index 00000000..961d0ad2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d1ddcf5db967dc3ff78b0afa80809266 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d1fe4b3d1e51e362bf17a1100170544e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d1fe4b3d1e51e362bf17a1100170544e new file mode 100644 index 00000000..cf35dd71 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d1fe4b3d1e51e362bf17a1100170544e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d1ffdd9d9c3bc0a39d6f57fddd78a7aa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d1ffdd9d9c3bc0a39d6f57fddd78a7aa new file mode 100644 index 00000000..596baa4d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d1/d1ffdd9d9c3bc0a39d6f57fddd78a7aa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d21a6e1ffa22e3114e0008337532c426 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d21a6e1ffa22e3114e0008337532c426 new file mode 100644 index 00000000..a03d1b34 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d21a6e1ffa22e3114e0008337532c426 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d22219b1832b9269f5570770bc7bafb9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d22219b1832b9269f5570770bc7bafb9 new file mode 100644 index 00000000..b49197ce Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d22219b1832b9269f5570770bc7bafb9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d22c9e09a91d1b036ebc56ad47659581 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d22c9e09a91d1b036ebc56ad47659581 new file mode 100644 index 00000000..a98936a0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d22c9e09a91d1b036ebc56ad47659581 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d23e40a9061399c63287888a3cb38d21 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d23e40a9061399c63287888a3cb38d21 new file mode 100644 index 00000000..0ab001db Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d23e40a9061399c63287888a3cb38d21 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2477ab064d66262ac8b6769b5c574f2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2477ab064d66262ac8b6769b5c574f2 new file mode 100644 index 00000000..fc6de91a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2477ab064d66262ac8b6769b5c574f2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d256e8f847f00f2b25f4fccfec551338 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d256e8f847f00f2b25f4fccfec551338 new file mode 100644 index 00000000..70a0be80 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d256e8f847f00f2b25f4fccfec551338 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d26110cd96c599c49184075875c0a685 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d26110cd96c599c49184075875c0a685 new file mode 100644 index 00000000..147fa857 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d26110cd96c599c49184075875c0a685 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d26ad006bdb2e6fce88cf02d9f89c754 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d26ad006bdb2e6fce88cf02d9f89c754 new file mode 100644 index 00000000..01d289e0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d26ad006bdb2e6fce88cf02d9f89c754 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d27215392875fa1078771de986dea811 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d27215392875fa1078771de986dea811 new file mode 100644 index 00000000..17b220b2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d27215392875fa1078771de986dea811 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d28f23205af825a02397035ee38ddd74 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d28f23205af825a02397035ee38ddd74 new file mode 100644 index 00000000..ac378d98 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d28f23205af825a02397035ee38ddd74 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2942e528b336ad49ef73e6bca5422da b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2942e528b336ad49ef73e6bca5422da new file mode 100644 index 00000000..18e3c7af Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2942e528b336ad49ef73e6bca5422da differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d29f54479d2502ec2b0d05da4cc6c734 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d29f54479d2502ec2b0d05da4cc6c734 new file mode 100644 index 00000000..ee51f81c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d29f54479d2502ec2b0d05da4cc6c734 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2b75fea33a00347439c1e6fd2264fb4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2b75fea33a00347439c1e6fd2264fb4 new file mode 100644 index 00000000..2b6d74b4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2b75fea33a00347439c1e6fd2264fb4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2c2660356bb793aacebf1f5f1f4f91d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2c2660356bb793aacebf1f5f1f4f91d new file mode 100644 index 00000000..bfd6cb39 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2c2660356bb793aacebf1f5f1f4f91d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2debe778d378660ff3b1e3548c43324 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2debe778d378660ff3b1e3548c43324 new file mode 100644 index 00000000..b2082386 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2debe778d378660ff3b1e3548c43324 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2e80a83dfafadf936984f948130c308 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2e80a83dfafadf936984f948130c308 new file mode 100644 index 00000000..15776a24 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2e80a83dfafadf936984f948130c308 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2eb0340c3868e2ebef8d8f5b395a268 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2eb0340c3868e2ebef8d8f5b395a268 new file mode 100644 index 00000000..9dbcb6d4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2eb0340c3868e2ebef8d8f5b395a268 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2fab5f52cb33d3908070a51f24d2f5c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2fab5f52cb33d3908070a51f24d2f5c new file mode 100644 index 00000000..04cbf947 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2fab5f52cb33d3908070a51f24d2f5c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2fba17ebb4d1777ce69900b8a790110 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2fba17ebb4d1777ce69900b8a790110 new file mode 100644 index 00000000..20f568f6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d2/d2fba17ebb4d1777ce69900b8a790110 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d317625fc75baa9333019ba905873d26 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d317625fc75baa9333019ba905873d26 new file mode 100644 index 00000000..d19cbbc6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d317625fc75baa9333019ba905873d26 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d31c6808d04b329a2aa69141f31c8e4f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d31c6808d04b329a2aa69141f31c8e4f new file mode 100644 index 00000000..58facf36 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d31c6808d04b329a2aa69141f31c8e4f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3253fad348176eaf943fb0e1bbdb314 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3253fad348176eaf943fb0e1bbdb314 new file mode 100644 index 00000000..584b2b88 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3253fad348176eaf943fb0e1bbdb314 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d327472205c45188bbeb82b98c3cabcf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d327472205c45188bbeb82b98c3cabcf new file mode 100644 index 00000000..2c476f75 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d327472205c45188bbeb82b98c3cabcf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d327bced4f6ece03dcf6762ec306f2e0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d327bced4f6ece03dcf6762ec306f2e0 new file mode 100644 index 00000000..e0578f58 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d327bced4f6ece03dcf6762ec306f2e0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d33833e2173363209c33edfd02caa870 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d33833e2173363209c33edfd02caa870 new file mode 100644 index 00000000..3867e7c7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d33833e2173363209c33edfd02caa870 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d37041ad09e06d4901f5363e16832162 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d37041ad09e06d4901f5363e16832162 new file mode 100644 index 00000000..aed27d3d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d37041ad09e06d4901f5363e16832162 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d37349f35ecbe008424aaa51d015522c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d37349f35ecbe008424aaa51d015522c new file mode 100644 index 00000000..e9b0a4dc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d37349f35ecbe008424aaa51d015522c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3734bc830c3f8a2d8c019e4fb151b47 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3734bc830c3f8a2d8c019e4fb151b47 new file mode 100644 index 00000000..f698d32a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3734bc830c3f8a2d8c019e4fb151b47 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d377d55b001dc087e416f66e985df0ba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d377d55b001dc087e416f66e985df0ba new file mode 100644 index 00000000..343aba7f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d377d55b001dc087e416f66e985df0ba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d37fc925c2c4200a2cdccdce88a5c372 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d37fc925c2c4200a2cdccdce88a5c372 new file mode 100644 index 00000000..79f28fef Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d37fc925c2c4200a2cdccdce88a5c372 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d384832f4968cd67d955630555da05a3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d384832f4968cd67d955630555da05a3 new file mode 100644 index 00000000..f7f42209 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d384832f4968cd67d955630555da05a3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3d801e0b9a4902f1787c63531b37d27 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3d801e0b9a4902f1787c63531b37d27 new file mode 100644 index 00000000..ad74fccc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3d801e0b9a4902f1787c63531b37d27 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3e18f904394e184747bc48d13f61ec0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3e18f904394e184747bc48d13f61ec0 new file mode 100644 index 00000000..1a1d5d2f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3e18f904394e184747bc48d13f61ec0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3ed436b8f751357c77dddffe88340bd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3ed436b8f751357c77dddffe88340bd new file mode 100644 index 00000000..8f868862 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3ed436b8f751357c77dddffe88340bd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3f22b5afa30534e307cb5648258472e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3f22b5afa30534e307cb5648258472e new file mode 100644 index 00000000..e4ed136c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d3/d3f22b5afa30534e307cb5648258472e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d405dd3ec989e6f2450455768e2be08e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d405dd3ec989e6f2450455768e2be08e new file mode 100644 index 00000000..3d589c03 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d405dd3ec989e6f2450455768e2be08e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d42deee4dbbb597208d84003d372f051 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d42deee4dbbb597208d84003d372f051 new file mode 100644 index 00000000..750b3063 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d42deee4dbbb597208d84003d372f051 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d43f306877bfe8ca0d738c5bf64c641a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d43f306877bfe8ca0d738c5bf64c641a new file mode 100644 index 00000000..0e8f0702 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d43f306877bfe8ca0d738c5bf64c641a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d469814f2852d06b4467a3835dc250dc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d469814f2852d06b4467a3835dc250dc new file mode 100644 index 00000000..4d1c7469 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d469814f2852d06b4467a3835dc250dc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d46c0f19862e9a45e17d713b2795de8f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d46c0f19862e9a45e17d713b2795de8f new file mode 100644 index 00000000..9e8674f7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d46c0f19862e9a45e17d713b2795de8f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4a934d99f86865fdd8953aabf013c9b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4a934d99f86865fdd8953aabf013c9b new file mode 100644 index 00000000..bd252616 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4a934d99f86865fdd8953aabf013c9b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4ab2d184bb15b5530877c6b0d1023ea b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4ab2d184bb15b5530877c6b0d1023ea new file mode 100644 index 00000000..9e01b589 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4ab2d184bb15b5530877c6b0d1023ea differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4c1049abe92fa48a3bceed868f78dd5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4c1049abe92fa48a3bceed868f78dd5 new file mode 100644 index 00000000..5c6a20e7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4c1049abe92fa48a3bceed868f78dd5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4d04968edc43e987d9db11fe01f8c56 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4d04968edc43e987d9db11fe01f8c56 new file mode 100644 index 00000000..7405419f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4d04968edc43e987d9db11fe01f8c56 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4ec94242a89ccfa02cdc24a311e5a84 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4ec94242a89ccfa02cdc24a311e5a84 new file mode 100644 index 00000000..d7e52f8c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d4/d4ec94242a89ccfa02cdc24a311e5a84 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d52c848c2caf0587c94a05bf626e7e3b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d52c848c2caf0587c94a05bf626e7e3b new file mode 100644 index 00000000..0e9fee05 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d52c848c2caf0587c94a05bf626e7e3b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d551db4af36a59b6a94ca94ca052451d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d551db4af36a59b6a94ca94ca052451d new file mode 100644 index 00000000..3283f7ed Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d551db4af36a59b6a94ca94ca052451d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d57c72410f0e6a0fbddd1f45e51251aa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d57c72410f0e6a0fbddd1f45e51251aa new file mode 100644 index 00000000..e4085325 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d57c72410f0e6a0fbddd1f45e51251aa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d585c741ef0ca014cb7ba9d14fcc36e5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d585c741ef0ca014cb7ba9d14fcc36e5 new file mode 100644 index 00000000..db67a3ea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d585c741ef0ca014cb7ba9d14fcc36e5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d59aa6d794275a209b262c9466a35eaa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d59aa6d794275a209b262c9466a35eaa new file mode 100644 index 00000000..5da4d7f3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d59aa6d794275a209b262c9466a35eaa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d5b1073adc27549a2704b13614006941 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d5b1073adc27549a2704b13614006941 new file mode 100644 index 00000000..7785b33a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d5b1073adc27549a2704b13614006941 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d5c00664d92044d52f3bd6bbf07ab000 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d5c00664d92044d52f3bd6bbf07ab000 new file mode 100644 index 00000000..826996c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d5c00664d92044d52f3bd6bbf07ab000 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d5de6b9dbf244c37ff264a2ad2368927 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d5de6b9dbf244c37ff264a2ad2368927 new file mode 100644 index 00000000..bd3d3d68 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d5de6b9dbf244c37ff264a2ad2368927 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d5fde38657d1dae0c93fad9be7c0e021 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d5fde38657d1dae0c93fad9be7c0e021 new file mode 100644 index 00000000..c61bfa27 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d5/d5fde38657d1dae0c93fad9be7c0e021 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d616120386896c367cdc4c6832de6dfb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d616120386896c367cdc4c6832de6dfb new file mode 100644 index 00000000..42427e19 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d616120386896c367cdc4c6832de6dfb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d63a56377066b3003794b1e0ba860a8f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d63a56377066b3003794b1e0ba860a8f new file mode 100644 index 00000000..ae482980 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d63a56377066b3003794b1e0ba860a8f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6409b854d13fc24ad60df881711d919 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6409b854d13fc24ad60df881711d919 new file mode 100644 index 00000000..d3a4c911 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6409b854d13fc24ad60df881711d919 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d647ad229930edf1ed44e06443c031ba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d647ad229930edf1ed44e06443c031ba new file mode 100644 index 00000000..1fd6faa6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d647ad229930edf1ed44e06443c031ba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6490f2478ec8e25aa6ebfdf350c1c3a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6490f2478ec8e25aa6ebfdf350c1c3a new file mode 100644 index 00000000..925b267b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6490f2478ec8e25aa6ebfdf350c1c3a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d66165a59debcb282989400418995e07 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d66165a59debcb282989400418995e07 new file mode 100644 index 00000000..da56ea62 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d66165a59debcb282989400418995e07 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d671c4d36debaf8b94414f8999c12a9f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d671c4d36debaf8b94414f8999c12a9f new file mode 100644 index 00000000..f3ee7823 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d671c4d36debaf8b94414f8999c12a9f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d682825ac5e423354a0e19c68051f8da b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d682825ac5e423354a0e19c68051f8da new file mode 100644 index 00000000..2f3018d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d682825ac5e423354a0e19c68051f8da differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d68494c59ae3eb677b1dbd0c336ae5fe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d68494c59ae3eb677b1dbd0c336ae5fe new file mode 100644 index 00000000..606d298c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d68494c59ae3eb677b1dbd0c336ae5fe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d68aae8aed1518fe9b224175ef1ff0e7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d68aae8aed1518fe9b224175ef1ff0e7 new file mode 100644 index 00000000..7bc3a4ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d68aae8aed1518fe9b224175ef1ff0e7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6a291d7063ac81cbc13bfdfe626a175 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6a291d7063ac81cbc13bfdfe626a175 new file mode 100644 index 00000000..64790a85 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6a291d7063ac81cbc13bfdfe626a175 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6b3e4773d2b944bb1301a3d41b39d86 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6b3e4773d2b944bb1301a3d41b39d86 new file mode 100644 index 00000000..0325f7ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6b3e4773d2b944bb1301a3d41b39d86 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6c05a4e916e72db78a8907a239942d9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6c05a4e916e72db78a8907a239942d9 new file mode 100644 index 00000000..11801c25 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6c05a4e916e72db78a8907a239942d9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6e237e384fd66a40b125fe9b9e6a37e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6e237e384fd66a40b125fe9b9e6a37e new file mode 100644 index 00000000..20323e9d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d6/d6e237e384fd66a40b125fe9b9e6a37e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d701a563a0d0e3bb6d9b56a0032e95ba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d701a563a0d0e3bb6d9b56a0032e95ba new file mode 100644 index 00000000..50200fbc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d701a563a0d0e3bb6d9b56a0032e95ba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d709abbb4b52865f12cbe228a4148bc7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d709abbb4b52865f12cbe228a4148bc7 new file mode 100644 index 00000000..8a6dea53 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d709abbb4b52865f12cbe228a4148bc7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d715d7391cd2628b7035a5dd860cfd4f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d715d7391cd2628b7035a5dd860cfd4f new file mode 100644 index 00000000..bf7c7b8a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d715d7391cd2628b7035a5dd860cfd4f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d724ca8213ab90f361c22c7b0777d729 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d724ca8213ab90f361c22c7b0777d729 new file mode 100644 index 00000000..38812459 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d724ca8213ab90f361c22c7b0777d729 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d746515eb5d48bc58c78db82ef01bd9e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d746515eb5d48bc58c78db82ef01bd9e new file mode 100644 index 00000000..6ab498c6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d746515eb5d48bc58c78db82ef01bd9e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d75091a6afa6cf01e7113d2f37942664 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d75091a6afa6cf01e7113d2f37942664 new file mode 100644 index 00000000..51ccf3f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d75091a6afa6cf01e7113d2f37942664 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d758c16c2bd5d81cfdc8a700abdf6c95 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d758c16c2bd5d81cfdc8a700abdf6c95 new file mode 100644 index 00000000..c64d518f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d758c16c2bd5d81cfdc8a700abdf6c95 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d76119517eba8c225e553ecda42a96cc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d76119517eba8c225e553ecda42a96cc new file mode 100644 index 00000000..0a08a538 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d76119517eba8c225e553ecda42a96cc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7703d6ef540a3dfe6253c81caf3a031 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7703d6ef540a3dfe6253c81caf3a031 new file mode 100644 index 00000000..8a78f345 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7703d6ef540a3dfe6253c81caf3a031 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7755420f7f655973e2f6e44c5d5edc5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7755420f7f655973e2f6e44c5d5edc5 new file mode 100644 index 00000000..738b095d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7755420f7f655973e2f6e44c5d5edc5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d77c6dda5271f44cb62603414d969aa5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d77c6dda5271f44cb62603414d969aa5 new file mode 100644 index 00000000..c07bc824 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d77c6dda5271f44cb62603414d969aa5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d785672b4e96de0a3e3235a6657cf16c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d785672b4e96de0a3e3235a6657cf16c new file mode 100644 index 00000000..24a50b01 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d785672b4e96de0a3e3235a6657cf16c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d78a4090f3995d88d92a0eef3d8da318 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d78a4090f3995d88d92a0eef3d8da318 new file mode 100644 index 00000000..20e666c7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d78a4090f3995d88d92a0eef3d8da318 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d78dc4f1bb5514bee2dc425121035a89 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d78dc4f1bb5514bee2dc425121035a89 new file mode 100644 index 00000000..9cbad60c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d78dc4f1bb5514bee2dc425121035a89 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d79c0eb96d40db07986f1ce27de94fc8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d79c0eb96d40db07986f1ce27de94fc8 new file mode 100644 index 00000000..12040403 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d79c0eb96d40db07986f1ce27de94fc8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d79e779c7bb0bdb42474785ce9ab67a6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d79e779c7bb0bdb42474785ce9ab67a6 new file mode 100644 index 00000000..3be64d00 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d79e779c7bb0bdb42474785ce9ab67a6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7a39e7bb6ff712907fd6c3d6eb4ef02 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7a39e7bb6ff712907fd6c3d6eb4ef02 new file mode 100644 index 00000000..95630253 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7a39e7bb6ff712907fd6c3d6eb4ef02 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7a5748d699fa18e867f2188efc58dc6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7a5748d699fa18e867f2188efc58dc6 new file mode 100644 index 00000000..56d32325 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7a5748d699fa18e867f2188efc58dc6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7a7d95eba71cc5208719b0775eeb4c7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7a7d95eba71cc5208719b0775eeb4c7 new file mode 100644 index 00000000..c096ab73 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7a7d95eba71cc5208719b0775eeb4c7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7cc3d5ddc62f031cb21b207b0a043f8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7cc3d5ddc62f031cb21b207b0a043f8 new file mode 100644 index 00000000..75edf7d9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7cc3d5ddc62f031cb21b207b0a043f8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7d7c36020c2253f8f4f515d1ba5788e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7d7c36020c2253f8f4f515d1ba5788e new file mode 100644 index 00000000..706113cf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7d7c36020c2253f8f4f515d1ba5788e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7f24d8ee898bb053e145a6fb6be80aa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7f24d8ee898bb053e145a6fb6be80aa new file mode 100644 index 00000000..2adbe48b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d7/d7f24d8ee898bb053e145a6fb6be80aa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d805da21b830440e63205681904056fa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d805da21b830440e63205681904056fa new file mode 100644 index 00000000..b0f92d4a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d805da21b830440e63205681904056fa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d813351527d8eeaaa898fa24bb9c5843 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d813351527d8eeaaa898fa24bb9c5843 new file mode 100644 index 00000000..2583b83e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d813351527d8eeaaa898fa24bb9c5843 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d845eeb4d492a98882ba2504c6f3cca0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d845eeb4d492a98882ba2504c6f3cca0 new file mode 100644 index 00000000..322f4a69 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d845eeb4d492a98882ba2504c6f3cca0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d84ba680604809c3a313d77f95ab0be7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d84ba680604809c3a313d77f95ab0be7 new file mode 100644 index 00000000..7f305d05 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d84ba680604809c3a313d77f95ab0be7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d853752d1633903a4a852102478ee3d2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d853752d1633903a4a852102478ee3d2 new file mode 100644 index 00000000..520742ff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d853752d1633903a4a852102478ee3d2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8564c8434b36c38ef5abf1bb380e9d1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8564c8434b36c38ef5abf1bb380e9d1 new file mode 100644 index 00000000..481a828b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8564c8434b36c38ef5abf1bb380e9d1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d862239827d5b6ad4746c311e19e6411 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d862239827d5b6ad4746c311e19e6411 new file mode 100644 index 00000000..4c7606dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d862239827d5b6ad4746c311e19e6411 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d86a069c6b053798709a2ce2cd567dc2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d86a069c6b053798709a2ce2cd567dc2 new file mode 100644 index 00000000..8df44699 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d86a069c6b053798709a2ce2cd567dc2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d88befda8c0b2a1bed7ad12be7d195da b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d88befda8c0b2a1bed7ad12be7d195da new file mode 100644 index 00000000..819b80df Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d88befda8c0b2a1bed7ad12be7d195da differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d89e20dc7ef49b27f0762a7745f4159d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d89e20dc7ef49b27f0762a7745f4159d new file mode 100644 index 00000000..04d1718b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d89e20dc7ef49b27f0762a7745f4159d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8b90d47cd607f34adca8e7cc7054ef8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8b90d47cd607f34adca8e7cc7054ef8 new file mode 100644 index 00000000..cca72fc2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8b90d47cd607f34adca8e7cc7054ef8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8beb2f80e53d4d507a174209d9f77b7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8beb2f80e53d4d507a174209d9f77b7 new file mode 100644 index 00000000..856bea1d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8beb2f80e53d4d507a174209d9f77b7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8c6a09ac53a62432e860c39df2007eb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8c6a09ac53a62432e860c39df2007eb new file mode 100644 index 00000000..bd619bcc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8c6a09ac53a62432e860c39df2007eb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8eb262861d31371f1780fe6f09663ba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8eb262861d31371f1780fe6f09663ba new file mode 100644 index 00000000..97422eac Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8eb262861d31371f1780fe6f09663ba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8eb456a4d6f4d8c5df377a0b0f7c92a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8eb456a4d6f4d8c5df377a0b0f7c92a new file mode 100644 index 00000000..4737519a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8eb456a4d6f4d8c5df377a0b0f7c92a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8f133d74318daf8aba1bbb9f161eca0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8f133d74318daf8aba1bbb9f161eca0 new file mode 100644 index 00000000..62a4097b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d8/d8f133d74318daf8aba1bbb9f161eca0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d90d5af3d67d3a5b395a1b1718f2e5a6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d90d5af3d67d3a5b395a1b1718f2e5a6 new file mode 100644 index 00000000..64f76241 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d90d5af3d67d3a5b395a1b1718f2e5a6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d91d5d47591a586e48036831ea172730 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d91d5d47591a586e48036831ea172730 new file mode 100644 index 00000000..8594ef97 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d91d5d47591a586e48036831ea172730 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d921d491d6c5acd7e04e01879e5c10e8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d921d491d6c5acd7e04e01879e5c10e8 new file mode 100644 index 00000000..a66e0a44 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d921d491d6c5acd7e04e01879e5c10e8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d952108a59e059cd05e8fd0de529967b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d952108a59e059cd05e8fd0de529967b new file mode 100644 index 00000000..906b2235 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d952108a59e059cd05e8fd0de529967b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d95fb7996e0e708e0d727bd4c6d3fa4a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d95fb7996e0e708e0d727bd4c6d3fa4a new file mode 100644 index 00000000..972718f7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d95fb7996e0e708e0d727bd4c6d3fa4a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9673780b23644f76c6b1a97827fb989 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9673780b23644f76c6b1a97827fb989 new file mode 100644 index 00000000..414972e8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9673780b23644f76c6b1a97827fb989 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d96eb2ac23d258e4c1eb41473317630c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d96eb2ac23d258e4c1eb41473317630c new file mode 100644 index 00000000..6492ef4f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d96eb2ac23d258e4c1eb41473317630c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d96f485bdd133289b98bb25ba423925e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d96f485bdd133289b98bb25ba423925e new file mode 100644 index 00000000..a751333d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d96f485bdd133289b98bb25ba423925e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d97e3c4ee9779583fedc6aaea81a8f12 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d97e3c4ee9779583fedc6aaea81a8f12 new file mode 100644 index 00000000..7e73d72a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d97e3c4ee9779583fedc6aaea81a8f12 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d985c40cee72288ea6848a1f678fa344 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d985c40cee72288ea6848a1f678fa344 new file mode 100644 index 00000000..b840dd97 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d985c40cee72288ea6848a1f678fa344 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d99e05a71f8d6fb04322d60027c66e88 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d99e05a71f8d6fb04322d60027c66e88 new file mode 100644 index 00000000..25ce9be9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d99e05a71f8d6fb04322d60027c66e88 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9c3ce936d18ad100dff21557f3498ae b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9c3ce936d18ad100dff21557f3498ae new file mode 100644 index 00000000..4cf31592 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9c3ce936d18ad100dff21557f3498ae differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9cd089e3db7465d4d2474e47e4e0f6a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9cd089e3db7465d4d2474e47e4e0f6a new file mode 100644 index 00000000..2b33a63b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9cd089e3db7465d4d2474e47e4e0f6a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9dd2d9a3b0eaaaf16f335c718ea6e7f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9dd2d9a3b0eaaaf16f335c718ea6e7f new file mode 100644 index 00000000..4ad2c722 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9dd2d9a3b0eaaaf16f335c718ea6e7f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9e4ef5bdacfaf631baba0a977222506 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9e4ef5bdacfaf631baba0a977222506 new file mode 100644 index 00000000..e8b319f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9e4ef5bdacfaf631baba0a977222506 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9e59eb212aad06a8a41edfb6448969d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9e59eb212aad06a8a41edfb6448969d new file mode 100644 index 00000000..b6d9c9ce Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/d9/d9e59eb212aad06a8a41edfb6448969d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da0fe521cbea6db488c2d791d30588d1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da0fe521cbea6db488c2d791d30588d1 new file mode 100644 index 00000000..249c9b38 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da0fe521cbea6db488c2d791d30588d1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da20a3a26d0726cb10a5a7d738b81de2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da20a3a26d0726cb10a5a7d738b81de2 new file mode 100644 index 00000000..5402ca82 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da20a3a26d0726cb10a5a7d738b81de2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da29bbf35e9f658e3fd43dafe7a80e33 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da29bbf35e9f658e3fd43dafe7a80e33 new file mode 100644 index 00000000..2b7ecde9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da29bbf35e9f658e3fd43dafe7a80e33 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da388cc6c77be60c2fc1df60eb12a64e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da388cc6c77be60c2fc1df60eb12a64e new file mode 100644 index 00000000..1de77419 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da388cc6c77be60c2fc1df60eb12a64e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da3f041abf7cf894b3dbe7668294de37 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da3f041abf7cf894b3dbe7668294de37 new file mode 100644 index 00000000..bdde2ed3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da3f041abf7cf894b3dbe7668294de37 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da657c02397bf5ec83f3dfa4d9393bed b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da657c02397bf5ec83f3dfa4d9393bed new file mode 100644 index 00000000..3ad5643c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da657c02397bf5ec83f3dfa4d9393bed differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da6817568ece0dd2690a15e226661771 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da6817568ece0dd2690a15e226661771 new file mode 100644 index 00000000..b7e2b16b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da6817568ece0dd2690a15e226661771 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da763843a3d97e8b0b2641bb96321fad b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da763843a3d97e8b0b2641bb96321fad new file mode 100644 index 00000000..477e6b1a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da763843a3d97e8b0b2641bb96321fad differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da8f09337511d6cb87b1165883b6b9f2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da8f09337511d6cb87b1165883b6b9f2 new file mode 100644 index 00000000..9e8fa3a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da8f09337511d6cb87b1165883b6b9f2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da9cc46cd4ce5a8b506c57839796b6b8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da9cc46cd4ce5a8b506c57839796b6b8 new file mode 100644 index 00000000..f9dbbcc9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/da9cc46cd4ce5a8b506c57839796b6b8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/dab1badc171657de6092d3334eedaa08 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/dab1badc171657de6092d3334eedaa08 new file mode 100644 index 00000000..83f7aa3e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/dab1badc171657de6092d3334eedaa08 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/dac00cc5c546fd8e5c4dcae61e281639 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/dac00cc5c546fd8e5c4dcae61e281639 new file mode 100644 index 00000000..73a5a01b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/dac00cc5c546fd8e5c4dcae61e281639 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/dade993cc8914fb862fcb52f760e3b9f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/dade993cc8914fb862fcb52f760e3b9f new file mode 100644 index 00000000..77c369b6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/da/dade993cc8914fb862fcb52f760e3b9f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db12e5d47819463b59e50083fc596bb0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db12e5d47819463b59e50083fc596bb0 new file mode 100644 index 00000000..67b987bb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db12e5d47819463b59e50083fc596bb0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db1581c3f2154d113aa9eb59ac6eba00 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db1581c3f2154d113aa9eb59ac6eba00 new file mode 100644 index 00000000..54521727 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db1581c3f2154d113aa9eb59ac6eba00 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db28de30e6b1f30e9c1a0458084fec21 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db28de30e6b1f30e9c1a0458084fec21 new file mode 100644 index 00000000..670fcd66 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db28de30e6b1f30e9c1a0458084fec21 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db333edd6c15588de7c430bc30508956 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db333edd6c15588de7c430bc30508956 new file mode 100644 index 00000000..0f3ee364 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db333edd6c15588de7c430bc30508956 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db5320adc40284a9b485b672839fadd2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db5320adc40284a9b485b672839fadd2 new file mode 100644 index 00000000..6c1070a0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db5320adc40284a9b485b672839fadd2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db54181a5798ddd3cf76cde7202c3cd0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db54181a5798ddd3cf76cde7202c3cd0 new file mode 100644 index 00000000..34b4dab0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db54181a5798ddd3cf76cde7202c3cd0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db6932927f49c5f3e28312192df31fbb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db6932927f49c5f3e28312192df31fbb new file mode 100644 index 00000000..6a2d71b6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db6932927f49c5f3e28312192df31fbb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db7f8b1ee2619f742b8ef20a962a6123 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db7f8b1ee2619f742b8ef20a962a6123 new file mode 100644 index 00000000..4913e9e6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db7f8b1ee2619f742b8ef20a962a6123 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db8a147cc48f3c2ed4902bd8c961967c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db8a147cc48f3c2ed4902bd8c961967c new file mode 100644 index 00000000..8dce81aa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/db8a147cc48f3c2ed4902bd8c961967c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbafe01e947c1e0902eff1ab1626e34f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbafe01e947c1e0902eff1ab1626e34f new file mode 100644 index 00000000..62aa2433 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbafe01e947c1e0902eff1ab1626e34f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbbeaa891f1afcc311f381dcd66c53fd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbbeaa891f1afcc311f381dcd66c53fd new file mode 100644 index 00000000..bfe3e448 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbbeaa891f1afcc311f381dcd66c53fd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbbfe3cc20f72dfb2a293c4f49398afb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbbfe3cc20f72dfb2a293c4f49398afb new file mode 100644 index 00000000..4e270762 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbbfe3cc20f72dfb2a293c4f49398afb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbc4ccb87e93842dbc7850c0d5b311f0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbc4ccb87e93842dbc7850c0d5b311f0 new file mode 100644 index 00000000..2cd002e5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbc4ccb87e93842dbc7850c0d5b311f0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbfdee5a3b4a7a7c6909441f01aef939 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbfdee5a3b4a7a7c6909441f01aef939 new file mode 100644 index 00000000..2c77c61e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/db/dbfdee5a3b4a7a7c6909441f01aef939 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc025a39c4597af196e213b01fa312f5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc025a39c4597af196e213b01fa312f5 new file mode 100644 index 00000000..4fcc1a4b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc025a39c4597af196e213b01fa312f5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc057e977352db3dfb02be739cf0bcb5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc057e977352db3dfb02be739cf0bcb5 new file mode 100644 index 00000000..fdf8c27c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc057e977352db3dfb02be739cf0bcb5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc3ec2b7e6e10afe28468367559c21c5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc3ec2b7e6e10afe28468367559c21c5 new file mode 100644 index 00000000..ad6564ef Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc3ec2b7e6e10afe28468367559c21c5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc6310e3a05d22954b8c3720df70d801 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc6310e3a05d22954b8c3720df70d801 new file mode 100644 index 00000000..18adb271 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc6310e3a05d22954b8c3720df70d801 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc71755f2e6947bf9c9f35a9f9f2cf6a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc71755f2e6947bf9c9f35a9f9f2cf6a new file mode 100644 index 00000000..7d95e1bc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc71755f2e6947bf9c9f35a9f9f2cf6a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc75f0ada25c7179e5ae717fbbf34209 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc75f0ada25c7179e5ae717fbbf34209 new file mode 100644 index 00000000..7bffc98c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc75f0ada25c7179e5ae717fbbf34209 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc8768b2a77ecdeb52e664b0a0d1f974 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc8768b2a77ecdeb52e664b0a0d1f974 new file mode 100644 index 00000000..b87f3ea8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc8768b2a77ecdeb52e664b0a0d1f974 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc9b74d9d37b805cbfb84e3c71083d55 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc9b74d9d37b805cbfb84e3c71083d55 new file mode 100644 index 00000000..1bf4f186 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dc9b74d9d37b805cbfb84e3c71083d55 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dca1c22fb601bfab5c8e7f6a41eb834d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dca1c22fb601bfab5c8e7f6a41eb834d new file mode 100644 index 00000000..5fecf9f0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dca1c22fb601bfab5c8e7f6a41eb834d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dcbb3ac15706cf0055fb501f263110c8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dcbb3ac15706cf0055fb501f263110c8 new file mode 100644 index 00000000..da5c9d2f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dcbb3ac15706cf0055fb501f263110c8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dcbc2b8640e4503a3fc3058bfd1d8df3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dcbc2b8640e4503a3fc3058bfd1d8df3 new file mode 100644 index 00000000..10a859a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dcbc2b8640e4503a3fc3058bfd1d8df3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dcc9293fbeb9ae5f536ad27aaaef994e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dcc9293fbeb9ae5f536ad27aaaef994e new file mode 100644 index 00000000..4dce8f6f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dcc9293fbeb9ae5f536ad27aaaef994e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dcd8790988698258f858fbdf2593a4a0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dcd8790988698258f858fbdf2593a4a0 new file mode 100644 index 00000000..9effd1c8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dcd8790988698258f858fbdf2593a4a0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dce7dba78fd3d5af25ac53123986fb93 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dce7dba78fd3d5af25ac53123986fb93 new file mode 100644 index 00000000..dc2b8b47 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dc/dce7dba78fd3d5af25ac53123986fb93 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd0832e03232136168a859d3e567e44c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd0832e03232136168a859d3e567e44c new file mode 100644 index 00000000..29b185d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd0832e03232136168a859d3e567e44c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd0ecced02d016e11ae088426f856e33 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd0ecced02d016e11ae088426f856e33 new file mode 100644 index 00000000..690cbd09 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd0ecced02d016e11ae088426f856e33 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd1530c39116e71dd80e8654039d40dc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd1530c39116e71dd80e8654039d40dc new file mode 100644 index 00000000..e50ebc93 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd1530c39116e71dd80e8654039d40dc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd24a9441147457314f8101e4ad613cd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd24a9441147457314f8101e4ad613cd new file mode 100644 index 00000000..185aa39e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd24a9441147457314f8101e4ad613cd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd379a38d1b3e9d41987848661dcf80e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd379a38d1b3e9d41987848661dcf80e new file mode 100644 index 00000000..2afa4da0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd379a38d1b3e9d41987848661dcf80e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd45b634be5caad07b52e464bbdeb030 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd45b634be5caad07b52e464bbdeb030 new file mode 100644 index 00000000..8892c41c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd45b634be5caad07b52e464bbdeb030 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd4da0090ce7b74e576a85f97f66f02a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd4da0090ce7b74e576a85f97f66f02a new file mode 100644 index 00000000..f29813ff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd4da0090ce7b74e576a85f97f66f02a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd78a862463149fd8ad13ffdac2c6876 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd78a862463149fd8ad13ffdac2c6876 new file mode 100644 index 00000000..18620c78 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd78a862463149fd8ad13ffdac2c6876 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd88ccf60cb61ad993f9e9008361850f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd88ccf60cb61ad993f9e9008361850f new file mode 100644 index 00000000..554ba712 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd88ccf60cb61ad993f9e9008361850f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd8bd8c0e3dc60cc2717dc0afe6c3b1f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd8bd8c0e3dc60cc2717dc0afe6c3b1f new file mode 100644 index 00000000..6687a4a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dd8bd8c0e3dc60cc2717dc0afe6c3b1f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dda119575886cec2e36380fd89a71b6f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dda119575886cec2e36380fd89a71b6f new file mode 100644 index 00000000..0b9e2893 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dda119575886cec2e36380fd89a71b6f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dda6c227d5334b145ca2abb02ff59378 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dda6c227d5334b145ca2abb02ff59378 new file mode 100644 index 00000000..e487d7ee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/dda6c227d5334b145ca2abb02ff59378 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddb240b0c47b0abea5a2b5dda2ccf366 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddb240b0c47b0abea5a2b5dda2ccf366 new file mode 100644 index 00000000..9dbf30d7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddb240b0c47b0abea5a2b5dda2ccf366 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddb3532c0076fe9b2b94d136fbc6bdd9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddb3532c0076fe9b2b94d136fbc6bdd9 new file mode 100644 index 00000000..702e31ef Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddb3532c0076fe9b2b94d136fbc6bdd9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddb70a61e87d4452f5c22d550e340ea3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddb70a61e87d4452f5c22d550e340ea3 new file mode 100644 index 00000000..514d565e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddb70a61e87d4452f5c22d550e340ea3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddb712487072af20cd1d58a754d67c2c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddb712487072af20cd1d58a754d67c2c new file mode 100644 index 00000000..b65eae84 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddb712487072af20cd1d58a754d67c2c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddc9caa7691193e06bec56d8f44fda45 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddc9caa7691193e06bec56d8f44fda45 new file mode 100644 index 00000000..37b24621 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddc9caa7691193e06bec56d8f44fda45 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddca6612ab2bb7bfc7aaae0ac7cfd747 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddca6612ab2bb7bfc7aaae0ac7cfd747 new file mode 100644 index 00000000..5261021e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddca6612ab2bb7bfc7aaae0ac7cfd747 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddfee19a90d1e802865c9a7614f9c94f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddfee19a90d1e802865c9a7614f9c94f new file mode 100644 index 00000000..e0ad2940 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/dd/ddfee19a90d1e802865c9a7614f9c94f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de0782db3b08c662403d6422538ced64 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de0782db3b08c662403d6422538ced64 new file mode 100644 index 00000000..ffd84e1f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de0782db3b08c662403d6422538ced64 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de1656b348ac40e004dfff3de8785e19 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de1656b348ac40e004dfff3de8785e19 new file mode 100644 index 00000000..e07a4b5c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de1656b348ac40e004dfff3de8785e19 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de1cd179592bced53308a63bf292bf97 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de1cd179592bced53308a63bf292bf97 new file mode 100644 index 00000000..f1aec230 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de1cd179592bced53308a63bf292bf97 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de62e9fbbcbd57be5c4c2e7d421f96dd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de62e9fbbcbd57be5c4c2e7d421f96dd new file mode 100644 index 00000000..d83ea60e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de62e9fbbcbd57be5c4c2e7d421f96dd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de83e5037c20fcd0effce4c371d92b4d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de83e5037c20fcd0effce4c371d92b4d new file mode 100644 index 00000000..6b28728e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de83e5037c20fcd0effce4c371d92b4d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de8bdcb05d54abd14c782400c92b9b60 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de8bdcb05d54abd14c782400c92b9b60 new file mode 100644 index 00000000..ca66ae8f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de8bdcb05d54abd14c782400c92b9b60 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de8f7ea66871dced2d98a0de9790909c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de8f7ea66871dced2d98a0de9790909c new file mode 100644 index 00000000..1060aeb5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/de8f7ea66871dced2d98a0de9790909c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/dea49ba31d802d5009d0057036107070 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/dea49ba31d802d5009d0057036107070 new file mode 100644 index 00000000..32c5a596 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/dea49ba31d802d5009d0057036107070 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/deaf1ea617d1e3247b4cff027cec7ac7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/deaf1ea617d1e3247b4cff027cec7ac7 new file mode 100644 index 00000000..b349be2c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/deaf1ea617d1e3247b4cff027cec7ac7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/decee86b33a09c1a8be97a21a94be753 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/decee86b33a09c1a8be97a21a94be753 new file mode 100644 index 00000000..ff6eeee5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/decee86b33a09c1a8be97a21a94be753 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/dee905b98986e1b052edaf6492a6b104 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/dee905b98986e1b052edaf6492a6b104 new file mode 100644 index 00000000..f27a8aeb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/dee905b98986e1b052edaf6492a6b104 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/defb9ddc06fb4be5030e0760e19a2f8d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/defb9ddc06fb4be5030e0760e19a2f8d new file mode 100644 index 00000000..abf5d385 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/de/defb9ddc06fb4be5030e0760e19a2f8d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df087e0fb748790490d83de7ba089d81 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df087e0fb748790490d83de7ba089d81 new file mode 100644 index 00000000..713ebc1f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df087e0fb748790490d83de7ba089d81 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df1f3359a48916020147f0c70006401e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df1f3359a48916020147f0c70006401e new file mode 100644 index 00000000..900903f0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df1f3359a48916020147f0c70006401e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df3aefd247d4a3d8b6a5826583c73f92 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df3aefd247d4a3d8b6a5826583c73f92 new file mode 100644 index 00000000..4bb2d72c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df3aefd247d4a3d8b6a5826583c73f92 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df4bc27abbafb9c5502c6aa08709a397 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df4bc27abbafb9c5502c6aa08709a397 new file mode 100644 index 00000000..12ef2ee1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df4bc27abbafb9c5502c6aa08709a397 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df4d56f13b7a5150cbf42b2cf94fd048 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df4d56f13b7a5150cbf42b2cf94fd048 new file mode 100644 index 00000000..337c8444 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df4d56f13b7a5150cbf42b2cf94fd048 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df4eb9ebc85372c468b531b610da9611 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df4eb9ebc85372c468b531b610da9611 new file mode 100644 index 00000000..06283526 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df4eb9ebc85372c468b531b610da9611 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df6bd0836e1ccdfe78b1894038030bd3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df6bd0836e1ccdfe78b1894038030bd3 new file mode 100644 index 00000000..16d5604b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df6bd0836e1ccdfe78b1894038030bd3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df6d12a88463c1507a83ef87b03b64c4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df6d12a88463c1507a83ef87b03b64c4 new file mode 100644 index 00000000..0c91b7a7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df6d12a88463c1507a83ef87b03b64c4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df72c9557dad27e2016cf2ff41e61980 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df72c9557dad27e2016cf2ff41e61980 new file mode 100644 index 00000000..ca1f5e63 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df72c9557dad27e2016cf2ff41e61980 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df7b5f9e093968e9856d1ec30efbb59d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df7b5f9e093968e9856d1ec30efbb59d new file mode 100644 index 00000000..e76e555e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df7b5f9e093968e9856d1ec30efbb59d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df9a8ede4e71ee480e68f4d0bb5b6310 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df9a8ede4e71ee480e68f4d0bb5b6310 new file mode 100644 index 00000000..88584e19 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/df9a8ede4e71ee480e68f4d0bb5b6310 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfa8cb895410fd6bbedfb2eb2ac10266 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfa8cb895410fd6bbedfb2eb2ac10266 new file mode 100644 index 00000000..97469bce Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfa8cb895410fd6bbedfb2eb2ac10266 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfa9c1a694a4f9fdcc099b98ac3b1240 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfa9c1a694a4f9fdcc099b98ac3b1240 new file mode 100644 index 00000000..ef93d2bc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfa9c1a694a4f9fdcc099b98ac3b1240 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfac45f7f79974b9a778dcb421c4c23e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfac45f7f79974b9a778dcb421c4c23e new file mode 100644 index 00000000..78f51a1c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfac45f7f79974b9a778dcb421c4c23e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfb31b5f41de29c95e86a08a0134a9c0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfb31b5f41de29c95e86a08a0134a9c0 new file mode 100644 index 00000000..652d316e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfb31b5f41de29c95e86a08a0134a9c0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfb5e9525d629d227bf0a6a5c1f42930 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfb5e9525d629d227bf0a6a5c1f42930 new file mode 100644 index 00000000..b3b180e5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfb5e9525d629d227bf0a6a5c1f42930 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfcbeb4c6de2112eb1fe398fa686570e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfcbeb4c6de2112eb1fe398fa686570e new file mode 100644 index 00000000..7f791ed5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfcbeb4c6de2112eb1fe398fa686570e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfd2452a126858075b69c5f34e7e04b6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfd2452a126858075b69c5f34e7e04b6 new file mode 100644 index 00000000..4338511c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfd2452a126858075b69c5f34e7e04b6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfd9a0bbf97d20ec04f77542fa1b6bb1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfd9a0bbf97d20ec04f77542fa1b6bb1 new file mode 100644 index 00000000..ecbf4542 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfd9a0bbf97d20ec04f77542fa1b6bb1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfe032fefd0019138febb2a88f21e648 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfe032fefd0019138febb2a88f21e648 new file mode 100644 index 00000000..3c6998a3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/df/dfe032fefd0019138febb2a88f21e648 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e019bb8a68443dbe6733fc6b23224f01 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e019bb8a68443dbe6733fc6b23224f01 new file mode 100644 index 00000000..e159aa93 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e019bb8a68443dbe6733fc6b23224f01 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e01afc6f50afd2f0872d01de9da1e40d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e01afc6f50afd2f0872d01de9da1e40d new file mode 100644 index 00000000..4caa10e4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e01afc6f50afd2f0872d01de9da1e40d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e01c97714e377f8287f1c18f903bc803 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e01c97714e377f8287f1c18f903bc803 new file mode 100644 index 00000000..29b65e22 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e01c97714e377f8287f1c18f903bc803 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e026f2a3a58a01d0c554bbae74ede910 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e026f2a3a58a01d0c554bbae74ede910 new file mode 100644 index 00000000..e829071e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e026f2a3a58a01d0c554bbae74ede910 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e038a652e37504499d3d51262563e3f1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e038a652e37504499d3d51262563e3f1 new file mode 100644 index 00000000..cad5b3b8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e038a652e37504499d3d51262563e3f1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e040d41e933eed0ca14e15839a34cf25 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e040d41e933eed0ca14e15839a34cf25 new file mode 100644 index 00000000..ef9fd903 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e040d41e933eed0ca14e15839a34cf25 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e04887a7a946fb9e28f60a1347ec721a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e04887a7a946fb9e28f60a1347ec721a new file mode 100644 index 00000000..1f471b9e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e04887a7a946fb9e28f60a1347ec721a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e07175ba8a30327f73774f7a2fbc6533 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e07175ba8a30327f73774f7a2fbc6533 new file mode 100644 index 00000000..057394d5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e07175ba8a30327f73774f7a2fbc6533 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0a404504f95fa53b34dc10ae117abb6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0a404504f95fa53b34dc10ae117abb6 new file mode 100644 index 00000000..289b94da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0a404504f95fa53b34dc10ae117abb6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0b647717735900ea776c3b89c88f514 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0b647717735900ea776c3b89c88f514 new file mode 100644 index 00000000..478f717e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0b647717735900ea776c3b89c88f514 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0ba8bbedeb3563f53ab5986931e7e69 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0ba8bbedeb3563f53ab5986931e7e69 new file mode 100644 index 00000000..9546b6f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0ba8bbedeb3563f53ab5986931e7e69 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0bf086a86a1b7aa53edc537f903fab9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0bf086a86a1b7aa53edc537f903fab9 new file mode 100644 index 00000000..5bba34f6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0bf086a86a1b7aa53edc537f903fab9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0deeaf308b1943e82cd034e3a41c08c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0deeaf308b1943e82cd034e3a41c08c new file mode 100644 index 00000000..0464776f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e0/e0deeaf308b1943e82cd034e3a41c08c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e104e2907957b758cfe12053736c82ef b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e104e2907957b758cfe12053736c82ef new file mode 100644 index 00000000..d0352880 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e104e2907957b758cfe12053736c82ef differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e10967373eb0ba04bde2533cb3bec329 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e10967373eb0ba04bde2533cb3bec329 new file mode 100644 index 00000000..529b0a74 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e10967373eb0ba04bde2533cb3bec329 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e12295a8593c2e7eb209bed7c618c3fa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e12295a8593c2e7eb209bed7c618c3fa new file mode 100644 index 00000000..48a62048 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e12295a8593c2e7eb209bed7c618c3fa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1238e0b7ec223651e930c067e64f1f7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1238e0b7ec223651e930c067e64f1f7 new file mode 100644 index 00000000..c5d3422f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1238e0b7ec223651e930c067e64f1f7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e13354760c9d808b7c41e53f25694018 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e13354760c9d808b7c41e53f25694018 new file mode 100644 index 00000000..454afd38 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e13354760c9d808b7c41e53f25694018 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1350b64f2831d742ef46747d334a4da b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1350b64f2831d742ef46747d334a4da new file mode 100644 index 00000000..7042d9f4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1350b64f2831d742ef46747d334a4da differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e13d32ea0c3b8402f97fa18011448605 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e13d32ea0c3b8402f97fa18011448605 new file mode 100644 index 00000000..58a07a01 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e13d32ea0c3b8402f97fa18011448605 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e160498cf7eeb48b31ef866578561aac b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e160498cf7eeb48b31ef866578561aac new file mode 100644 index 00000000..4f840524 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e160498cf7eeb48b31ef866578561aac differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1644587af75404298685250fe99815c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1644587af75404298685250fe99815c new file mode 100644 index 00000000..498a34a3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1644587af75404298685250fe99815c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e173300ebe5b142f1d07729dc30cd087 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e173300ebe5b142f1d07729dc30cd087 new file mode 100644 index 00000000..ee22b057 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e173300ebe5b142f1d07729dc30cd087 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e18296acdabc10a002a594a966f8ab02 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e18296acdabc10a002a594a966f8ab02 new file mode 100644 index 00000000..f94684d1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e18296acdabc10a002a594a966f8ab02 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e191fa5cfef6d9e1a07c8057e22b1dcc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e191fa5cfef6d9e1a07c8057e22b1dcc new file mode 100644 index 00000000..f596887e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e191fa5cfef6d9e1a07c8057e22b1dcc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1b2caae5e22118206baa0748743f835 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1b2caae5e22118206baa0748743f835 new file mode 100644 index 00000000..26ff265b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1b2caae5e22118206baa0748743f835 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1ce05b8fbb91201a89d7f1b3f6f456e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1ce05b8fbb91201a89d7f1b3f6f456e new file mode 100644 index 00000000..09ba1a37 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1ce05b8fbb91201a89d7f1b3f6f456e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1e9887c120c9574e5618b484a1c54a7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1e9887c120c9574e5618b484a1c54a7 new file mode 100644 index 00000000..1cce4036 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1e9887c120c9574e5618b484a1c54a7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1eac7e00a168d86c95fcc18cfb2ccef b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1eac7e00a168d86c95fcc18cfb2ccef new file mode 100644 index 00000000..a0cbc546 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e1/e1eac7e00a168d86c95fcc18cfb2ccef differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e20c6b2267912076ad9ddc8d0730267e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e20c6b2267912076ad9ddc8d0730267e new file mode 100644 index 00000000..5401a219 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e20c6b2267912076ad9ddc8d0730267e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e217118db6b869f1d6c82db00877fee4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e217118db6b869f1d6c82db00877fee4 new file mode 100644 index 00000000..b00f1f52 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e217118db6b869f1d6c82db00877fee4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e22b9648dd38406d7d12d7b90d6b0cd9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e22b9648dd38406d7d12d7b90d6b0cd9 new file mode 100644 index 00000000..529fe7d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e22b9648dd38406d7d12d7b90d6b0cd9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e234db4346bd119d80ecc4b32148bb7b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e234db4346bd119d80ecc4b32148bb7b new file mode 100644 index 00000000..5d99654d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e234db4346bd119d80ecc4b32148bb7b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e28648d98e411fc6ccab08fde58a8cb4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e28648d98e411fc6ccab08fde58a8cb4 new file mode 100644 index 00000000..2abd0ad5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e28648d98e411fc6ccab08fde58a8cb4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e286edd0b1264e6301ee5ae1475ea25c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e286edd0b1264e6301ee5ae1475ea25c new file mode 100644 index 00000000..95f00b06 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e286edd0b1264e6301ee5ae1475ea25c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2b019659ed92da94ca7e6d526d8405b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2b019659ed92da94ca7e6d526d8405b new file mode 100644 index 00000000..6030294b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2b019659ed92da94ca7e6d526d8405b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2bc2eac0f5c9fd3b6a70fbde4091f92 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2bc2eac0f5c9fd3b6a70fbde4091f92 new file mode 100644 index 00000000..01e579a9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2bc2eac0f5c9fd3b6a70fbde4091f92 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2ce4fb96858a74adc489c3cd6fa9609 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2ce4fb96858a74adc489c3cd6fa9609 new file mode 100644 index 00000000..518d8dea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2ce4fb96858a74adc489c3cd6fa9609 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2d9576c93b639552613db438b8b4054 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2d9576c93b639552613db438b8b4054 new file mode 100644 index 00000000..325a0c64 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2d9576c93b639552613db438b8b4054 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2dd8be323b6ee817fa15ea6faa786df b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2dd8be323b6ee817fa15ea6faa786df new file mode 100644 index 00000000..290b12d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2dd8be323b6ee817fa15ea6faa786df differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2f2aa4655f917016d2708bbca9c4b06 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2f2aa4655f917016d2708bbca9c4b06 new file mode 100644 index 00000000..56ba64c3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e2/e2f2aa4655f917016d2708bbca9c4b06 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3093d652f3bd4aafd54f61d35a19d80 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3093d652f3bd4aafd54f61d35a19d80 new file mode 100644 index 00000000..39e3af0a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3093d652f3bd4aafd54f61d35a19d80 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e30fa9678e5917410412ae79381c2f34 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e30fa9678e5917410412ae79381c2f34 new file mode 100644 index 00000000..cfcdc396 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e30fa9678e5917410412ae79381c2f34 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e336ca79d5b9a3504e466ccd03e670da b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e336ca79d5b9a3504e466ccd03e670da new file mode 100644 index 00000000..5a6635a0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e336ca79d5b9a3504e466ccd03e670da differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e34be844d326d0d654237ff16ca5c533 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e34be844d326d0d654237ff16ca5c533 new file mode 100644 index 00000000..d24b2b02 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e34be844d326d0d654237ff16ca5c533 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e36405e754fd5d2be61e69a992070131 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e36405e754fd5d2be61e69a992070131 new file mode 100644 index 00000000..a4dd2831 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e36405e754fd5d2be61e69a992070131 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3702db0f89d297984c759ac6c33a419 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3702db0f89d297984c759ac6c33a419 new file mode 100644 index 00000000..ee978918 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3702db0f89d297984c759ac6c33a419 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e382fdb04dd1ad1bd98f25cf61f5605b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e382fdb04dd1ad1bd98f25cf61f5605b new file mode 100644 index 00000000..06f09744 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e382fdb04dd1ad1bd98f25cf61f5605b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3a2234005d314c9ccd189e132421e5d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3a2234005d314c9ccd189e132421e5d new file mode 100644 index 00000000..020bca9f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3a2234005d314c9ccd189e132421e5d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3ae419a7f855a1fe83369d458ac67e1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3ae419a7f855a1fe83369d458ac67e1 new file mode 100644 index 00000000..5cfb9c08 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3ae419a7f855a1fe83369d458ac67e1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3cba402d4b6e824b2d2b379264befad b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3cba402d4b6e824b2d2b379264befad new file mode 100644 index 00000000..b25dcbc8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3cba402d4b6e824b2d2b379264befad differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3cdab3c121c46f86aab1f02f0d89ead b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3cdab3c121c46f86aab1f02f0d89ead new file mode 100644 index 00000000..db183a8b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3cdab3c121c46f86aab1f02f0d89ead differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3f69858331397b2988bde85860e0261 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3f69858331397b2988bde85860e0261 new file mode 100644 index 00000000..4770419e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3f69858331397b2988bde85860e0261 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3f70987cd968eb967cf5096ce7fc9fd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3f70987cd968eb967cf5096ce7fc9fd new file mode 100644 index 00000000..18250cc8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3f70987cd968eb967cf5096ce7fc9fd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3fad0276e6b83be7ec21a59663b8024 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3fad0276e6b83be7ec21a59663b8024 new file mode 100644 index 00000000..ae48940f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e3/e3fad0276e6b83be7ec21a59663b8024 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e40f7a1a40f1f3311cfef942c190ec27 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e40f7a1a40f1f3311cfef942c190ec27 new file mode 100644 index 00000000..9fe5dd53 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e40f7a1a40f1f3311cfef942c190ec27 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4170e51c8d514b1f7e1e4506abf5e7c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4170e51c8d514b1f7e1e4506abf5e7c new file mode 100644 index 00000000..66409ef9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4170e51c8d514b1f7e1e4506abf5e7c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e41bd6db7e19e03833e5c87136de030e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e41bd6db7e19e03833e5c87136de030e new file mode 100644 index 00000000..43a522b8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e41bd6db7e19e03833e5c87136de030e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e426c12594527364c19bf87bbbeb0255 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e426c12594527364c19bf87bbbeb0255 new file mode 100644 index 00000000..a95cd0e4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e426c12594527364c19bf87bbbeb0255 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e432743a3f1501628e8175e8bee1adec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e432743a3f1501628e8175e8bee1adec new file mode 100644 index 00000000..53c65130 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e432743a3f1501628e8175e8bee1adec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e43bbcf716b0e2cfe2e186bbc82d095f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e43bbcf716b0e2cfe2e186bbc82d095f new file mode 100644 index 00000000..8b72e8e3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e43bbcf716b0e2cfe2e186bbc82d095f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e445c6627048719211727af302bbeff7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e445c6627048719211727af302bbeff7 new file mode 100644 index 00000000..4824a9c8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e445c6627048719211727af302bbeff7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e452c412a84ff3a8aaa339e669bcbccc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e452c412a84ff3a8aaa339e669bcbccc new file mode 100644 index 00000000..5cfefd63 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e452c412a84ff3a8aaa339e669bcbccc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4571bd0e876b0459b81b5660a657a78 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4571bd0e876b0459b81b5660a657a78 new file mode 100644 index 00000000..64c16dbd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4571bd0e876b0459b81b5660a657a78 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e45e440a736d46914d4c0de5ab01ea54 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e45e440a736d46914d4c0de5ab01ea54 new file mode 100644 index 00000000..d69cd1f4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e45e440a736d46914d4c0de5ab01ea54 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e460e4b61e635575bd57af8167449f7a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e460e4b61e635575bd57af8167449f7a new file mode 100644 index 00000000..b82c8a02 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e460e4b61e635575bd57af8167449f7a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e46477576d94ad312e717825999fc63d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e46477576d94ad312e717825999fc63d new file mode 100644 index 00000000..3b93087b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e46477576d94ad312e717825999fc63d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e481a0db30b6c180d76d00ce2e14f3eb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e481a0db30b6c180d76d00ce2e14f3eb new file mode 100644 index 00000000..53b80f56 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e481a0db30b6c180d76d00ce2e14f3eb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e485069caac2cc486e0f1cc159d45d6a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e485069caac2cc486e0f1cc159d45d6a new file mode 100644 index 00000000..d31f1e97 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e485069caac2cc486e0f1cc159d45d6a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4952c94886a553bc140792c001160bd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4952c94886a553bc140792c001160bd new file mode 100644 index 00000000..32582f3e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4952c94886a553bc140792c001160bd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4964015e5c90f6ac30db2be6e836496 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4964015e5c90f6ac30db2be6e836496 new file mode 100644 index 00000000..67dcd449 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4964015e5c90f6ac30db2be6e836496 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4c1f2a5c7d36c07285d4fc2e17e716f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4c1f2a5c7d36c07285d4fc2e17e716f new file mode 100644 index 00000000..5fdfc1d7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4c1f2a5c7d36c07285d4fc2e17e716f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4c6474a4155e53da87faec522b6e564 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4c6474a4155e53da87faec522b6e564 new file mode 100644 index 00000000..bf32f7b0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4c6474a4155e53da87faec522b6e564 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4da2778ad6260e119340c68b56e9190 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4da2778ad6260e119340c68b56e9190 new file mode 100644 index 00000000..e4b9f757 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4da2778ad6260e119340c68b56e9190 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4e75add5faae1d220e002a00255bf45 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4e75add5faae1d220e002a00255bf45 new file mode 100644 index 00000000..801df1f1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4e75add5faae1d220e002a00255bf45 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4e90a09bcaddb5f910ea253c31606b6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4e90a09bcaddb5f910ea253c31606b6 new file mode 100644 index 00000000..7c4b4666 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4e90a09bcaddb5f910ea253c31606b6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4f6703ec6fefd756ce1a74cd1342924 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4f6703ec6fefd756ce1a74cd1342924 new file mode 100644 index 00000000..d6d674cf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4f6703ec6fefd756ce1a74cd1342924 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4f6a6996d55ba8d0a0793273617b7c1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4f6a6996d55ba8d0a0793273617b7c1 new file mode 100644 index 00000000..fdd4166d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e4/e4f6a6996d55ba8d0a0793273617b7c1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e518b1637a1cf707c6cd7887cc1a50b9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e518b1637a1cf707c6cd7887cc1a50b9 new file mode 100644 index 00000000..009cf747 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e518b1637a1cf707c6cd7887cc1a50b9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e52058d7b6b54c0cde8068e078f5a49b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e52058d7b6b54c0cde8068e078f5a49b new file mode 100644 index 00000000..9ef5ef16 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e52058d7b6b54c0cde8068e078f5a49b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e524e0cdcd8b329014ce1661f387ef96 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e524e0cdcd8b329014ce1661f387ef96 new file mode 100644 index 00000000..77f768e8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e524e0cdcd8b329014ce1661f387ef96 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e52fa82d9da9a4c5547534263622c5c5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e52fa82d9da9a4c5547534263622c5c5 new file mode 100644 index 00000000..39e5ea64 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e52fa82d9da9a4c5547534263622c5c5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e58f26b918e4de0d14b5047c4cb83447 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e58f26b918e4de0d14b5047c4cb83447 new file mode 100644 index 00000000..59019c12 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e58f26b918e4de0d14b5047c4cb83447 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5af0874e55eedd2abc86d9a56a36c1d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5af0874e55eedd2abc86d9a56a36c1d new file mode 100644 index 00000000..f25cd337 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5af0874e55eedd2abc86d9a56a36c1d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5ec006a0b51cf302618646069752e59 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5ec006a0b51cf302618646069752e59 new file mode 100644 index 00000000..3364c9ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5ec006a0b51cf302618646069752e59 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5ed9ce26ad4f15fc31c4c0dcaab851b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5ed9ce26ad4f15fc31c4c0dcaab851b new file mode 100644 index 00000000..39f47ffa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5ed9ce26ad4f15fc31c4c0dcaab851b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5f1587c8dc473fc6ec3719e7ff214ec b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5f1587c8dc473fc6ec3719e7ff214ec new file mode 100644 index 00000000..7c8c72d2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5f1587c8dc473fc6ec3719e7ff214ec differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5f3593129d3411e130bad470e5a5110 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5f3593129d3411e130bad470e5a5110 new file mode 100644 index 00000000..f3c56fc9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5f3593129d3411e130bad470e5a5110 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5f9956b33651468def8aa1f40f425cb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5f9956b33651468def8aa1f40f425cb new file mode 100644 index 00000000..1b7d1bac Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e5/e5f9956b33651468def8aa1f40f425cb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e600191808177873498f2a94997419f3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e600191808177873498f2a94997419f3 new file mode 100644 index 00000000..8b6c5b70 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e600191808177873498f2a94997419f3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e611182cd3c93f34596a6aedf014c078 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e611182cd3c93f34596a6aedf014c078 new file mode 100644 index 00000000..5a37927b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e611182cd3c93f34596a6aedf014c078 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e62747d47d026b1f4a0fad53577f841f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e62747d47d026b1f4a0fad53577f841f new file mode 100644 index 00000000..356139a4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e62747d47d026b1f4a0fad53577f841f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e627d51576e6d8063068dc156463936f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e627d51576e6d8063068dc156463936f new file mode 100644 index 00000000..acb53691 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e627d51576e6d8063068dc156463936f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e630f42751436d25177c3f61e5facde5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e630f42751436d25177c3f61e5facde5 new file mode 100644 index 00000000..6a2d519d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e630f42751436d25177c3f61e5facde5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e642de030751ff1b9874eda807433eb2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e642de030751ff1b9874eda807433eb2 new file mode 100644 index 00000000..c7e224fb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e642de030751ff1b9874eda807433eb2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e659aa185968d7efbd51b53d1d939c6b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e659aa185968d7efbd51b53d1d939c6b new file mode 100644 index 00000000..d8d735a8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e659aa185968d7efbd51b53d1d939c6b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e694260bf4e6a98e9da16295197024f4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e694260bf4e6a98e9da16295197024f4 new file mode 100644 index 00000000..26c50f9e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e694260bf4e6a98e9da16295197024f4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e69b796640fddd71dcc9e7ad6156c8ba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e69b796640fddd71dcc9e7ad6156c8ba new file mode 100644 index 00000000..58ab2122 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e69b796640fddd71dcc9e7ad6156c8ba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e6d22fad52277ce94cbaf0ddae0924d3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e6d22fad52277ce94cbaf0ddae0924d3 new file mode 100644 index 00000000..75a275b8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e6d22fad52277ce94cbaf0ddae0924d3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e6e35373f69294f976bf129412862624 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e6e35373f69294f976bf129412862624 new file mode 100644 index 00000000..fcd489d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e6e35373f69294f976bf129412862624 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e6f1f287b88c005bd4ad5a9812badc42 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e6f1f287b88c005bd4ad5a9812badc42 new file mode 100644 index 00000000..d1d946d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e6f1f287b88c005bd4ad5a9812badc42 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e6f477870f01e7e0e78695ec76b34e9d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e6f477870f01e7e0e78695ec76b34e9d new file mode 100644 index 00000000..496aa676 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e6/e6f477870f01e7e0e78695ec76b34e9d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e72d06458b2aea1816b9b2994d7a1370 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e72d06458b2aea1816b9b2994d7a1370 new file mode 100644 index 00000000..eefacebe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e72d06458b2aea1816b9b2994d7a1370 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7323e17c1dee6aac51c8096132db8bb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7323e17c1dee6aac51c8096132db8bb new file mode 100644 index 00000000..6b9c5cdc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7323e17c1dee6aac51c8096132db8bb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7327b66a76203d6f7538dd3b52c767a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7327b66a76203d6f7538dd3b52c767a new file mode 100644 index 00000000..ca438020 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7327b66a76203d6f7538dd3b52c767a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e734593064ac7590cfef553822215bb3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e734593064ac7590cfef553822215bb3 new file mode 100644 index 00000000..4b10baa5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e734593064ac7590cfef553822215bb3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7371b357332face5a8d9ec905b7a55b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7371b357332face5a8d9ec905b7a55b new file mode 100644 index 00000000..585d9bf1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7371b357332face5a8d9ec905b7a55b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e73a15ad7cdd91e0f4c7ad4e9c4c9b28 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e73a15ad7cdd91e0f4c7ad4e9c4c9b28 new file mode 100644 index 00000000..b65f4eca Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e73a15ad7cdd91e0f4c7ad4e9c4c9b28 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e749afde2e4909a1d6f696d9f4b3588f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e749afde2e4909a1d6f696d9f4b3588f new file mode 100644 index 00000000..8a7077a7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e749afde2e4909a1d6f696d9f4b3588f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e74b3ed4a98c9efbdc8a17cac86ea7ee b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e74b3ed4a98c9efbdc8a17cac86ea7ee new file mode 100644 index 00000000..d516088e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e74b3ed4a98c9efbdc8a17cac86ea7ee differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e777474036ce62ddfe1a8c09dccb105a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e777474036ce62ddfe1a8c09dccb105a new file mode 100644 index 00000000..89f37c80 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e777474036ce62ddfe1a8c09dccb105a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e77b67468ae09557b83b470864e2bb4b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e77b67468ae09557b83b470864e2bb4b new file mode 100644 index 00000000..e82b75d0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e77b67468ae09557b83b470864e2bb4b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e78c2e9373180d8c751e0c74f46a3492 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e78c2e9373180d8c751e0c74f46a3492 new file mode 100644 index 00000000..5fbe565a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e78c2e9373180d8c751e0c74f46a3492 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7a12e4b669096078c469a4a351d1fdd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7a12e4b669096078c469a4a351d1fdd new file mode 100644 index 00000000..bfd219bd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7a12e4b669096078c469a4a351d1fdd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7a318efcb33d429f782abc261f88a5c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7a318efcb33d429f782abc261f88a5c new file mode 100644 index 00000000..f0aeeb70 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7a318efcb33d429f782abc261f88a5c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7ac267bd2ee7b101f45dce173b9af70 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7ac267bd2ee7b101f45dce173b9af70 new file mode 100644 index 00000000..03153380 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7ac267bd2ee7b101f45dce173b9af70 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7acd1a9fc54687f81cee3d885fbff46 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7acd1a9fc54687f81cee3d885fbff46 new file mode 100644 index 00000000..5cf22f1e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7acd1a9fc54687f81cee3d885fbff46 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7cdc634274a707072616b76ebfde566 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7cdc634274a707072616b76ebfde566 new file mode 100644 index 00000000..3a7caecb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7cdc634274a707072616b76ebfde566 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7e6598a8023c2a8589cc58a54847e14 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7e6598a8023c2a8589cc58a54847e14 new file mode 100644 index 00000000..b5307fd9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7e6598a8023c2a8589cc58a54847e14 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7ea334d3f41ce416dd5fc13c72c4cc7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7ea334d3f41ce416dd5fc13c72c4cc7 new file mode 100644 index 00000000..c182dcab Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e7/e7ea334d3f41ce416dd5fc13c72c4cc7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e830facc4c867ad2211a9c670eae3d9d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e830facc4c867ad2211a9c670eae3d9d new file mode 100644 index 00000000..d1523053 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e830facc4c867ad2211a9c670eae3d9d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e84687106810c39271da194e23a2f829 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e84687106810c39271da194e23a2f829 new file mode 100644 index 00000000..13934a71 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e84687106810c39271da194e23a2f829 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e84be0818c5cea103a9f205942035578 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e84be0818c5cea103a9f205942035578 new file mode 100644 index 00000000..cfe501cd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e84be0818c5cea103a9f205942035578 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8602004c616e9bccc850ed74008b0b8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8602004c616e9bccc850ed74008b0b8 new file mode 100644 index 00000000..410d6b39 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8602004c616e9bccc850ed74008b0b8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e878478c7c113f1530e07abb88fe40ab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e878478c7c113f1530e07abb88fe40ab new file mode 100644 index 00000000..87cc73b7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e878478c7c113f1530e07abb88fe40ab differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e884d61089fb4b15f35b71622fb134e1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e884d61089fb4b15f35b71622fb134e1 new file mode 100644 index 00000000..e95919ea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e884d61089fb4b15f35b71622fb134e1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e884fdeacf1a9e0e8a6c5770ee1baa76 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e884fdeacf1a9e0e8a6c5770ee1baa76 new file mode 100644 index 00000000..96dbf67a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e884fdeacf1a9e0e8a6c5770ee1baa76 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e892728d9509011d3c3be43bd4fd33fc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e892728d9509011d3c3be43bd4fd33fc new file mode 100644 index 00000000..c541455f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e892728d9509011d3c3be43bd4fd33fc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e892b79ae151899f69813899bf35f506 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e892b79ae151899f69813899bf35f506 new file mode 100644 index 00000000..48090497 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e892b79ae151899f69813899bf35f506 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e895324518788c5036dde3efff212607 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e895324518788c5036dde3efff212607 new file mode 100644 index 00000000..09212133 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e895324518788c5036dde3efff212607 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8a4432780e6559a33588725c4cc21f3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8a4432780e6559a33588725c4cc21f3 new file mode 100644 index 00000000..aeb254f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8a4432780e6559a33588725c4cc21f3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8b63521ec0e6442e8d0946f2397b887 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8b63521ec0e6442e8d0946f2397b887 new file mode 100644 index 00000000..4cf75317 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8b63521ec0e6442e8d0946f2397b887 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8b93c5c205a263ed0774cd31b5057db b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8b93c5c205a263ed0774cd31b5057db new file mode 100644 index 00000000..f55deb03 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8b93c5c205a263ed0774cd31b5057db differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8c3073b7430e80f3cd0e17ab7eb89f5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8c3073b7430e80f3cd0e17ab7eb89f5 new file mode 100644 index 00000000..0992789c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8c3073b7430e80f3cd0e17ab7eb89f5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8c56801ce072b7469ab9933e78223ca b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8c56801ce072b7469ab9933e78223ca new file mode 100644 index 00000000..1b06a77c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8c56801ce072b7469ab9933e78223ca differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8d7e4ec0e957729f9fade7981077b95 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8d7e4ec0e957729f9fade7981077b95 new file mode 100644 index 00000000..30cd69f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8d7e4ec0e957729f9fade7981077b95 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8e7490e4e2318c30821246c589cb497 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8e7490e4e2318c30821246c589cb497 new file mode 100644 index 00000000..69c0a95d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e8/e8e7490e4e2318c30821246c589cb497 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e92adcb1b2f1e7565034468d63d619d3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e92adcb1b2f1e7565034468d63d619d3 new file mode 100644 index 00000000..5ecb4678 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e92adcb1b2f1e7565034468d63d619d3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e92fa4dd3ef46895f88021c4a543e2a4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e92fa4dd3ef46895f88021c4a543e2a4 new file mode 100644 index 00000000..fcc97ee1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e92fa4dd3ef46895f88021c4a543e2a4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9385e71689aa944ed86d7b49ec17a94 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9385e71689aa944ed86d7b49ec17a94 new file mode 100644 index 00000000..56b8b859 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9385e71689aa944ed86d7b49ec17a94 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e940031e822278545cb235b1e6c6c6ed b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e940031e822278545cb235b1e6c6c6ed new file mode 100644 index 00000000..b58e8514 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e940031e822278545cb235b1e6c6c6ed differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e942aa279148f65b09b0eb67251a1954 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e942aa279148f65b09b0eb67251a1954 new file mode 100644 index 00000000..5bfbabba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e942aa279148f65b09b0eb67251a1954 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e94822fe87f5910e66ab3e6fb5916a30 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e94822fe87f5910e66ab3e6fb5916a30 new file mode 100644 index 00000000..f5f0c4f4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e94822fe87f5910e66ab3e6fb5916a30 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e94c78836866b80f71e8faf94930da76 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e94c78836866b80f71e8faf94930da76 new file mode 100644 index 00000000..d5391c50 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e94c78836866b80f71e8faf94930da76 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e977aefd73e5b1d60195a20f5ad69bf9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e977aefd73e5b1d60195a20f5ad69bf9 new file mode 100644 index 00000000..58fa41b9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e977aefd73e5b1d60195a20f5ad69bf9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e992d5cb3fdcaa1e7bbb5805be63dc80 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e992d5cb3fdcaa1e7bbb5805be63dc80 new file mode 100644 index 00000000..f93cf03a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e992d5cb3fdcaa1e7bbb5805be63dc80 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9a0795ad45149a7e2ccdc4af14e1462 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9a0795ad45149a7e2ccdc4af14e1462 new file mode 100644 index 00000000..e863e990 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9a0795ad45149a7e2ccdc4af14e1462 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9a94b81736c7183b09de3b4d16c285d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9a94b81736c7183b09de3b4d16c285d new file mode 100644 index 00000000..e7f3262d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9a94b81736c7183b09de3b4d16c285d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9c4a54a5e1a46b5962efd167415eb41 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9c4a54a5e1a46b5962efd167415eb41 new file mode 100644 index 00000000..25953fd1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9c4a54a5e1a46b5962efd167415eb41 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9daa6b8050750013a092b5c32e8ff34 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9daa6b8050750013a092b5c32e8ff34 new file mode 100644 index 00000000..24f76c9b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9daa6b8050750013a092b5c32e8ff34 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9f99170897c13cd0512cdf777ea7ef5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9f99170897c13cd0512cdf777ea7ef5 new file mode 100644 index 00000000..a523b253 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/e9/e9f99170897c13cd0512cdf777ea7ef5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea01f019822a449814eedf592af52755 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea01f019822a449814eedf592af52755 new file mode 100644 index 00000000..dde0b5de Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea01f019822a449814eedf592af52755 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea08d74f61816f9fa1b2688f8384ff23 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea08d74f61816f9fa1b2688f8384ff23 new file mode 100644 index 00000000..b32058a9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea08d74f61816f9fa1b2688f8384ff23 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea0a65976d88531a8b04b604eefbaafe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea0a65976d88531a8b04b604eefbaafe new file mode 100644 index 00000000..627187d9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea0a65976d88531a8b04b604eefbaafe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea13733c8dfa8417b3b2c28cb5ab87b3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea13733c8dfa8417b3b2c28cb5ab87b3 new file mode 100644 index 00000000..e8a0124b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea13733c8dfa8417b3b2c28cb5ab87b3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea172f3db64f7e45e24448145813e2fd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea172f3db64f7e45e24448145813e2fd new file mode 100644 index 00000000..73295ba6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea172f3db64f7e45e24448145813e2fd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea1811905efc51e0c3e0c97296048d60 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea1811905efc51e0c3e0c97296048d60 new file mode 100644 index 00000000..fe40f684 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea1811905efc51e0c3e0c97296048d60 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea24fd070cf7269ca33d6830337dbfff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea24fd070cf7269ca33d6830337dbfff new file mode 100644 index 00000000..badb9781 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea24fd070cf7269ca33d6830337dbfff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea37e4923294ce51adcf6888bd430593 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea37e4923294ce51adcf6888bd430593 new file mode 100644 index 00000000..d8de294e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea37e4923294ce51adcf6888bd430593 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea3fd361614fc5fe8db9251d04ad525a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea3fd361614fc5fe8db9251d04ad525a new file mode 100644 index 00000000..382b0c10 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea3fd361614fc5fe8db9251d04ad525a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea4457d381bf5c78571b3ff18c5d0ccf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea4457d381bf5c78571b3ff18c5d0ccf new file mode 100644 index 00000000..9ace1516 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea4457d381bf5c78571b3ff18c5d0ccf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea6024749f45d64a44ff4bf63092a5dd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea6024749f45d64a44ff4bf63092a5dd new file mode 100644 index 00000000..ec2265d3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea6024749f45d64a44ff4bf63092a5dd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea60c3ce6d95ec0949241cd8b4757378 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea60c3ce6d95ec0949241cd8b4757378 new file mode 100644 index 00000000..cf51bbc3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea60c3ce6d95ec0949241cd8b4757378 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea8473a737788ae0e66b8f2055895845 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea8473a737788ae0e66b8f2055895845 new file mode 100644 index 00000000..23868b06 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea8473a737788ae0e66b8f2055895845 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea8f88f5164ab755e29fa9cceba67bef b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea8f88f5164ab755e29fa9cceba67bef new file mode 100644 index 00000000..19623acf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea8f88f5164ab755e29fa9cceba67bef differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea90821e73637b921fce73db3b360733 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea90821e73637b921fce73db3b360733 new file mode 100644 index 00000000..1c86a877 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea90821e73637b921fce73db3b360733 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea917206a878f9d90af621494263c89c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea917206a878f9d90af621494263c89c new file mode 100644 index 00000000..a08fa1d2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea917206a878f9d90af621494263c89c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea9d37f759e85f1076294762f2aa0325 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea9d37f759e85f1076294762f2aa0325 new file mode 100644 index 00000000..f1a419e8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/ea9d37f759e85f1076294762f2aa0325 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eaae0c27b1a7535a7d83bc10f1f8b691 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eaae0c27b1a7535a7d83bc10f1f8b691 new file mode 100644 index 00000000..3bbc2ad9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eaae0c27b1a7535a7d83bc10f1f8b691 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eab2bbc9c73f53789986b4f7f0cda452 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eab2bbc9c73f53789986b4f7f0cda452 new file mode 100644 index 00000000..75720ea2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eab2bbc9c73f53789986b4f7f0cda452 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eac0e580ec5ec0bebd817614dfe7ffc4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eac0e580ec5ec0bebd817614dfe7ffc4 new file mode 100644 index 00000000..d7528aac Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eac0e580ec5ec0bebd817614dfe7ffc4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eac1810c39972093ece77cb1407b7e78 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eac1810c39972093ece77cb1407b7e78 new file mode 100644 index 00000000..3c940070 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eac1810c39972093ece77cb1407b7e78 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eac5428e64563c3c4ac81b04f92420cf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eac5428e64563c3c4ac81b04f92420cf new file mode 100644 index 00000000..f110e911 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eac5428e64563c3c4ac81b04f92420cf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eacfab6df872f63adb8d8757923b1a71 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eacfab6df872f63adb8d8757923b1a71 new file mode 100644 index 00000000..c0c3cf59 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ea/eacfab6df872f63adb8d8757923b1a71 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb0aedd88adf3e48eaec3664dab1d5b3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb0aedd88adf3e48eaec3664dab1d5b3 new file mode 100644 index 00000000..7bef7a8f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb0aedd88adf3e48eaec3664dab1d5b3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb5f354c46269c9f550b3c296050b8f5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb5f354c46269c9f550b3c296050b8f5 new file mode 100644 index 00000000..18520695 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb5f354c46269c9f550b3c296050b8f5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb6434421a1e10be10ef5c1769ad3545 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb6434421a1e10be10ef5c1769ad3545 new file mode 100644 index 00000000..ecb88697 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb6434421a1e10be10ef5c1769ad3545 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb70b58db5306379bbb148beef744bfd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb70b58db5306379bbb148beef744bfd new file mode 100644 index 00000000..aea4243a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb70b58db5306379bbb148beef744bfd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb7e2020fd944c4e74c4fe5c1837e9dc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb7e2020fd944c4e74c4fe5c1837e9dc new file mode 100644 index 00000000..a139fd80 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb7e2020fd944c4e74c4fe5c1837e9dc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb968c0025842a77d3c62e7834c4fbbb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb968c0025842a77d3c62e7834c4fbbb new file mode 100644 index 00000000..63c709ab Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb968c0025842a77d3c62e7834c4fbbb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb9d199d40c5d6927ab32a644621307a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb9d199d40c5d6927ab32a644621307a new file mode 100644 index 00000000..3f844172 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb9d199d40c5d6927ab32a644621307a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb9f3a44fb7d5963eeefd5029594fd80 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb9f3a44fb7d5963eeefd5029594fd80 new file mode 100644 index 00000000..bf5ae779 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eb9f3a44fb7d5963eeefd5029594fd80 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eba3bc2a95f5078c4c80293112f6a76c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eba3bc2a95f5078c4c80293112f6a76c new file mode 100644 index 00000000..7f4e8eca Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eba3bc2a95f5078c4c80293112f6a76c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eba56057558acb2a67ef397ede0bb49e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eba56057558acb2a67ef397ede0bb49e new file mode 100644 index 00000000..cad57740 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/eba56057558acb2a67ef397ede0bb49e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebb5e2c969c5aeaba5c92df1195a8e4e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebb5e2c969c5aeaba5c92df1195a8e4e new file mode 100644 index 00000000..ebf30e32 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebb5e2c969c5aeaba5c92df1195a8e4e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebbba4db49ebf265303dacee748342c7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebbba4db49ebf265303dacee748342c7 new file mode 100644 index 00000000..730d3645 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebbba4db49ebf265303dacee748342c7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebcca83d830bf55048c1114c5e03e6b9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebcca83d830bf55048c1114c5e03e6b9 new file mode 100644 index 00000000..be642b2b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebcca83d830bf55048c1114c5e03e6b9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebda8dd11b347658241cb587d42bb468 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebda8dd11b347658241cb587d42bb468 new file mode 100644 index 00000000..ee09ae3b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebda8dd11b347658241cb587d42bb468 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebe7027e7b9582fff5f4057f5c47a2dd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebe7027e7b9582fff5f4057f5c47a2dd new file mode 100644 index 00000000..35e9dc22 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebe7027e7b9582fff5f4057f5c47a2dd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebfc9981e7bba42e0a7e1671b1170327 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebfc9981e7bba42e0a7e1671b1170327 new file mode 100644 index 00000000..a1585eab Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/eb/ebfc9981e7bba42e0a7e1671b1170327 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec00a30e9fd19cc1d6ccb710fb230953 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec00a30e9fd19cc1d6ccb710fb230953 new file mode 100644 index 00000000..2abfadfc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec00a30e9fd19cc1d6ccb710fb230953 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec2dcdfe30dc6861dc4d370a13578241 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec2dcdfe30dc6861dc4d370a13578241 new file mode 100644 index 00000000..88e82b59 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec2dcdfe30dc6861dc4d370a13578241 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec34850f63ad111f711d724b5cf233a2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec34850f63ad111f711d724b5cf233a2 new file mode 100644 index 00000000..30cf61df Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec34850f63ad111f711d724b5cf233a2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec65c34417ca70a437c6b6e990ed41c6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec65c34417ca70a437c6b6e990ed41c6 new file mode 100644 index 00000000..b7b9b7d9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec65c34417ca70a437c6b6e990ed41c6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec6fee7da1366e48ab2e50c73e1e2265 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec6fee7da1366e48ab2e50c73e1e2265 new file mode 100644 index 00000000..6bf5774c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ec6fee7da1366e48ab2e50c73e1e2265 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ecc782c5f1ed8193e2a535a3512c2e2c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ecc782c5f1ed8193e2a535a3512c2e2c new file mode 100644 index 00000000..0c847ba4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ecc782c5f1ed8193e2a535a3512c2e2c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ecceb10e6f5716091020568a2f154f0e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ecceb10e6f5716091020568a2f154f0e new file mode 100644 index 00000000..e923440e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ec/ecceb10e6f5716091020568a2f154f0e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed1238f2ed960674f870cf4f5c55698e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed1238f2ed960674f870cf4f5c55698e new file mode 100644 index 00000000..8245f582 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed1238f2ed960674f870cf4f5c55698e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed31494efd64936ca07449e70b154d0a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed31494efd64936ca07449e70b154d0a new file mode 100644 index 00000000..f1ee4069 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed31494efd64936ca07449e70b154d0a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed3b8f1af6568023b79f7e1e3cc7443c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed3b8f1af6568023b79f7e1e3cc7443c new file mode 100644 index 00000000..2376298e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed3b8f1af6568023b79f7e1e3cc7443c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed5b7a27cc37fac0092ae6f293a74b8f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed5b7a27cc37fac0092ae6f293a74b8f new file mode 100644 index 00000000..462447ac Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed5b7a27cc37fac0092ae6f293a74b8f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed62119f680de4b7eb1e373997a229af b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed62119f680de4b7eb1e373997a229af new file mode 100644 index 00000000..28326c5d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed62119f680de4b7eb1e373997a229af differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed70a2ac6e7f8dbb8d6f3dc23ec8a81d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed70a2ac6e7f8dbb8d6f3dc23ec8a81d new file mode 100644 index 00000000..c2fa4179 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed70a2ac6e7f8dbb8d6f3dc23ec8a81d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed883b15359b3bf37cbdf966609921c9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed883b15359b3bf37cbdf966609921c9 new file mode 100644 index 00000000..6acd7c1d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed883b15359b3bf37cbdf966609921c9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed934870f3b3c236d758e3a014691b1c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed934870f3b3c236d758e3a014691b1c new file mode 100644 index 00000000..277a1371 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ed934870f3b3c236d758e3a014691b1c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/edbb1ca440661f42a3e5f8d9639b1847 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/edbb1ca440661f42a3e5f8d9639b1847 new file mode 100644 index 00000000..ee5cb84a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/edbb1ca440661f42a3e5f8d9639b1847 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/edc35962c8651c87b7e4aefdbb5b224d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/edc35962c8651c87b7e4aefdbb5b224d new file mode 100644 index 00000000..39f73ed8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/edc35962c8651c87b7e4aefdbb5b224d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/edcf77b3f069f940b7a74e9e51d26096 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/edcf77b3f069f940b7a74e9e51d26096 new file mode 100644 index 00000000..1cab5a7c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/edcf77b3f069f940b7a74e9e51d26096 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/edd2cc9ecad600a50dc9a908cdad0b9c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/edd2cc9ecad600a50dc9a908cdad0b9c new file mode 100644 index 00000000..0dbc15c9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/edd2cc9ecad600a50dc9a908cdad0b9c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ede023ffa70f704ab91a0d12be87cacf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ede023ffa70f704ab91a0d12be87cacf new file mode 100644 index 00000000..d90ead0a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ed/ede023ffa70f704ab91a0d12be87cacf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee1081b53ffbaab110a5de772ef3b444 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee1081b53ffbaab110a5de772ef3b444 new file mode 100644 index 00000000..693343e2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee1081b53ffbaab110a5de772ef3b444 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee2df35401262866d8ce87f3cddb6b1f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee2df35401262866d8ce87f3cddb6b1f new file mode 100644 index 00000000..474e8f4e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee2df35401262866d8ce87f3cddb6b1f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee3bfd64a6feceb21e6ac4a5ea7ed232 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee3bfd64a6feceb21e6ac4a5ea7ed232 new file mode 100644 index 00000000..c2e3a0c6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee3bfd64a6feceb21e6ac4a5ea7ed232 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee43d9bcec03f3e7d57b83404aa60dc3 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee43d9bcec03f3e7d57b83404aa60dc3 new file mode 100644 index 00000000..816aff8c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee43d9bcec03f3e7d57b83404aa60dc3 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee450a984a8130b00a76f2f8c74acbeb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee450a984a8130b00a76f2f8c74acbeb new file mode 100644 index 00000000..d2f866ff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee450a984a8130b00a76f2f8c74acbeb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee527e8fd150df69b1f2817e1a498cc8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee527e8fd150df69b1f2817e1a498cc8 new file mode 100644 index 00000000..19023db2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee527e8fd150df69b1f2817e1a498cc8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee6b3079c4dd00c7fe01ecc68d4bcf50 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee6b3079c4dd00c7fe01ecc68d4bcf50 new file mode 100644 index 00000000..2a7d5ed6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee6b3079c4dd00c7fe01ecc68d4bcf50 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee6c33d6fa7ce0602e043e8c98b26487 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee6c33d6fa7ce0602e043e8c98b26487 new file mode 100644 index 00000000..a8655585 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee6c33d6fa7ce0602e043e8c98b26487 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee6ddda83b6b40d6918f1a46af0cc1f1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee6ddda83b6b40d6918f1a46af0cc1f1 new file mode 100644 index 00000000..ee0d2b54 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee6ddda83b6b40d6918f1a46af0cc1f1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee705f9769d189b7ae527a0b7abb4f42 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee705f9769d189b7ae527a0b7abb4f42 new file mode 100644 index 00000000..1470d59f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee705f9769d189b7ae527a0b7abb4f42 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee819be55579a43691d58c0f8fe1c93c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee819be55579a43691d58c0f8fe1c93c new file mode 100644 index 00000000..bca803d2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee819be55579a43691d58c0f8fe1c93c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee835a0262b206ea3a774766c90993c8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee835a0262b206ea3a774766c90993c8 new file mode 100644 index 00000000..62739390 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee835a0262b206ea3a774766c90993c8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee9492df0372d8aaac4fbcc9a2cf6243 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee9492df0372d8aaac4fbcc9a2cf6243 new file mode 100644 index 00000000..4c20a0d4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/ee9492df0372d8aaac4fbcc9a2cf6243 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/eea134811893d410fd23696629dcaefb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/eea134811893d410fd23696629dcaefb new file mode 100644 index 00000000..4ce6603b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/eea134811893d410fd23696629dcaefb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/eea46c12d6854de0a320c0e9ac6f5819 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/eea46c12d6854de0a320c0e9ac6f5819 new file mode 100644 index 00000000..ce7528e1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/eea46c12d6854de0a320c0e9ac6f5819 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/eeaf4d7d1c73248500215cdabf02fa56 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/eeaf4d7d1c73248500215cdabf02fa56 new file mode 100644 index 00000000..7aa8e3f3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/eeaf4d7d1c73248500215cdabf02fa56 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/eeb9c2df9b10e367d76e54ee6c2f1ee6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/eeb9c2df9b10e367d76e54ee6c2f1ee6 new file mode 100644 index 00000000..31eb89d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ee/eeb9c2df9b10e367d76e54ee6c2f1ee6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef24279e2d39f1671196bd05d91171f4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef24279e2d39f1671196bd05d91171f4 new file mode 100644 index 00000000..e64148f4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef24279e2d39f1671196bd05d91171f4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef2bca8963481c01a88fcf3a82d22e4f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef2bca8963481c01a88fcf3a82d22e4f new file mode 100644 index 00000000..574d1507 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef2bca8963481c01a88fcf3a82d22e4f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef3266110a7a62852522290db437b01f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef3266110a7a62852522290db437b01f new file mode 100644 index 00000000..4c9ae274 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef3266110a7a62852522290db437b01f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef4953d0ee62bf8a15a56cc2f6d0d47d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef4953d0ee62bf8a15a56cc2f6d0d47d new file mode 100644 index 00000000..3a50c33a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef4953d0ee62bf8a15a56cc2f6d0d47d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef4aa14bb7ec4ea0fb174470ffba17ed b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef4aa14bb7ec4ea0fb174470ffba17ed new file mode 100644 index 00000000..6f6e81b3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef4aa14bb7ec4ea0fb174470ffba17ed differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef793f4c79156c508a231336abd11e16 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef793f4c79156c508a231336abd11e16 new file mode 100644 index 00000000..30fa8135 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef793f4c79156c508a231336abd11e16 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef7c41708acfc7ca22a7c85a37b50406 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef7c41708acfc7ca22a7c85a37b50406 new file mode 100644 index 00000000..a1a60088 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef7c41708acfc7ca22a7c85a37b50406 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef7e0f9c54c9e89a236a7fefb67bf111 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef7e0f9c54c9e89a236a7fefb67bf111 new file mode 100644 index 00000000..47b54d22 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef7e0f9c54c9e89a236a7fefb67bf111 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef971377589b1a5da63f9d5c00943b80 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef971377589b1a5da63f9d5c00943b80 new file mode 100644 index 00000000..e0244dc0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/ef971377589b1a5da63f9d5c00943b80 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/efb5c880245ee2856b54584071981722 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/efb5c880245ee2856b54584071981722 new file mode 100644 index 00000000..7fc0450c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/efb5c880245ee2856b54584071981722 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/efe41ef4102aa73c65c0672d3855c6d5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/efe41ef4102aa73c65c0672d3855c6d5 new file mode 100644 index 00000000..c99415d9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ef/efe41ef4102aa73c65c0672d3855c6d5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f04b0f1ddf0e3faddc6ec0488d21cb38 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f04b0f1ddf0e3faddc6ec0488d21cb38 new file mode 100644 index 00000000..d903a92b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f04b0f1ddf0e3faddc6ec0488d21cb38 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f04c94a21d45d78c9da167f2384e0115 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f04c94a21d45d78c9da167f2384e0115 new file mode 100644 index 00000000..a9e0a8d4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f04c94a21d45d78c9da167f2384e0115 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f07b234c5ab894664cec71e9ba085438 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f07b234c5ab894664cec71e9ba085438 new file mode 100644 index 00000000..0c13e62e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f07b234c5ab894664cec71e9ba085438 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0a2055bdbb42b4b9626ebf960988da6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0a2055bdbb42b4b9626ebf960988da6 new file mode 100644 index 00000000..9520a910 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0a2055bdbb42b4b9626ebf960988da6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0bc0eab5ca79a33dc8ada65dd35d459 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0bc0eab5ca79a33dc8ada65dd35d459 new file mode 100644 index 00000000..6729fa39 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0bc0eab5ca79a33dc8ada65dd35d459 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0c84d16a498d1f9855ee1e399d798b6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0c84d16a498d1f9855ee1e399d798b6 new file mode 100644 index 00000000..e761050e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0c84d16a498d1f9855ee1e399d798b6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0cf22ba3218ff68945e5ca2fb6c200d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0cf22ba3218ff68945e5ca2fb6c200d new file mode 100644 index 00000000..8ae1bcd9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0cf22ba3218ff68945e5ca2fb6c200d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0d2897b95c27911e13c77dec210101b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0d2897b95c27911e13c77dec210101b new file mode 100644 index 00000000..0a3ebb04 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0d2897b95c27911e13c77dec210101b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0db507c76a7cd28d146e5903ed2fc6c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0db507c76a7cd28d146e5903ed2fc6c new file mode 100644 index 00000000..cf245669 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0db507c76a7cd28d146e5903ed2fc6c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0e1e85c44e0c287140b276f7e05fca1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0e1e85c44e0c287140b276f7e05fca1 new file mode 100644 index 00000000..62d694be Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0e1e85c44e0c287140b276f7e05fca1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0e52883c3ecdca671a4f541a8484beb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0e52883c3ecdca671a4f541a8484beb new file mode 100644 index 00000000..3bad391a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f0/f0e52883c3ecdca671a4f541a8484beb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f103a7e4397a89115ff72f56ce6191af b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f103a7e4397a89115ff72f56ce6191af new file mode 100644 index 00000000..0a8598a1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f103a7e4397a89115ff72f56ce6191af differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f10f87cd51b21c822b6767560cb96bb4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f10f87cd51b21c822b6767560cb96bb4 new file mode 100644 index 00000000..5d800a74 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f10f87cd51b21c822b6767560cb96bb4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1119e3bcc5f7f798ad21a11d9119135 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1119e3bcc5f7f798ad21a11d9119135 new file mode 100644 index 00000000..bf6e6ce3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1119e3bcc5f7f798ad21a11d9119135 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1156b559f541b843859818e0522780d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1156b559f541b843859818e0522780d new file mode 100644 index 00000000..74c74f66 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1156b559f541b843859818e0522780d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f122e3716c0d06aae2a789cbc5c4f71f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f122e3716c0d06aae2a789cbc5c4f71f new file mode 100644 index 00000000..723cb3bf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f122e3716c0d06aae2a789cbc5c4f71f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f123d85d95ec2486a4d81cc060b7402e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f123d85d95ec2486a4d81cc060b7402e new file mode 100644 index 00000000..2aed1789 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f123d85d95ec2486a4d81cc060b7402e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f12b77281e44566dc242a1f363a12e0d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f12b77281e44566dc242a1f363a12e0d new file mode 100644 index 00000000..71b72586 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f12b77281e44566dc242a1f363a12e0d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1725db9ea870e8b605ace54c03a6b6c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1725db9ea870e8b605ace54c03a6b6c new file mode 100644 index 00000000..005dbd14 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1725db9ea870e8b605ace54c03a6b6c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f18ac982a1861c4fb80671a6f33f535b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f18ac982a1861c4fb80671a6f33f535b new file mode 100644 index 00000000..9c2a1e6d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f18ac982a1861c4fb80671a6f33f535b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f19598dc783862b10274b75e9079ec7a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f19598dc783862b10274b75e9079ec7a new file mode 100644 index 00000000..72b99e2a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f19598dc783862b10274b75e9079ec7a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f197255bdb785b5bee09fa2e98d7b38d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f197255bdb785b5bee09fa2e98d7b38d new file mode 100644 index 00000000..757b6041 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f197255bdb785b5bee09fa2e98d7b38d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1a98c63ca9b9cdf1fc9143a73497a45 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1a98c63ca9b9cdf1fc9143a73497a45 new file mode 100644 index 00000000..18522931 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1a98c63ca9b9cdf1fc9143a73497a45 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1acd225986007fa740973f39af55081 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1acd225986007fa740973f39af55081 new file mode 100644 index 00000000..3fc0446e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1acd225986007fa740973f39af55081 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1e023fc01271c1952d45c3c67d08cac b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1e023fc01271c1952d45c3c67d08cac new file mode 100644 index 00000000..e1d6c4d1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f1/f1e023fc01271c1952d45c3c67d08cac differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f217020d7ea2beddad04aeeb763bb006 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f217020d7ea2beddad04aeeb763bb006 new file mode 100644 index 00000000..3b90233d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f217020d7ea2beddad04aeeb763bb006 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2405e357abad7732b10e9842311d479 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2405e357abad7732b10e9842311d479 new file mode 100644 index 00000000..afb1a6f3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2405e357abad7732b10e9842311d479 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2759cab3dfdc271f22eb54043d86aa4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2759cab3dfdc271f22eb54043d86aa4 new file mode 100644 index 00000000..6de23caf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2759cab3dfdc271f22eb54043d86aa4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f28d625bed54bc0c7d528567c86134c1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f28d625bed54bc0c7d528567c86134c1 new file mode 100644 index 00000000..e9a708dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f28d625bed54bc0c7d528567c86134c1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f29b7c7f6a3574dfb5f5cedd3f21f494 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f29b7c7f6a3574dfb5f5cedd3f21f494 new file mode 100644 index 00000000..628ae658 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f29b7c7f6a3574dfb5f5cedd3f21f494 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f29beb031cb1b096ff19442f66530f04 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f29beb031cb1b096ff19442f66530f04 new file mode 100644 index 00000000..3d0aaf9f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f29beb031cb1b096ff19442f66530f04 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2b912fe0204aa49dd03bc698e6e8574 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2b912fe0204aa49dd03bc698e6e8574 new file mode 100644 index 00000000..9a0faf89 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2b912fe0204aa49dd03bc698e6e8574 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2de96e6cc41699afdb21aa81ddcd5ed b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2de96e6cc41699afdb21aa81ddcd5ed new file mode 100644 index 00000000..c99c8b8a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2de96e6cc41699afdb21aa81ddcd5ed differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2ec64d887ef34df9029f18169e5a073 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2ec64d887ef34df9029f18169e5a073 new file mode 100644 index 00000000..d3c53665 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f2/f2ec64d887ef34df9029f18169e5a073 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f30244e28a45ce5023ccd20f112a4152 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f30244e28a45ce5023ccd20f112a4152 new file mode 100644 index 00000000..76766afa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f30244e28a45ce5023ccd20f112a4152 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f30656a42a9c9d1eb3fd6d2db08ce11b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f30656a42a9c9d1eb3fd6d2db08ce11b new file mode 100644 index 00000000..5f10c632 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f30656a42a9c9d1eb3fd6d2db08ce11b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f314da37f43e7f1c06855ecfb549fef4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f314da37f43e7f1c06855ecfb549fef4 new file mode 100644 index 00000000..5a923c11 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f314da37f43e7f1c06855ecfb549fef4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f33f0eb9fe01802e399bc29f51ab5d90 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f33f0eb9fe01802e399bc29f51ab5d90 new file mode 100644 index 00000000..951976ae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f33f0eb9fe01802e399bc29f51ab5d90 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f387a5d47f89f8b141c8691a224a4626 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f387a5d47f89f8b141c8691a224a4626 new file mode 100644 index 00000000..8fd36c19 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f387a5d47f89f8b141c8691a224a4626 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f39de18ddfa3ab4e550779efe8789a36 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f39de18ddfa3ab4e550779efe8789a36 new file mode 100644 index 00000000..c61a07d4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f39de18ddfa3ab4e550779efe8789a36 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f3acb36afebb303a21d56afdc10d31d1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f3acb36afebb303a21d56afdc10d31d1 new file mode 100644 index 00000000..79ef4778 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f3acb36afebb303a21d56afdc10d31d1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f3b131cfa37c9e19f4501c2883cfd853 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f3b131cfa37c9e19f4501c2883cfd853 new file mode 100644 index 00000000..6b3bf929 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f3/f3b131cfa37c9e19f4501c2883cfd853 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f40cdae43b8474c54565078972892323 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f40cdae43b8474c54565078972892323 new file mode 100644 index 00000000..6ecde514 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f40cdae43b8474c54565078972892323 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f426fcd96dfce5159d2d64fd46bb0938 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f426fcd96dfce5159d2d64fd46bb0938 new file mode 100644 index 00000000..2695af03 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f426fcd96dfce5159d2d64fd46bb0938 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f429ea15a615f368d0ca46637845fdb6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f429ea15a615f368d0ca46637845fdb6 new file mode 100644 index 00000000..4bcb7af4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f429ea15a615f368d0ca46637845fdb6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f431f884d49e2857c9b13a40102645d9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f431f884d49e2857c9b13a40102645d9 new file mode 100644 index 00000000..a28111bc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f431f884d49e2857c9b13a40102645d9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f43c2f6da18ba5c0bf13dfb129d0284b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f43c2f6da18ba5c0bf13dfb129d0284b new file mode 100644 index 00000000..1f3ac68f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f43c2f6da18ba5c0bf13dfb129d0284b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f43eba859563ff8c13200e9b0cb0dd74 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f43eba859563ff8c13200e9b0cb0dd74 new file mode 100644 index 00000000..589b257d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f43eba859563ff8c13200e9b0cb0dd74 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f46ae818c069cdb1bede8f97fef1261f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f46ae818c069cdb1bede8f97fef1261f new file mode 100644 index 00000000..1fa0c18b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f46ae818c069cdb1bede8f97fef1261f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4731d29236a02948995d5d38259f426 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4731d29236a02948995d5d38259f426 new file mode 100644 index 00000000..fd413670 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4731d29236a02948995d5d38259f426 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f484440ea17ed8f81e7594227f5add1c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f484440ea17ed8f81e7594227f5add1c new file mode 100644 index 00000000..dca90918 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f484440ea17ed8f81e7594227f5add1c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f48e42cce63de57293f5fcdeef9c961e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f48e42cce63de57293f5fcdeef9c961e new file mode 100644 index 00000000..270ea238 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f48e42cce63de57293f5fcdeef9c961e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4943c42ad5522da37614c4198c750f2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4943c42ad5522da37614c4198c750f2 new file mode 100644 index 00000000..f0e15610 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4943c42ad5522da37614c4198c750f2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4a7ad23768cb5b31be33b15f098c2ad b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4a7ad23768cb5b31be33b15f098c2ad new file mode 100644 index 00000000..380b61ea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4a7ad23768cb5b31be33b15f098c2ad differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4b02f1e1524787564aa3c0045a22500 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4b02f1e1524787564aa3c0045a22500 new file mode 100644 index 00000000..2a73334f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4b02f1e1524787564aa3c0045a22500 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4ec6685a4cd61ff7e6a26d3bc52307b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4ec6685a4cd61ff7e6a26d3bc52307b new file mode 100644 index 00000000..7a3875f3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4ec6685a4cd61ff7e6a26d3bc52307b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4ecfef58281951cf9876ce580ad5b65 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4ecfef58281951cf9876ce580ad5b65 new file mode 100644 index 00000000..30a30bb5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f4/f4ecfef58281951cf9876ce580ad5b65 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5011c4c729e441c4eb91fb600e9b8ff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5011c4c729e441c4eb91fb600e9b8ff new file mode 100644 index 00000000..cd91af1d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5011c4c729e441c4eb91fb600e9b8ff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f509a840185a6ac71bd21327b0bcb899 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f509a840185a6ac71bd21327b0bcb899 new file mode 100644 index 00000000..4d33f79e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f509a840185a6ac71bd21327b0bcb899 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f520e7ee2d8e6b7427eb8cdfbd2a345e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f520e7ee2d8e6b7427eb8cdfbd2a345e new file mode 100644 index 00000000..77b8feaf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f520e7ee2d8e6b7427eb8cdfbd2a345e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5960abfe3ed3667db66132acc8e6193 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5960abfe3ed3667db66132acc8e6193 new file mode 100644 index 00000000..d8c12b53 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5960abfe3ed3667db66132acc8e6193 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5af9ee61298ca917df93b943e1361e8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5af9ee61298ca917df93b943e1361e8 new file mode 100644 index 00000000..62911bfe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5af9ee61298ca917df93b943e1361e8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5c10ab39b5cc82deecf2f212f93e948 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5c10ab39b5cc82deecf2f212f93e948 new file mode 100644 index 00000000..dc25cf3d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5c10ab39b5cc82deecf2f212f93e948 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5c1eab8f7e79a788e7476604838d1cf b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5c1eab8f7e79a788e7476604838d1cf new file mode 100644 index 00000000..ac2aed25 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5c1eab8f7e79a788e7476604838d1cf differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5daa4c1f4a8c14ec3ce983ad8e7e90f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5daa4c1f4a8c14ec3ce983ad8e7e90f new file mode 100644 index 00000000..cc299854 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5daa4c1f4a8c14ec3ce983ad8e7e90f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5dfb50fc7256dc6fb02b900c3bb31ff b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5dfb50fc7256dc6fb02b900c3bb31ff new file mode 100644 index 00000000..d639e53a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5dfb50fc7256dc6fb02b900c3bb31ff differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5e060aea340016d652dee5a567b3b8a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5e060aea340016d652dee5a567b3b8a new file mode 100644 index 00000000..fce35059 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5e060aea340016d652dee5a567b3b8a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5eb90b91c84738ae5f334db0a474495 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5eb90b91c84738ae5f334db0a474495 new file mode 100644 index 00000000..9c85960c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5eb90b91c84738ae5f334db0a474495 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5ff8890f28eb009f7a55b5ff918f80b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5ff8890f28eb009f7a55b5ff918f80b new file mode 100644 index 00000000..f9acd43f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f5/f5ff8890f28eb009f7a55b5ff918f80b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f60141c1b5a79bac19257f0f1261b31e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f60141c1b5a79bac19257f0f1261b31e new file mode 100644 index 00000000..95b14ca5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f60141c1b5a79bac19257f0f1261b31e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f61e93244c080b8e300afd833aa40689 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f61e93244c080b8e300afd833aa40689 new file mode 100644 index 00000000..df95e6a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f61e93244c080b8e300afd833aa40689 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f637cc0c500f0b8a9173266dcf042a8b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f637cc0c500f0b8a9173266dcf042a8b new file mode 100644 index 00000000..ef48c478 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f637cc0c500f0b8a9173266dcf042a8b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f64243bdedc5b4de1da0b203c7043359 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f64243bdedc5b4de1da0b203c7043359 new file mode 100644 index 00000000..f1740d90 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f64243bdedc5b4de1da0b203c7043359 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f644ff5689f4795e688293711eb454af b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f644ff5689f4795e688293711eb454af new file mode 100644 index 00000000..fe7ad8d4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f644ff5689f4795e688293711eb454af differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f645b2510097495b28187ced8bb03b9b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f645b2510097495b28187ced8bb03b9b new file mode 100644 index 00000000..c5ab34b3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f645b2510097495b28187ced8bb03b9b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f645d5a83daa8a977974ab22ca48dd5d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f645d5a83daa8a977974ab22ca48dd5d new file mode 100644 index 00000000..e37d59b3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f645d5a83daa8a977974ab22ca48dd5d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6584a55408048404dafa25645922a19 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6584a55408048404dafa25645922a19 new file mode 100644 index 00000000..ad0cd8e4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6584a55408048404dafa25645922a19 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f65d8e2b8edca5fbc6cc8c121987b15f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f65d8e2b8edca5fbc6cc8c121987b15f new file mode 100644 index 00000000..878279ff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f65d8e2b8edca5fbc6cc8c121987b15f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6780df447a5d1b184f9dc478ae2ba2a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6780df447a5d1b184f9dc478ae2ba2a new file mode 100644 index 00000000..ff5d3910 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6780df447a5d1b184f9dc478ae2ba2a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f68291da3931a02533b749e592dec638 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f68291da3931a02533b749e592dec638 new file mode 100644 index 00000000..3c384e24 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f68291da3931a02533b749e592dec638 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f68fa974a2387267afacc825ec6e1516 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f68fa974a2387267afacc825ec6e1516 new file mode 100644 index 00000000..284ef3f0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f68fa974a2387267afacc825ec6e1516 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6954ccd4d4db1641748b9be7355a5ba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6954ccd4d4db1641748b9be7355a5ba new file mode 100644 index 00000000..1eead9d7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6954ccd4d4db1641748b9be7355a5ba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6b0050a2807d2f52e42b668f38c78df b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6b0050a2807d2f52e42b668f38c78df new file mode 100644 index 00000000..2e210f39 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6b0050a2807d2f52e42b668f38c78df differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6b458ed26f18052a6a73f60c0265aa2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6b458ed26f18052a6a73f60c0265aa2 new file mode 100644 index 00000000..ac0adc48 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6b458ed26f18052a6a73f60c0265aa2 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6b712d7e5abf676b83789ba0d8c4642 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6b712d7e5abf676b83789ba0d8c4642 new file mode 100644 index 00000000..f1666b89 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6b712d7e5abf676b83789ba0d8c4642 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6c039c2b26df019f0fc012b05cc2cac b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6c039c2b26df019f0fc012b05cc2cac new file mode 100644 index 00000000..a7091711 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6c039c2b26df019f0fc012b05cc2cac differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6c2d770142e70c0662cae3073917706 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6c2d770142e70c0662cae3073917706 new file mode 100644 index 00000000..a30df173 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6c2d770142e70c0662cae3073917706 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6c60cb76c5284bbb7fe64a975f988f6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6c60cb76c5284bbb7fe64a975f988f6 new file mode 100644 index 00000000..5ba9f16f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6c60cb76c5284bbb7fe64a975f988f6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6dcaa0412a070d406b3e13596039d96 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6dcaa0412a070d406b3e13596039d96 new file mode 100644 index 00000000..6c83fdd4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6dcaa0412a070d406b3e13596039d96 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6e6b4b0d24ba12a89b3d388145966c4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6e6b4b0d24ba12a89b3d388145966c4 new file mode 100644 index 00000000..e82a57b9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f6/f6e6b4b0d24ba12a89b3d388145966c4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f706983e39206574833232f6da272872 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f706983e39206574833232f6da272872 new file mode 100644 index 00000000..d856fdaf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f706983e39206574833232f6da272872 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f73614fc2748b86357f54a0f4d9d22dd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f73614fc2748b86357f54a0f4d9d22dd new file mode 100644 index 00000000..96b0edb7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f73614fc2748b86357f54a0f4d9d22dd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f76a807aa8ad8d8f7896d5f616bb5299 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f76a807aa8ad8d8f7896d5f616bb5299 new file mode 100644 index 00000000..16de0043 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f76a807aa8ad8d8f7896d5f616bb5299 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f77b3a5f7a2ee64b13aa63fdb1b11532 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f77b3a5f7a2ee64b13aa63fdb1b11532 new file mode 100644 index 00000000..f960ebd8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f77b3a5f7a2ee64b13aa63fdb1b11532 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f7a2019f52576d971cbcc9e0556a983d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f7a2019f52576d971cbcc9e0556a983d new file mode 100644 index 00000000..d40dd976 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f7a2019f52576d971cbcc9e0556a983d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f7dfd8bd06b722dabe5454e531430aa5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f7dfd8bd06b722dabe5454e531430aa5 new file mode 100644 index 00000000..7032b520 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f7/f7dfd8bd06b722dabe5454e531430aa5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f814d81cde5d3412577e2abcf40baafe b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f814d81cde5d3412577e2abcf40baafe new file mode 100644 index 00000000..057f29ed Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f814d81cde5d3412577e2abcf40baafe differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f82f750da91f05240f100cd88cc728fd b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f82f750da91f05240f100cd88cc728fd new file mode 100644 index 00000000..7422279d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f82f750da91f05240f100cd88cc728fd differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f82fe82588b58f27d0dcfea1fe4208c6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f82fe82588b58f27d0dcfea1fe4208c6 new file mode 100644 index 00000000..da7fe760 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f82fe82588b58f27d0dcfea1fe4208c6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f833bffb4928dd0cf2cb7e438ff930c6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f833bffb4928dd0cf2cb7e438ff930c6 new file mode 100644 index 00000000..4c380d6b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f833bffb4928dd0cf2cb7e438ff930c6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8380bb5e0bd6bdd7c9032c6ca2d5ea9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8380bb5e0bd6bdd7c9032c6ca2d5ea9 new file mode 100644 index 00000000..6e1b5d3c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8380bb5e0bd6bdd7c9032c6ca2d5ea9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f84a4f9ef71a21ac13f0864edfbdf50a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f84a4f9ef71a21ac13f0864edfbdf50a new file mode 100644 index 00000000..05a2d56c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f84a4f9ef71a21ac13f0864edfbdf50a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f879417bfd876986ad642e563f047512 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f879417bfd876986ad642e563f047512 new file mode 100644 index 00000000..860c9a97 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f879417bfd876986ad642e563f047512 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f879c3a0eab9137d4afacee0082b45d8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f879c3a0eab9137d4afacee0082b45d8 new file mode 100644 index 00000000..1a510c77 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f879c3a0eab9137d4afacee0082b45d8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f89032ced5dd0428484795e09891fbe4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f89032ced5dd0428484795e09891fbe4 new file mode 100644 index 00000000..f117ebea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f89032ced5dd0428484795e09891fbe4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f896ef524c9806489f9b8935f939a5f9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f896ef524c9806489f9b8935f939a5f9 new file mode 100644 index 00000000..d519f4f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f896ef524c9806489f9b8935f939a5f9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f89b3800d09b743131a914a65621c92f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f89b3800d09b743131a914a65621c92f new file mode 100644 index 00000000..f7d6f2fa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f89b3800d09b743131a914a65621c92f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8a47d130ddc8d9e1fa9ae31d2647de1 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8a47d130ddc8d9e1fa9ae31d2647de1 new file mode 100644 index 00000000..664eb160 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8a47d130ddc8d9e1fa9ae31d2647de1 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8abff93bf459ef8012be55caf17430a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8abff93bf459ef8012be55caf17430a new file mode 100644 index 00000000..b77d061d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8abff93bf459ef8012be55caf17430a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8d85f6114366d68974dee8cccb698ba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8d85f6114366d68974dee8cccb698ba new file mode 100644 index 00000000..073f0c67 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8d85f6114366d68974dee8cccb698ba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8de5b40e76c9ba8a05acf6910d1f651 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8de5b40e76c9ba8a05acf6910d1f651 new file mode 100644 index 00000000..a4f36df4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8de5b40e76c9ba8a05acf6910d1f651 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8e652472e9e6e561ae870cce4a896fc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8e652472e9e6e561ae870cce4a896fc new file mode 100644 index 00000000..c93d4e2d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8e652472e9e6e561ae870cce4a896fc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8f0706589c7d5fcc804ba78d153a613 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8f0706589c7d5fcc804ba78d153a613 new file mode 100644 index 00000000..09b29054 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8f0706589c7d5fcc804ba78d153a613 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8f402739c8d794ebf1b08e06ec2fc75 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8f402739c8d794ebf1b08e06ec2fc75 new file mode 100644 index 00000000..1d36284a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f8/f8f402739c8d794ebf1b08e06ec2fc75 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f911096668d6c356311f2e4157c2737d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f911096668d6c356311f2e4157c2737d new file mode 100644 index 00000000..f7078d18 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f911096668d6c356311f2e4157c2737d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f91841e9a4572c94259d68abfb239721 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f91841e9a4572c94259d68abfb239721 new file mode 100644 index 00000000..6377e333 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f91841e9a4572c94259d68abfb239721 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9259e056b45a4f027d96407a09d10f0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9259e056b45a4f027d96407a09d10f0 new file mode 100644 index 00000000..988e7173 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9259e056b45a4f027d96407a09d10f0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9826e298e8ac36792b29a17f96051f6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9826e298e8ac36792b29a17f96051f6 new file mode 100644 index 00000000..45d768a2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9826e298e8ac36792b29a17f96051f6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f982add24603dbc791c5644cb0fbda3a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f982add24603dbc791c5644cb0fbda3a new file mode 100644 index 00000000..04fd810f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f982add24603dbc791c5644cb0fbda3a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f98e61e046070116e5505a50096077c9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f98e61e046070116e5505a50096077c9 new file mode 100644 index 00000000..aac921bd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f98e61e046070116e5505a50096077c9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f99d3ac93743675ac5cfa522eda8ce20 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f99d3ac93743675ac5cfa522eda8ce20 new file mode 100644 index 00000000..bf4b629a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f99d3ac93743675ac5cfa522eda8ce20 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9a5d2554a0e931efd77f0511ac61202 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9a5d2554a0e931efd77f0511ac61202 new file mode 100644 index 00000000..da16a67d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9a5d2554a0e931efd77f0511ac61202 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9b9b252d672a1c51bdc19a03940c978 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9b9b252d672a1c51bdc19a03940c978 new file mode 100644 index 00000000..60cec6ee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9b9b252d672a1c51bdc19a03940c978 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9c7a65567b348a85de0ee3edf0bd057 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9c7a65567b348a85de0ee3edf0bd057 new file mode 100644 index 00000000..6b4fd5d4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9c7a65567b348a85de0ee3edf0bd057 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9d2ed414716611c09ade64060db9e8a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9d2ed414716611c09ade64060db9e8a new file mode 100644 index 00000000..7ab27b10 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9d2ed414716611c09ade64060db9e8a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9d7fce661b9bada022ea9083d19d205 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9d7fce661b9bada022ea9083d19d205 new file mode 100644 index 00000000..3a6a5b91 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9d7fce661b9bada022ea9083d19d205 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9d9f4bbd97290dbd9e8bbcaff8a8313 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9d9f4bbd97290dbd9e8bbcaff8a8313 new file mode 100644 index 00000000..da1d3b96 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9d9f4bbd97290dbd9e8bbcaff8a8313 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e020fdea5d020db6710039f520c53e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e020fdea5d020db6710039f520c53e new file mode 100644 index 00000000..679fef0f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e020fdea5d020db6710039f520c53e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e4847dc028a431fa7f6c80b3516560 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e4847dc028a431fa7f6c80b3516560 new file mode 100644 index 00000000..90d04407 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e4847dc028a431fa7f6c80b3516560 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e4faf75f485531fcdf08b899f6ae31 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e4faf75f485531fcdf08b899f6ae31 new file mode 100644 index 00000000..f7ed117c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e4faf75f485531fcdf08b899f6ae31 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e6f978e55458f9762d9fc105f52b16 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e6f978e55458f9762d9fc105f52b16 new file mode 100644 index 00000000..acb4784c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e6f978e55458f9762d9fc105f52b16 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e887f0543b33c6b1b895eb19dffb38 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e887f0543b33c6b1b895eb19dffb38 new file mode 100644 index 00000000..967b1834 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9e887f0543b33c6b1b895eb19dffb38 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9ef08aa99e9fb4fb9f4c23fc78bf40a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9ef08aa99e9fb4fb9f4c23fc78bf40a new file mode 100644 index 00000000..2a9a5af7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/f9/f9ef08aa99e9fb4fb9f4c23fc78bf40a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa0120dc07329b4bf7c92ecb62c8516a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa0120dc07329b4bf7c92ecb62c8516a new file mode 100644 index 00000000..53fdd552 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa0120dc07329b4bf7c92ecb62c8516a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa348bc53f2e6430bcb71bef2024c4aa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa348bc53f2e6430bcb71bef2024c4aa new file mode 100644 index 00000000..332db202 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa348bc53f2e6430bcb71bef2024c4aa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa6ecfc4905b21153082c49c1fed5d3d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa6ecfc4905b21153082c49c1fed5d3d new file mode 100644 index 00000000..f97df82b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa6ecfc4905b21153082c49c1fed5d3d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa7104d4e61a93f72ed1cb243611cb64 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa7104d4e61a93f72ed1cb243611cb64 new file mode 100644 index 00000000..0a3eb249 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa7104d4e61a93f72ed1cb243611cb64 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa7267b2078e63a4279175686d57142f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa7267b2078e63a4279175686d57142f new file mode 100644 index 00000000..cbabb89b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa7267b2078e63a4279175686d57142f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa780af6dbf8185a70eb09dd74d8ea21 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa780af6dbf8185a70eb09dd74d8ea21 new file mode 100644 index 00000000..fee0a3e9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa780af6dbf8185a70eb09dd74d8ea21 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa8023864391cc6e79b425a676950316 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa8023864391cc6e79b425a676950316 new file mode 100644 index 00000000..683b1ab8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa8023864391cc6e79b425a676950316 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa8a575552f0dfe29138b80e9823ce84 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa8a575552f0dfe29138b80e9823ce84 new file mode 100644 index 00000000..1ae66909 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa8a575552f0dfe29138b80e9823ce84 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa8f4f272949761fb646f985287105fc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa8f4f272949761fb646f985287105fc new file mode 100644 index 00000000..550d5cbc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa8f4f272949761fb646f985287105fc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa95856c380e94408bf04d4e2040d80d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa95856c380e94408bf04d4e2040d80d new file mode 100644 index 00000000..5d41bd06 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fa95856c380e94408bf04d4e2040d80d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/faa88c684c7966b34f43a92826000b18 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/faa88c684c7966b34f43a92826000b18 new file mode 100644 index 00000000..221660fc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/faa88c684c7966b34f43a92826000b18 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/facca31eec6dc777c616d9dd55d19ebc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/facca31eec6dc777c616d9dd55d19ebc new file mode 100644 index 00000000..820c5961 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/facca31eec6dc777c616d9dd55d19ebc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fad56e73af2ddae8ee415bc198569afc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fad56e73af2ddae8ee415bc198569afc new file mode 100644 index 00000000..a9c5cda6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fa/fad56e73af2ddae8ee415bc198569afc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb02038b4d502481838e4302f0dacac8 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb02038b4d502481838e4302f0dacac8 new file mode 100644 index 00000000..e5fa0f4f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb02038b4d502481838e4302f0dacac8 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb0344fa74065df14b919e6701af8871 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb0344fa74065df14b919e6701af8871 new file mode 100644 index 00000000..5af109d1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb0344fa74065df14b919e6701af8871 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb69bf0ce8071b50e3567e72468eb4f9 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb69bf0ce8071b50e3567e72468eb4f9 new file mode 100644 index 00000000..b22a0d11 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb69bf0ce8071b50e3567e72468eb4f9 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb7dd67934f1b9adfdbc5271584e38dc b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb7dd67934f1b9adfdbc5271584e38dc new file mode 100644 index 00000000..232ac2da Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb7dd67934f1b9adfdbc5271584e38dc differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb84b3c9eab3ee7069b372599d03c106 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb84b3c9eab3ee7069b372599d03c106 new file mode 100644 index 00000000..81cabd59 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fb84b3c9eab3ee7069b372599d03c106 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fbd0f6effeaeedbbefc37156fc055579 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fbd0f6effeaeedbbefc37156fc055579 new file mode 100644 index 00000000..c397dab2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fbd0f6effeaeedbbefc37156fc055579 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fbe6ef0744686374d054825002fd6215 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fbe6ef0744686374d054825002fd6215 new file mode 100644 index 00000000..ea998681 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fbe6ef0744686374d054825002fd6215 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fbe8278dd7350deef4e091f65f1a7ed4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fbe8278dd7350deef4e091f65f1a7ed4 new file mode 100644 index 00000000..953333bd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fb/fbe8278dd7350deef4e091f65f1a7ed4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc0d73a14cb7fcac3062365bfadbee5c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc0d73a14cb7fcac3062365bfadbee5c new file mode 100644 index 00000000..17d95efa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc0d73a14cb7fcac3062365bfadbee5c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc1b4a04a5be674ad0e3d1904354fc0a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc1b4a04a5be674ad0e3d1904354fc0a new file mode 100644 index 00000000..abbdf972 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc1b4a04a5be674ad0e3d1904354fc0a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc270c43696b1c67b61f61de7fda2b72 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc270c43696b1c67b61f61de7fda2b72 new file mode 100644 index 00000000..e16236dc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc270c43696b1c67b61f61de7fda2b72 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc42bbc55521828ddb37541069c3063c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc42bbc55521828ddb37541069c3063c new file mode 100644 index 00000000..3cdc48ea Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc42bbc55521828ddb37541069c3063c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc5d40c65b5df2cb1025ae1ad681da4e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc5d40c65b5df2cb1025ae1ad681da4e new file mode 100644 index 00000000..133d073f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc5d40c65b5df2cb1025ae1ad681da4e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc64ced8411126b3800b0f8cbdac2783 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc64ced8411126b3800b0f8cbdac2783 new file mode 100644 index 00000000..6d3a5021 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc64ced8411126b3800b0f8cbdac2783 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc6d0331573812fd7154d3ffb97f1c27 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc6d0331573812fd7154d3ffb97f1c27 new file mode 100644 index 00000000..71c7c579 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc6d0331573812fd7154d3ffb97f1c27 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc8be99cb868b667642f6fd1bb7066e6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc8be99cb868b667642f6fd1bb7066e6 new file mode 100644 index 00000000..f3f15bd1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc8be99cb868b667642f6fd1bb7066e6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc95fa71f808f412f7f4015928a556ef b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc95fa71f808f412f7f4015928a556ef new file mode 100644 index 00000000..20cef761 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fc95fa71f808f412f7f4015928a556ef differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fcc6e4a528b7e87d58b6133e27ce8878 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fcc6e4a528b7e87d58b6133e27ce8878 new file mode 100644 index 00000000..5763551b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fcc6e4a528b7e87d58b6133e27ce8878 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fccb34ee7c186b1352eee17abd59c8c0 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fccb34ee7c186b1352eee17abd59c8c0 new file mode 100644 index 00000000..cbe6516b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fccb34ee7c186b1352eee17abd59c8c0 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fce1d248f66e79b113eb68c62d2c90ab b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fce1d248f66e79b113eb68c62d2c90ab new file mode 100644 index 00000000..0fcc051d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fce1d248f66e79b113eb68c62d2c90ab differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fce5cec85deb51c6be5cbb2a8202438f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fce5cec85deb51c6be5cbb2a8202438f new file mode 100644 index 00000000..3b1f3e34 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fc/fce5cec85deb51c6be5cbb2a8202438f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd0ac06033e7973e1201cc0bd0a68c42 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd0ac06033e7973e1201cc0bd0a68c42 new file mode 100644 index 00000000..be3fcbf1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd0ac06033e7973e1201cc0bd0a68c42 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd1869674febb19fab69dab3122e1c51 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd1869674febb19fab69dab3122e1c51 new file mode 100644 index 00000000..6403eea7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd1869674febb19fab69dab3122e1c51 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd1a061d8d1a0da8454962250e5facf4 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd1a061d8d1a0da8454962250e5facf4 new file mode 100644 index 00000000..d44a5e39 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd1a061d8d1a0da8454962250e5facf4 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd21b4191a27a625201cdd92d299eeba b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd21b4191a27a625201cdd92d299eeba new file mode 100644 index 00000000..6c53c973 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd21b4191a27a625201cdd92d299eeba differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd41d548c04f58ad394e75852448ba85 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd41d548c04f58ad394e75852448ba85 new file mode 100644 index 00000000..65b014a2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd41d548c04f58ad394e75852448ba85 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd4948a31e5737511cfc68c501847b8c b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd4948a31e5737511cfc68c501847b8c new file mode 100644 index 00000000..9137d5e1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd4948a31e5737511cfc68c501847b8c differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd7a6f8f45a5b88ba6329f7b8b1c7f1f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd7a6f8f45a5b88ba6329f7b8b1c7f1f new file mode 100644 index 00000000..217682e2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd7a6f8f45a5b88ba6329f7b8b1c7f1f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd8d502a08a757f81caded83a814e295 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd8d502a08a757f81caded83a814e295 new file mode 100644 index 00000000..768b9915 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd8d502a08a757f81caded83a814e295 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd9d952d955c8f2fbf15966b8c146d9d b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd9d952d955c8f2fbf15966b8c146d9d new file mode 100644 index 00000000..95e87c8e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fd9d952d955c8f2fbf15966b8c146d9d differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdac63396fdd305c5d14b0e9df25aa80 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdac63396fdd305c5d14b0e9df25aa80 new file mode 100644 index 00000000..230f18ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdac63396fdd305c5d14b0e9df25aa80 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdadc3e22b54bf2d00637e6f783eca0f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdadc3e22b54bf2d00637e6f783eca0f new file mode 100644 index 00000000..8370a326 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdadc3e22b54bf2d00637e6f783eca0f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdc4be1486aa40709d1a8e3bd56d9ec7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdc4be1486aa40709d1a8e3bd56d9ec7 new file mode 100644 index 00000000..d4e0e9d6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdc4be1486aa40709d1a8e3bd56d9ec7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fddfc5cf3aa95d17302270faaed4118f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fddfc5cf3aa95d17302270faaed4118f new file mode 100644 index 00000000..55e26f9d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fddfc5cf3aa95d17302270faaed4118f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdedef72c089b02c51ad2ee5e8c86953 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdedef72c089b02c51ad2ee5e8c86953 new file mode 100644 index 00000000..49d2643f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdedef72c089b02c51ad2ee5e8c86953 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdf438f84cebe3aadd47d276bc47fd2f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdf438f84cebe3aadd47d276bc47fd2f new file mode 100644 index 00000000..cbd9295f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fd/fdf438f84cebe3aadd47d276bc47fd2f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe02ce3b55be40d9863bda54edeba3f7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe02ce3b55be40d9863bda54edeba3f7 new file mode 100644 index 00000000..e81f4973 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe02ce3b55be40d9863bda54edeba3f7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe0a37abb5b85791fada2d256e050ba5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe0a37abb5b85791fada2d256e050ba5 new file mode 100644 index 00000000..8584de63 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe0a37abb5b85791fada2d256e050ba5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe362545056e59f02f43b78c8128d350 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe362545056e59f02f43b78c8128d350 new file mode 100644 index 00000000..3400fa02 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe362545056e59f02f43b78c8128d350 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe50319bacf4759b9fbf6a7f32fbe838 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe50319bacf4759b9fbf6a7f32fbe838 new file mode 100644 index 00000000..b0c31d38 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe50319bacf4759b9fbf6a7f32fbe838 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe67c118b1b30efb583a96f938bba48a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe67c118b1b30efb583a96f938bba48a new file mode 100644 index 00000000..2a6e6a49 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe67c118b1b30efb583a96f938bba48a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe738b0dbe94ef7a09812fbeb644bf52 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe738b0dbe94ef7a09812fbeb644bf52 new file mode 100644 index 00000000..45ad9cb9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe738b0dbe94ef7a09812fbeb644bf52 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe79a1782d982efea983c7beadd4075f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe79a1782d982efea983c7beadd4075f new file mode 100644 index 00000000..810e75dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe79a1782d982efea983c7beadd4075f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe7d6351797241632cd31f06a9321049 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe7d6351797241632cd31f06a9321049 new file mode 100644 index 00000000..db9057fa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe7d6351797241632cd31f06a9321049 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe97459a85281e5c8e33d2bc7d6ebde6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe97459a85281e5c8e33d2bc7d6ebde6 new file mode 100644 index 00000000..165c8330 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe97459a85281e5c8e33d2bc7d6ebde6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe9b15275f979b014bc2033e528a3722 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe9b15275f979b014bc2033e528a3722 new file mode 100644 index 00000000..4a2cb9d0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fe9b15275f979b014bc2033e528a3722 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/feaf3085633f37a507cbb7d1ae57d56e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/feaf3085633f37a507cbb7d1ae57d56e new file mode 100644 index 00000000..64ffae39 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/feaf3085633f37a507cbb7d1ae57d56e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fec495aed72cf8dba44d6078b1d0634e b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fec495aed72cf8dba44d6078b1d0634e new file mode 100644 index 00000000..f42d55f1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fec495aed72cf8dba44d6078b1d0634e differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fec5755bf9c6321c3481dbc78418625f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fec5755bf9c6321c3481dbc78418625f new file mode 100644 index 00000000..f1eeb505 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fec5755bf9c6321c3481dbc78418625f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fecb394e89b1c1de0acad049874be0c7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fecb394e89b1c1de0acad049874be0c7 new file mode 100644 index 00000000..5fb39d11 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fecb394e89b1c1de0acad049874be0c7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fee428793a785bdf07fca5b153b47ffa b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fee428793a785bdf07fca5b153b47ffa new file mode 100644 index 00000000..7f7e5845 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fee428793a785bdf07fca5b153b47ffa differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fefd9c16a67eb97b3a59a4a20146aa6b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fefd9c16a67eb97b3a59a4a20146aa6b new file mode 100644 index 00000000..b7f5e1c5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fefd9c16a67eb97b3a59a4a20146aa6b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fefec9f27e7fb691a1cd623746643201 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fefec9f27e7fb691a1cd623746643201 new file mode 100644 index 00000000..8dfb82c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/fe/fefec9f27e7fb691a1cd623746643201 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff013e295c872d265792c3cd254836c6 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff013e295c872d265792c3cd254836c6 new file mode 100644 index 00000000..ee6d7f46 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff013e295c872d265792c3cd254836c6 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff06e704f4d239701fc1fd3bbdf4e5b7 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff06e704f4d239701fc1fd3bbdf4e5b7 new file mode 100644 index 00000000..d758181d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff06e704f4d239701fc1fd3bbdf4e5b7 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff68b515c04fa053b03b9d50a4c5754a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff68b515c04fa053b03b9d50a4c5754a new file mode 100644 index 00000000..645ecfdd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff68b515c04fa053b03b9d50a4c5754a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff7063b766ef86c64def0a09619ea107 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff7063b766ef86c64def0a09619ea107 new file mode 100644 index 00000000..5b2043b6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff7063b766ef86c64def0a09619ea107 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff7d5b90cb2afa38f599b44fbf898649 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff7d5b90cb2afa38f599b44fbf898649 new file mode 100644 index 00000000..4da42c99 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff7d5b90cb2afa38f599b44fbf898649 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff8e859bea4cda69c8f1b275fb81b014 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff8e859bea4cda69c8f1b275fb81b014 new file mode 100644 index 00000000..703e40aa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ff8e859bea4cda69c8f1b275fb81b014 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffab19b8d8feb45319d1b32f504b2b7a b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffab19b8d8feb45319d1b32f504b2b7a new file mode 100644 index 00000000..42b6f4dc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffab19b8d8feb45319d1b32f504b2b7a differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffb38592e2f70f33dcb54fc0151fabc5 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffb38592e2f70f33dcb54fc0151fabc5 new file mode 100644 index 00000000..1459d1dc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffb38592e2f70f33dcb54fc0151fabc5 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffb390f710c8976b97f48ce2a3bc3168 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffb390f710c8976b97f48ce2a3bc3168 new file mode 100644 index 00000000..ab704c33 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffb390f710c8976b97f48ce2a3bc3168 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffda0c5d6e52aea599fee1ab6827157f b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffda0c5d6e52aea599fee1ab6827157f new file mode 100644 index 00000000..61bfe540 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffda0c5d6e52aea599fee1ab6827157f differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffe508cfc5d79e079fc5b21ef70af37b b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffe508cfc5d79e079fc5b21ef70af37b new file mode 100644 index 00000000..0834d43a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffe508cfc5d79e079fc5b21ef70af37b differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffefab9a2a305187f0601d3c9e7b5e61 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffefab9a2a305187f0601d3c9e7b5e61 new file mode 100644 index 00000000..dbaf7d61 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/ffefab9a2a305187f0601d3c9e7b5e61 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/fff4f79b377d2744305e821bb80e54be b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/fff4f79b377d2744305e821bb80e54be new file mode 100644 index 00000000..b8f8f81e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/fff4f79b377d2744305e821bb80e54be differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/fffec4268c9d074e4fe315d22db4a133 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/fffec4268c9d074e4fe315d22db4a133 new file mode 100644 index 00000000..d7c66225 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Artifacts/ff/fffec4268c9d074e4fe315d22db4a133 differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE-inputdata.json b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE-inputdata.json new file mode 100644 index 00000000..7c1cc465 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE-inputdata.json @@ -0,0 +1 @@ +{"BeeBuildProgramCommon.Data.ConfigurationData":{"Il2CppDir":"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/il2cpp","UnityLinkerPath":"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/il2cpp/build/deploy/UnityLinker","Il2CppPath":"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/il2cpp/build/deploy/il2cpp","NetCoreRunPath":"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun","DotNetExe":"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet","EditorContentsPath":"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data","Packages":[{"Name":"com.unity.collab-proxy","ResolvedPath":"Library/PackageCache/com.unity.collab-proxy@2.0.5"},{"Name":"com.unity.feature.development","ResolvedPath":"Library/PackageCache/com.unity.feature.development@1.0.2"},{"Name":"com.unity.textmeshpro","ResolvedPath":"Library/PackageCache/com.unity.textmeshpro@3.0.6"},{"Name":"com.unity.timeline","ResolvedPath":"Library/PackageCache/com.unity.timeline@1.8.2"},{"Name":"com.unity.toolchain.linux-x86_64","ResolvedPath":"Library/PackageCache/com.unity.toolchain.linux-x86_64@2.0.6"},{"Name":"com.unity.ugui","ResolvedPath":"Library/PackageCache/com.unity.ugui@1.0.0"},{"Name":"com.unity.visualscripting","ResolvedPath":"Library/PackageCache/com.unity.visualscripting@1.8.0"},{"Name":"com.unity.modules.ai","ResolvedPath":"Library/PackageCache/com.unity.modules.ai@1.0.0"},{"Name":"com.unity.modules.androidjni","ResolvedPath":"Library/PackageCache/com.unity.modules.androidjni@1.0.0"},{"Name":"com.unity.modules.animation","ResolvedPath":"Library/PackageCache/com.unity.modules.animation@1.0.0"},{"Name":"com.unity.modules.assetbundle","ResolvedPath":"Library/PackageCache/com.unity.modules.assetbundle@1.0.0"},{"Name":"com.unity.modules.audio","ResolvedPath":"Library/PackageCache/com.unity.modules.audio@1.0.0"},{"Name":"com.unity.modules.cloth","ResolvedPath":"Library/PackageCache/com.unity.modules.cloth@1.0.0"},{"Name":"com.unity.modules.director","ResolvedPath":"Library/PackageCache/com.unity.modules.director@1.0.0"},{"Name":"com.unity.modules.imageconversion","ResolvedPath":"Library/PackageCache/com.unity.modules.imageconversion@1.0.0"},{"Name":"com.unity.modules.imgui","ResolvedPath":"Library/PackageCache/com.unity.modules.imgui@1.0.0"},{"Name":"com.unity.modules.jsonserialize","ResolvedPath":"Library/PackageCache/com.unity.modules.jsonserialize@1.0.0"},{"Name":"com.unity.modules.particlesystem","ResolvedPath":"Library/PackageCache/com.unity.modules.particlesystem@1.0.0"},{"Name":"com.unity.modules.physics","ResolvedPath":"Library/PackageCache/com.unity.modules.physics@1.0.0"},{"Name":"com.unity.modules.physics2d","ResolvedPath":"Library/PackageCache/com.unity.modules.physics2d@1.0.0"},{"Name":"com.unity.modules.screencapture","ResolvedPath":"Library/PackageCache/com.unity.modules.screencapture@1.0.0"},{"Name":"com.unity.modules.terrain","ResolvedPath":"Library/PackageCache/com.unity.modules.terrain@1.0.0"},{"Name":"com.unity.modules.terrainphysics","ResolvedPath":"Library/PackageCache/com.unity.modules.terrainphysics@1.0.0"},{"Name":"com.unity.modules.tilemap","ResolvedPath":"Library/PackageCache/com.unity.modules.tilemap@1.0.0"},{"Name":"com.unity.modules.ui","ResolvedPath":"Library/PackageCache/com.unity.modules.ui@1.0.0"},{"Name":"com.unity.modules.uielements","ResolvedPath":"Library/PackageCache/com.unity.modules.uielements@1.0.0"},{"Name":"com.unity.modules.umbra","ResolvedPath":"Library/PackageCache/com.unity.modules.umbra@1.0.0"},{"Name":"com.unity.modules.unityanalytics","ResolvedPath":"Library/PackageCache/com.unity.modules.unityanalytics@1.0.0"},{"Name":"com.unity.modules.unitywebrequest","ResolvedPath":"Library/PackageCache/com.unity.modules.unitywebrequest@1.0.0"},{"Name":"com.unity.modules.unitywebrequestassetbundle","ResolvedPath":"Library/PackageCache/com.unity.modules.unitywebrequestassetbundle@1.0.0"},{"Name":"com.unity.modules.unitywebrequestaudio","ResolvedPath":"Library/PackageCache/com.unity.modules.unitywebrequestaudio@1.0.0"},{"Name":"com.unity.modules.unitywebrequesttexture","ResolvedPath":"Library/PackageCache/com.unity.modules.unitywebrequesttexture@1.0.0"},{"Name":"com.unity.modules.unitywebrequestwww","ResolvedPath":"Library/PackageCache/com.unity.modules.unitywebrequestwww@1.0.0"},{"Name":"com.unity.modules.vehicles","ResolvedPath":"Library/PackageCache/com.unity.modules.vehicles@1.0.0"},{"Name":"com.unity.modules.video","ResolvedPath":"Library/PackageCache/com.unity.modules.video@1.0.0"},{"Name":"com.unity.modules.vr","ResolvedPath":"Library/PackageCache/com.unity.modules.vr@1.0.0"},{"Name":"com.unity.modules.wind","ResolvedPath":"Library/PackageCache/com.unity.modules.wind@1.0.0"},{"Name":"com.unity.modules.xr","ResolvedPath":"Library/PackageCache/com.unity.modules.xr@1.0.0"},{"Name":"com.unity.modules.subsystems","ResolvedPath":"Library/PackageCache/com.unity.modules.subsystems@1.0.0"},{"Name":"com.unity.sysroot","ResolvedPath":"Library/PackageCache/com.unity.sysroot@2.0.7"},{"Name":"com.unity.sysroot.linux-x86_64","ResolvedPath":"Library/PackageCache/com.unity.sysroot.linux-x86_64@2.0.6"},{"Name":"com.unity.ide.visualstudio","ResolvedPath":"Library/PackageCache/com.unity.ide.visualstudio@2.0.18"},{"Name":"com.unity.ide.rider","ResolvedPath":"Library/PackageCache/com.unity.ide.rider@3.0.24"},{"Name":"com.unity.editorcoroutines","ResolvedPath":"Library/PackageCache/com.unity.editorcoroutines@1.0.0"},{"Name":"com.unity.performance.profile-analyzer","ResolvedPath":"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2"},{"Name":"com.unity.test-framework","ResolvedPath":"Library/PackageCache/com.unity.test-framework@1.3.7"},{"Name":"com.unity.testtools.codecoverage","ResolvedPath":"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4"},{"Name":"com.unity.settings-manager","ResolvedPath":"Library/PackageCache/com.unity.settings-manager@2.0.1"},{"Name":"com.unity.ext.nunit","ResolvedPath":"Library/PackageCache/com.unity.ext.nunit@2.0.3"}],"UnityVersion":"2023.1.8f1","UnityVersionNumeric":{"Release":2023,"Major":1,"Minor":8},"AdvancedLicense":true,"Batchmode":false,"EmitDataForBeeWhy":false,"NamedPipeOrUnixSocket":"/tmp/ilpp.sock-4cacd012f20104bf7c6c28f53dc1b37a"},"ScriptCompilationBuildProgram.Data.ScriptCompilationData":{"Assemblies":[{"Name":"Assembly-CSharp","SourceFiles":["Assets/AsteroidScript.cs","Assets/GameManagerScript.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_STANDARD_2_0","NET_STANDARD","NET_STANDARD_2_1","NETSTANDARD","NETSTANDARD2_1","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll"],"References":[2,3,4,5,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,27,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":false,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":0,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.CollabProxy.Editor","SourceFiles":["Packages/com.unity.collab-proxy/Editor/PlasticSCM/Toolbar/ToolbarButton.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[4,26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.collab-proxy/Editor/PlasticSCM/Toolbar/Unity.CollabProxy.Editor.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":1,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.EditorCoroutines.Editor","SourceFiles":["Packages/com.unity.editorcoroutines/Editor/EditorCoroutine.cs","Packages/com.unity.editorcoroutines/Editor/EditorCoroutineUtility.cs","Packages/com.unity.editorcoroutines/Editor/EditorWaitForSeconds.cs","Packages/com.unity.editorcoroutines/Editor/EditorWindowCoroutineExtension.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.editorcoroutines/Editor/Unity.EditorCoroutines.Editor.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":2,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.Performance.Profile-Analyzer.Editor","SourceFiles":["Packages/com.unity.performance.profile-analyzer/Editor/Analytics.cs","Packages/com.unity.performance.profile-analyzer/Editor/AssemblyInfo.cs","Packages/com.unity.performance.profile-analyzer/Editor/BoxAndWhiskerPlot.cs","Packages/com.unity.performance.profile-analyzer/Editor/Columns.cs","Packages/com.unity.performance.profile-analyzer/Editor/ComparisonTable.cs","Packages/com.unity.performance.profile-analyzer/Editor/DepthSliceDropdown.cs","Packages/com.unity.performance.profile-analyzer/Editor/DepthSliceUI.cs","Packages/com.unity.performance.profile-analyzer/Editor/Draw2D.cs","Packages/com.unity.performance.profile-analyzer/Editor/FrameSummary.cs","Packages/com.unity.performance.profile-analyzer/Editor/FrameTime.cs","Packages/com.unity.performance.profile-analyzer/Editor/FrameTimeGraph.cs","Packages/com.unity.performance.profile-analyzer/Editor/Histogram.cs","Packages/com.unity.performance.profile-analyzer/Editor/MarkerColumnFilter.cs","Packages/com.unity.performance.profile-analyzer/Editor/MarkerData.cs","Packages/com.unity.performance.profile-analyzer/Editor/MarkerPairing.cs","Packages/com.unity.performance.profile-analyzer/Editor/ProfileAnalysis.cs","Packages/com.unity.performance.profile-analyzer/Editor/ProfileAnalyzer.cs","Packages/com.unity.performance.profile-analyzer/Editor/ProfileAnalyzerExportWindow.cs","Packages/com.unity.performance.profile-analyzer/Editor/ProfileAnalyzerWindow.cs","Packages/com.unity.performance.profile-analyzer/Editor/ProfileData.cs","Packages/com.unity.performance.profile-analyzer/Editor/ProfileDataView.cs","Packages/com.unity.performance.profile-analyzer/Editor/ProfileTable.cs","Packages/com.unity.performance.profile-analyzer/Editor/ProfilerWindowInterface.cs","Packages/com.unity.performance.profile-analyzer/Editor/ProgressBarDisplay.cs","Packages/com.unity.performance.profile-analyzer/Editor/ThreadData.cs","Packages/com.unity.performance.profile-analyzer/Editor/ThreadFrameTime.cs","Packages/com.unity.performance.profile-analyzer/Editor/ThreadIdentifier.cs","Packages/com.unity.performance.profile-analyzer/Editor/ThreadSelection.cs","Packages/com.unity.performance.profile-analyzer/Editor/ThreadSelectionWindow.cs","Packages/com.unity.performance.profile-analyzer/Editor/TimingOptions.cs","Packages/com.unity.performance.profile-analyzer/Editor/TopMarkerList.cs","Packages/com.unity.performance.profile-analyzer/Editor/TopMarkers.cs","Packages/com.unity.performance.profile-analyzer/Editor/Units.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.performance.profile-analyzer/Editor/Unity.Performance.Profile-Analyzer.Editor.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":3,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.PlasticSCM.Editor","SourceFiles":["Packages/com.unity.collab-proxy/Editor/PlasticSCM/ApplicationDataPath.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssemblyInfo.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetMenu/AssetFilesFilterPatternsMenuBuilder.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetMenu/AssetMenuItems.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetMenu/AssetMenuOperations.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetMenu/AssetOperations.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetMenu/AssetsSelection.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialogOperations.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetMenu/ProjectViewAssetSelection.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetOverlays/AssetStatus.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetOverlays/Cache/AssetStatusCache.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetOverlays/Cache/BuildPathDictionary.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetOverlays/Cache/LocalStatusCache.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetOverlays/Cache/LockStatusCache.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetOverlays/Cache/RemoteStatusCache.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetOverlays/Cache/SearchLocks.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetOverlays/DrawAssetOverlay.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetsUtils/AssetsPath.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetsUtils/GetSelectedPaths.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetsUtils/LoadAsset.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetsUtils/Processor/AssetModificationProcessor.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetsUtils/Processor/AssetPostprocessor.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetsUtils/Processor/AssetsProcessor.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetsUtils/Processor/PlasticAssetsProcessor.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetsUtils/Processor/WorkspaceOperationsMonitor.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetsUtils/ProjectPath.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetsUtils/RefreshAsset.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetsUtils/RepaintInspector.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AssetsUtils/SaveAssets.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/AutoRefresh.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/CheckWorkspaceTreeNodeStatus.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/CloudProjectDownloader/CloudProjectDownloader.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/CloudProjectDownloader/CommandLineArguments.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/CloudProjectDownloader/DownloadRepositoryOperation.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/CloudProjectDownloader/ParseArguments.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/CollabMigration/MigrateCollabProject.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/CollabMigration/MigrationDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/CollabMigration/MigrationProgressRender.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/CollabPlugin.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/AutoConfig.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/ChannelCertificateUiImpl.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/AutoLogin.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/CloudEditionWelcomeWindow.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/OrganizationPanel.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/SignInPanel.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/SignInWithEmailPanel.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/WaitingSignInPanel.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/ConfigurePartialWorkspace.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/CredentialsDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/CredentialsUIImpl.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/EncryptionConfigurationDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/MissingEncryptionPasswordPromptHandler.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/SSOCredentialsDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/TeamEdition/TeamEditionConfigurationWindow.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/ToolConfig.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Configuration/WriteLogConfiguration.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Developer/CheckinProgress.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Developer/GenericProgress.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Developer/IncomingChangesNotifier.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Developer/ProgressOperationHandler.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Developer/UpdateProgress.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportLineListViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportListHeaderState.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportListView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/DrawGuiModeSwitcher.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/EnumExtensions.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/FindWorkspace.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/GetRelativePath.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Gluon/CheckinProgress.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Gluon/IncomingChangesNotifier.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Gluon/ProgressOperationHandler.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Gluon/UpdateProgress.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Gluon/UpdateReport/ErrorListViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Gluon/UpdateReport/UpdateReportDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Gluon/UpdateReport/UpdateReportListHeaderState.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Gluon/UpdateReport/UpdateReportListView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Help/BuildFormattedHelp.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Help/DrawHelpPanel.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Help/HelpData.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Help/HelpFormat.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Help/HelpLink.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Help/HelpLinkData.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Help/HelpPanel.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Help/TestingHelpData.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Inspector/DrawInspectorOperations.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Inspector/InspectorAssetSelection.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/MetaPath.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/NewIncomingChanges.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/ParentWindow.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/PlasticApp.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/PlasticConnectionMonitor.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/PlasticMenuItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/PlasticNotification.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/PlasticPlugin.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/PlasticPluginIsEnabledPreference.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/PlasticProjectSettingsProvider.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/PlasticWindow.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/ProjectWindow.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/QueryVisualElementsExtensions.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/SceneView/DrawSceneOperations.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/SetupCloudProjectId.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/SwitchModeConfirmationDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Tool/BringWindowToFront.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Tool/FindTool.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Tool/IsExeAvailable.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Tool/LaunchInstaller.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Tool/LaunchTool.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Tool/ToolConstants.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Avatar/ApplyCircleMask.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Avatar/AvatarImages.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Avatar/GetAvatar.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/BoolSetting.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/CloseWindowIfOpened.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/CooldownWindowDelayer.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/DockEditorWindow.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/DrawActionButton.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/DrawActionHelpBox.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/DrawActionToolbar.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/DrawSearchField.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/DrawSplitter.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/DrawTextBlockWithEndLink.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/DrawUserIcon.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/DropDownTextField.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/EditorDispatcher.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/EditorProgressBar.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/EditorProgressControls.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/EditorVersion.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/EditorWindowFocus.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/EnumPopupSetting.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/FindEditorWindow.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/GUIActionRunner.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/GUISpace.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/GetPlasticShortcut.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/GuiEnabled.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/HandleMenuItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Images.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/MeasureMaxWidth.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Message/DrawDialogIcon.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Message/PlasticQuestionAlert.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/OverlayRect.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/PlasticDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/PlasticSplitterGUILayout.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Progress/DrawProgressForDialogs.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Progress/DrawProgressForMigration.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Progress/DrawProgressForOperations.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Progress/DrawProgressForViews.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Progress/OperationProgressData.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Progress/ProgressControlsForDialogs.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Progress/ProgressControlsForMigration.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Progress/ProgressControlsForViews.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/ResponseType.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/RunModal.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/ScreenResolution.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/ShowWindow.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/SortOrderComparer.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/StatusBar/IncomingChangesNotification.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/StatusBar/NotificationBar.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/StatusBar/StatusBar.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/TabButton.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Tree/DrawTreeViewEmptyState.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Tree/DrawTreeViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Tree/GetChangesOverlayIcon.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Tree/ListViewItemIds.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Tree/TableViewOperations.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Tree/TreeHeaderColumns.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Tree/TreeHeaderSettings.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/Tree/TreeViewItemIds.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/UIElements/LoadingSpinner.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/UIElements/ProgressControlsForDialogs.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/UIElements/UIElementsExtensions.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/UnityConstants.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/UnityEvents.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/UnityMenuItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/UnityPlasticGuiMessage.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/UnityPlasticTimer.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/UnityStyles.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UI/UnityThreadWaiter.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/UnityConfigurationChecker.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/VCSPlugin.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/ViewSwitcher.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Branch/BranchListViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Branch/BranchesListHeaderState.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Branch/BranchesListView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Branch/BranchesSelection.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Branch/BranchesTab.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Branch/BranchesViewMenu.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Branch/CreateBranchDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Branch/Dialogs/RenameBranchDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Changesets/ChangesetListViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Changesets/ChangesetsListHeaderState.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Changesets/ChangesetsListView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Changesets/ChangesetsSelection.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Changesets/ChangesetsTab.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Changesets/ChangesetsTab_Operations.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Changesets/ChangesetsViewMenu.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Changesets/DateFilter.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Changesets/LaunchDiffOperations.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/ConfirmContinueWithPendingChangesDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/CreateWorkspace/CreateWorkspaceView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/CreateWorkspace/CreateWorkspaceViewState.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/CreateRepositoryDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoriesListHeaderState.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoriesListView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoryExplorerDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoryListViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/CreateWorkspace/DrawCreateWorkspaceView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/CreateWorkspace/ValidRepositoryName.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Diff/ChangeCategoryTreeViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Diff/ClientDiffTreeViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Diff/Dialogs/GetRestorePathDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Diff/DiffPanel.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Diff/DiffSelection.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Diff/DiffTreeView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Diff/DiffTreeViewMenu.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Diff/GetClientDiffInfos.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Diff/MergeCategoryTreeViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Diff/UnityDiffTree.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/DownloadPlasticExeWindow.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/FileSystemOperation.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/History/HistoryListHeaderState.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/History/HistoryListView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/History/HistoryListViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/History/HistoryListViewMenu.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/History/HistorySelection.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/History/HistoryTab.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/History/SaveAction.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Developer/ChangeCategoryTreeViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Developer/ChangeTreeViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Developer/DirectoryConflicts/ConflictResolutionState.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Developer/DirectoryConflicts/DrawDirectoryResolutionPanel.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesSelection.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesTab.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesTreeHeaderState.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesTreeView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesViewMenu.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Developer/IsCurrent.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Developer/IsResolved.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Developer/UnityIncomingChangesTree.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/DrawIncomingChangesOverview.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Gluon/ChangeCategoryTreeViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Gluon/ChangeTreeViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Gluon/Errors/ErrorListViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Gluon/Errors/ErrorsListHeaderState.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Gluon/Errors/ErrorsListView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesSelection.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesTab.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesTreeHeaderState.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesTreeView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesViewMenu.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/Gluon/UnityIncomingChangesTree.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/IncomingChanges/IIncomingChangesTab.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/ChangeCategoryTreeViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/ChangeTreeViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/ChangelistTreeViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/Changelists/ChangelistMenu.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/Changelists/MoveToChangelistMenuBuilder.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/Dialogs/CheckinConflictsDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/Dialogs/CreateChangelistDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/Dialogs/DependenciesDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/Dialogs/EmptyCheckinMessageDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/Dialogs/FilterRulesConfirmationDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/Dialogs/LaunchCheckinConflictsDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/Dialogs/LaunchDependenciesDialog.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/DrawCommentTextArea.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/FilesFilterPatternsMenuBuilder.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/PendingChangesMultiColumnHeader.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/PendingChangesSelection.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTab.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTab_Operations.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTreeHeaderState.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTreeView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/PendingChangesViewMenu.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/PendingChangesViewPendingChangeMenu.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/PendingMergeLinks/MergeLinkListViewItem.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/PendingMergeLinks/MergeLinksListView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/PendingChanges/UnityPendingChangesTree.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Welcome/DownloadAndInstallOperation.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Welcome/GetInstallerTmpFileName.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Welcome/MacOSConfigWorkaround.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/Views/Welcome/WelcomeView.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/VisualElementExtensions.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/WebApi/ChangesetFromCollabCommitResponse.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/WebApi/CredentialsResponse.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/WebApi/CurrentUserAdminCheckResponse.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/WebApi/IsCollabProjectMigratedResponse.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/WebApi/OrganizationCredentials.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/WebApi/TokenExchangeResponse.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/WebApi/WebRestApiClient.cs","Packages/com.unity.collab-proxy/Editor/PlasticSCM/WorkspaceWindow.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.collab-proxy/Editor/PlasticSCM/Unity.PlasticSCM.Editor.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":4,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.Rider.Editor","SourceFiles":["Packages/com.unity.ide.rider/Rider/Editor/Discovery.cs","Packages/com.unity.ide.rider/Rider/Editor/EditorPluginInterop.cs","Packages/com.unity.ide.rider/Rider/Editor/LoggingLevel.cs","Packages/com.unity.ide.rider/Rider/Editor/PluginSettings.cs","Packages/com.unity.ide.rider/Rider/Editor/PostProcessors/RiderAssetPostprocessor.cs","Packages/com.unity.ide.rider/Rider/Editor/ProjectGeneration/AssemblyNameProvider.cs","Packages/com.unity.ide.rider/Rider/Editor/ProjectGeneration/FileIOProvider.cs","Packages/com.unity.ide.rider/Rider/Editor/ProjectGeneration/GUIDProvider.cs","Packages/com.unity.ide.rider/Rider/Editor/ProjectGeneration/IAssemblyNameProvider.cs","Packages/com.unity.ide.rider/Rider/Editor/ProjectGeneration/IFileIO.cs","Packages/com.unity.ide.rider/Rider/Editor/ProjectGeneration/IGUIDGenerator.cs","Packages/com.unity.ide.rider/Rider/Editor/ProjectGeneration/IGenerator.cs","Packages/com.unity.ide.rider/Rider/Editor/ProjectGeneration/LastWriteTracker.cs","Packages/com.unity.ide.rider/Rider/Editor/ProjectGeneration/PackageManagerTracker.cs","Packages/com.unity.ide.rider/Rider/Editor/ProjectGeneration/ProjectGeneration.cs","Packages/com.unity.ide.rider/Rider/Editor/ProjectGeneration/ProjectGenerationFlag.cs","Packages/com.unity.ide.rider/Rider/Editor/ProjectGeneration/ProjectPart.cs","Packages/com.unity.ide.rider/Rider/Editor/ProjectGeneration/SolutionGuidGenerator.cs","Packages/com.unity.ide.rider/Rider/Editor/Properties/AssemblyInfo.cs","Packages/com.unity.ide.rider/Rider/Editor/RiderInitializer.cs","Packages/com.unity.ide.rider/Rider/Editor/RiderScriptEditor.cs","Packages/com.unity.ide.rider/Rider/Editor/RiderScriptEditorData.cs","Packages/com.unity.ide.rider/Rider/Editor/RiderScriptEditorDataPersisted.cs","Packages/com.unity.ide.rider/Rider/Editor/RiderStyles.cs","Packages/com.unity.ide.rider/Rider/Editor/StartUpMethodExecutor.cs","Packages/com.unity.ide.rider/Rider/Editor/UnitTesting/CallbackData.cs","Packages/com.unity.ide.rider/Rider/Editor/UnitTesting/CallbackInitializer.cs","Packages/com.unity.ide.rider/Rider/Editor/UnitTesting/RiderTestRunner.cs","Packages/com.unity.ide.rider/Rider/Editor/UnitTesting/SyncTestRunCallback.cs","Packages/com.unity.ide.rider/Rider/Editor/UnitTesting/SyncTestRunEventsHandler.cs","Packages/com.unity.ide.rider/Rider/Editor/UnitTesting/TestEvent.cs","Packages/com.unity.ide.rider/Rider/Editor/UnitTesting/TestsCallback.cs","Packages/com.unity.ide.rider/Rider/Editor/Util/CommandLineParser.cs","Packages/com.unity.ide.rider/Rider/Editor/Util/FileSystemUtil.cs","Packages/com.unity.ide.rider/Rider/Editor/Util/LibcNativeInterop.cs","Packages/com.unity.ide.rider/Rider/Editor/Util/RiderMenu.cs","Packages/com.unity.ide.rider/Rider/Editor/Util/RiderPathUtil.cs","Packages/com.unity.ide.rider/Rider/Editor/Util/SerializableVersion.cs","Packages/com.unity.ide.rider/Rider/Editor/Util/StringUtils.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","TEST_FRAMEWORK","ROSLYN_ANALYZER_FIX","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.ide.rider/Rider/Editor/com.unity.ide.rider.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":5,"SkipCodeGen":true,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.Settings.Editor","SourceFiles":["Packages/com.unity.settings-manager/Editor/Attributes.cs","Packages/com.unity.settings-manager/Editor/FileSettingsRepository.cs","Packages/com.unity.settings-manager/Editor/ISettingsRepository.cs","Packages/com.unity.settings-manager/Editor/PackageSettingsRepository.cs","Packages/com.unity.settings-manager/Editor/ProjectUserSettings.cs","Packages/com.unity.settings-manager/Editor/Settings.cs","Packages/com.unity.settings-manager/Editor/SettingsDictionary.cs","Packages/com.unity.settings-manager/Editor/SettingsGUILayout.cs","Packages/com.unity.settings-manager/Editor/UserSetting.cs","Packages/com.unity.settings-manager/Editor/UserSettings.cs","Packages/com.unity.settings-manager/Editor/UserSettingsProvider.cs","Packages/com.unity.settings-manager/Editor/UserSettingsRepository.cs","Packages/com.unity.settings-manager/Editor/ValueWrapper.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.settings-manager/Editor/Unity.Settings.Editor.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":6,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.Sysroot.Linux_x86_64","SourceFiles":["Packages/com.unity.sysroot.linux-x86_64/Editor/Unity.Sysroot.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[8,26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.sysroot.linux-x86_64/Editor/Unity.Sysroot.Linux-x86_64.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":7,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.SysrootPackage.Editor","SourceFiles":["Packages/com.unity.sysroot/Editor/AssemblyInfo.cs","Packages/com.unity.sysroot/Editor/NiceIO.cs","Packages/com.unity.sysroot/Editor/Unity.SysrootPackage.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.sysroot/Editor/Unity.SysrootPackage.Editor.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":8,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.TestTools.CodeCoverage.Editor.OpenCover.Model","SourceFiles":["Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/BranchPoint.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/Class.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/CoverageSession.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/File.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/HelperExtensions.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/IDocumentReference.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/InstrumentationPoint.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/Method.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/Module.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/SequencePoint.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/SkippedEntity.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/SkippedMethod.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/Summary.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/SummarySkippedEntity.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/TrackedMethod.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Model/Model.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":9,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection","SourceFiles":["Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Mono.Reflection/ByteBuffer.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Mono.Reflection/Disassembler.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Mono.Reflection/Instruction.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Mono.Reflection/MethodBodyReader.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/Mono.Reflection/Reflection.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":10,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.TestTools.CodeCoverage.Editor","SourceFiles":["Packages/com.unity.testtools.codecoverage/Editor/Analytics/CoverageAnalytics.cs","Packages/com.unity.testtools.codecoverage/Editor/Analytics/CoverageAnalyticsEnums.cs","Packages/com.unity.testtools.codecoverage/Editor/Analytics/CoverageAnalyticsEvent.cs","Packages/com.unity.testtools.codecoverage/Editor/AssemblyInfo.cs","Packages/com.unity.testtools.codecoverage/Editor/CodeCoverage.cs","Packages/com.unity.testtools.codecoverage/Editor/CommandLineManager.cs","Packages/com.unity.testtools.codecoverage/Editor/CommandLineParser/CommandLineOption.cs","Packages/com.unity.testtools.codecoverage/Editor/CommandLineParser/CommandLineOptionSet.cs","Packages/com.unity.testtools.codecoverage/Editor/CommandLineParser/ICommandLineOption.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/CoverageFormat.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/CyclomaticComplexity.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/OpenCoverReporter.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/OpenCoverReporterFilter.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/OpenCoverReporterStyles.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageFormats/OpenCover/OpenCoverResultWriter.cs","Packages/com.unity.testtools.codecoverage/Editor/CoveragePreferences.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageReportType.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageReporterListener.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageReporterManager.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageResultWriterBase.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageRunData.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageSettings.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageStats/CoverageStats.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageStats/ICoverageStatsProvider.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageWindow/CodeCoverageWindow.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageWindow/FolderDropDownMenu.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageWindow/FolderType.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageWindow/IncludedAssembliesPopupWindow.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageWindow/IncludedAssembliesTreeView.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageWindow/PathFilterType.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageWindow/PathToAddDropDownMenu.cs","Packages/com.unity.testtools.codecoverage/Editor/CoverageWindow/PathToAddHandler.cs","Packages/com.unity.testtools.codecoverage/Editor/Events/CoverageEventData.cs","Packages/com.unity.testtools.codecoverage/Editor/Events/Events.cs","Packages/com.unity.testtools.codecoverage/Editor/Events/SessionEventInfo.cs","Packages/com.unity.testtools.codecoverage/Editor/Events/SessionMode.cs","Packages/com.unity.testtools.codecoverage/Editor/Filtering/AssemblyFiltering.cs","Packages/com.unity.testtools.codecoverage/Editor/Filtering/JsonFileFilterSchema.cs","Packages/com.unity.testtools.codecoverage/Editor/Filtering/PathFiltering.cs","Packages/com.unity.testtools.codecoverage/Editor/ICoverageReporter.cs","Packages/com.unity.testtools.codecoverage/Editor/ICoverageReporterFilter.cs","Packages/com.unity.testtools.codecoverage/Editor/Icons/EditorIcons.cs","Packages/com.unity.testtools.codecoverage/Editor/Logging/LogVerbosityLevel.cs","Packages/com.unity.testtools.codecoverage/Editor/Logging/ResultsLogger.cs","Packages/com.unity.testtools.codecoverage/Editor/Replacing/PathReplacing.cs","Packages/com.unity.testtools.codecoverage/Editor/ReportGenerator/CoverageReportGenerator.cs","Packages/com.unity.testtools.codecoverage/Editor/ReportGenerator/ReportGeneratorStyles.cs","Packages/com.unity.testtools.codecoverage/Editor/Utils/CoverageUtils.cs","Packages/com.unity.testtools.codecoverage/Editor/Utils/JsonUtils.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CONDITIONAL_IGNORE_SUPPORTED","TEST_FRAMEWORK_1_1_18_OR_NEWER","NO_COV_EDITORPREF","TEST_FRAMEWORK_1_3_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[6,9,10,26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.testtools.codecoverage/Editor/CodeCoverage.Editor.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":11,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.TextMeshPro.Editor","SourceFiles":["Packages/com.unity.textmeshpro/Scripts/Editor/DropdownOptionListDrawer.cs","Packages/com.unity.textmeshpro/Scripts/Editor/GlyphInfoDrawer.cs","Packages/com.unity.textmeshpro/Scripts/Editor/GlyphMetricsPropertyDrawer.cs","Packages/com.unity.textmeshpro/Scripts/Editor/GlyphRectPropertyDrawer.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_BaseEditorPanel.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_BaseShaderGUI.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_BitmapShaderGUI.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_CharacterPropertyDrawer.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_ColorGradientAssetMenu.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_ColorGradientEditor.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_DropdownEditor.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_EditorCoroutine.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_EditorPanel.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_EditorPanelUI.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_EditorUtility.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_FontAssetEditor.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_FontAsset_CreationMenu.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_GlyphPairAdjustmentRecordPropertyDrawer.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_GlyphPropertyDrawer.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_InputFieldEditor.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_MeshRendererEditor.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_PackageUtilities.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_PostBuildProcessHandler.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_PreBuildProcessor.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_ProjectTextSettings.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_ResourcesLoader.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_SDFShaderGUI.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_SerializedPropertyHolder.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_SettingsEditor.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_SpriteAssetEditor.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_SpriteAssetImporter.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_SpriteAssetMenu.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_SpriteCharacterPropertyDrawer.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_SpriteGlyphPropertyDrawer.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_StyleAssetMenu.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_StyleSheetEditor.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_SubMeshUI_Editor.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_SubMesh_Editor.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_TextAlignmentDrawer.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMP_UIStyleManager.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMPro_ContextMenus.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMPro_CreateObjectMenu.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMPro_EditorShaderUtilities.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMPro_FontAssetCreatorWindow.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMPro_FontPlugin.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMPro_SortingLayerHelper.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMPro_TextContainerEditor.cs","Packages/com.unity.textmeshpro/Scripts/Editor/TMPro_TexturePostProcessor.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[13,26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.textmeshpro/Scripts/Editor/Unity.TextMeshPro.Editor.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":12,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.TextMeshPro","SourceFiles":["Packages/com.unity.textmeshpro/Scripts/Runtime/AssemblyInfo.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/FastAction.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/ITextPreProcessor.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/MaterialReferenceManager.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Asset.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Character.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_CharacterInfo.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ColorGradient.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Compatibility.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_CoroutineTween.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_DefaultControls.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Dropdown.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_EditorResourceManager.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontAsset.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontAssetCommon.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontAssetUtilities.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontFeatureTable.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_FontFeaturesCommon.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_InputField.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_InputValidator.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_LineInfo.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ListPool.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_MaterialManager.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_MeshInfo.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ObjectPool.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_PackageResourceImporter.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ResourcesManager.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_RichTextTagsCommon.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ScrollbarEventHandler.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SelectionCaret.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Settings.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_ShaderUtilities.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Sprite.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteAnimator.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteAsset.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteAssetImportFormats.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteCharacter.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SpriteGlyph.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Style.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_StyleSheet.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SubMesh.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_SubMeshUI.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_Text.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextElement.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextElement_Legacy.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextInfo.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextParsingUtilities.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextProcessingStack.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_TextUtilities.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_UpdateManager.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMP_UpdateRegistery.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_EventManager.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_ExtensionMethods.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_MeshUtilities.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_Private.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TMPro_UGUI_Private.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TextContainer.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TextMeshPro.cs","Packages/com.unity.textmeshpro/Scripts/Runtime/TextMeshProUGUI.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_STANDARD_2_0","NET_STANDARD","NET_STANDARD_2_1","NETSTANDARD","NETSTANDARD2_1","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll"],"References":[27,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.textmeshpro/Scripts/Runtime/Unity.TextMeshPro.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":13,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.Timeline.Editor","SourceFiles":["Packages/com.unity.timeline/Editor/Actions/ActionContext.cs","Packages/com.unity.timeline/Editor/Actions/ActionManager.cs","Packages/com.unity.timeline/Editor/Actions/ClipAction.cs","Packages/com.unity.timeline/Editor/Actions/ClipsActions.cs","Packages/com.unity.timeline/Editor/Actions/IAction.cs","Packages/com.unity.timeline/Editor/Actions/IMenuChecked.cs","Packages/com.unity.timeline/Editor/Actions/IMenuName.cs","Packages/com.unity.timeline/Editor/Actions/Invoker.cs","Packages/com.unity.timeline/Editor/Actions/MarkerAction.cs","Packages/com.unity.timeline/Editor/Actions/MarkerActions.cs","Packages/com.unity.timeline/Editor/Actions/Menus/MenuItemActionBase.cs","Packages/com.unity.timeline/Editor/Actions/Menus/TimelineContextMenu.cs","Packages/com.unity.timeline/Editor/Actions/TimelineAction.cs","Packages/com.unity.timeline/Editor/Actions/TimelineActions.cs","Packages/com.unity.timeline/Editor/Actions/TrackAction.cs","Packages/com.unity.timeline/Editor/Actions/TrackActions.cs","Packages/com.unity.timeline/Editor/Activation/ActivationTrackEditor.cs","Packages/com.unity.timeline/Editor/Activation/ActivationTrackInspector.cs","Packages/com.unity.timeline/Editor/Analytics/TimelineAnalytics.cs","Packages/com.unity.timeline/Editor/Animation/AnimationClipActions.cs","Packages/com.unity.timeline/Editor/Animation/AnimationClipCurveCache.cs","Packages/com.unity.timeline/Editor/Animation/AnimationClipExtensions.cs","Packages/com.unity.timeline/Editor/Animation/AnimationOffsetMenu.cs","Packages/com.unity.timeline/Editor/Animation/AnimationPlayableAssetEditor.cs","Packages/com.unity.timeline/Editor/Animation/AnimationTrackActions.cs","Packages/com.unity.timeline/Editor/Animation/BindingSelector.cs","Packages/com.unity.timeline/Editor/Animation/BindingTreeViewDataSource.cs","Packages/com.unity.timeline/Editor/Animation/BindingTreeViewDataSourceGUI.cs","Packages/com.unity.timeline/Editor/Animation/ClipCurveEditor.cs","Packages/com.unity.timeline/Editor/Animation/CurveDataSource.cs","Packages/com.unity.timeline/Editor/Animation/CurveTreeViewNode.cs","Packages/com.unity.timeline/Editor/Animation/CurvesProxy.cs","Packages/com.unity.timeline/Editor/Animation/TimelineAnimationUtilities.cs","Packages/com.unity.timeline/Editor/Attributes/ActiveInModeAttribute.cs","Packages/com.unity.timeline/Editor/Attributes/MenuEntryAttribute.cs","Packages/com.unity.timeline/Editor/Attributes/ShortcutAttribute.cs","Packages/com.unity.timeline/Editor/Attributes/TimelineShortcutAttribute.cs","Packages/com.unity.timeline/Editor/Audio/AudioClipPropertiesDrawer.cs","Packages/com.unity.timeline/Editor/Audio/AudioPlayableAssetEditor.cs","Packages/com.unity.timeline/Editor/Audio/AudioPlayableAssetInspector.cs","Packages/com.unity.timeline/Editor/Audio/AudioTrackInspector.cs","Packages/com.unity.timeline/Editor/ControlTrack/ControlPlayableAssetEditor.cs","Packages/com.unity.timeline/Editor/CurveEditUtility.cs","Packages/com.unity.timeline/Editor/CustomEditors/ClipEditor.cs","Packages/com.unity.timeline/Editor/CustomEditors/CustomTimelineEditorCache.cs","Packages/com.unity.timeline/Editor/CustomEditors/MarkerEditor.cs","Packages/com.unity.timeline/Editor/CustomEditors/MarkerTrackEditor.cs","Packages/com.unity.timeline/Editor/CustomEditors/TrackEditor.cs","Packages/com.unity.timeline/Editor/DirectorNamedColor.cs","Packages/com.unity.timeline/Editor/DirectorStyles.cs","Packages/com.unity.timeline/Editor/Extensions/AnimatedParameterExtensions.cs","Packages/com.unity.timeline/Editor/Extensions/AnimationTrackExtensions.cs","Packages/com.unity.timeline/Editor/Extensions/TrackExtensions.cs","Packages/com.unity.timeline/Editor/Items/ClipItem.cs","Packages/com.unity.timeline/Editor/Items/ITimelineItem.cs","Packages/com.unity.timeline/Editor/Items/ItemsGroup.cs","Packages/com.unity.timeline/Editor/Items/ItemsPerTrack.cs","Packages/com.unity.timeline/Editor/Items/ItemsUtils.cs","Packages/com.unity.timeline/Editor/Items/MarkerItem.cs","Packages/com.unity.timeline/Editor/Localization/Localization.cs","Packages/com.unity.timeline/Editor/Manipulators/AddDelete/AddDeleteItemModeMix.cs","Packages/com.unity.timeline/Editor/Manipulators/AddDelete/AddDeleteItemModeReplace.cs","Packages/com.unity.timeline/Editor/Manipulators/AddDelete/AddDeleteItemModeRipple.cs","Packages/com.unity.timeline/Editor/Manipulators/AddDelete/IAddDeleteItemMode.cs","Packages/com.unity.timeline/Editor/Manipulators/Cursors/TimelineCursors.cs","Packages/com.unity.timeline/Editor/Manipulators/EditMode.cs","Packages/com.unity.timeline/Editor/Manipulators/EditModeInputHandler.cs","Packages/com.unity.timeline/Editor/Manipulators/HeaderSplitterManipulator.cs","Packages/com.unity.timeline/Editor/Manipulators/Move/IMoveItemMode.cs","Packages/com.unity.timeline/Editor/Manipulators/Move/MoveItemHandler.cs","Packages/com.unity.timeline/Editor/Manipulators/Move/MoveItemModeMix.cs","Packages/com.unity.timeline/Editor/Manipulators/Move/MoveItemModeReplace.cs","Packages/com.unity.timeline/Editor/Manipulators/Move/MoveItemModeRipple.cs","Packages/com.unity.timeline/Editor/Manipulators/Move/MovingItems.cs","Packages/com.unity.timeline/Editor/Manipulators/Sequence/EaseClip.cs","Packages/com.unity.timeline/Editor/Manipulators/Sequence/Jog.cs","Packages/com.unity.timeline/Editor/Manipulators/Sequence/MarkerHeaderTrackManipulator.cs","Packages/com.unity.timeline/Editor/Manipulators/Sequence/RectangleSelect.cs","Packages/com.unity.timeline/Editor/Manipulators/Sequence/RectangleTool.cs","Packages/com.unity.timeline/Editor/Manipulators/Sequence/RectangleZoom.cs","Packages/com.unity.timeline/Editor/Manipulators/Sequence/SelectAndMoveItem.cs","Packages/com.unity.timeline/Editor/Manipulators/Sequence/TrackZoom.cs","Packages/com.unity.timeline/Editor/Manipulators/Sequence/TrimClip.cs","Packages/com.unity.timeline/Editor/Manipulators/TimeAreaAutoPanner.cs","Packages/com.unity.timeline/Editor/Manipulators/TimeIndicator.cs","Packages/com.unity.timeline/Editor/Manipulators/TimelineClipGroup.cs","Packages/com.unity.timeline/Editor/Manipulators/Trim/ITrimItemMode.cs","Packages/com.unity.timeline/Editor/Manipulators/Trim/TrimItemModeMix.cs","Packages/com.unity.timeline/Editor/Manipulators/Trim/TrimItemModeReplace.cs","Packages/com.unity.timeline/Editor/Manipulators/Trim/TrimItemModeRipple.cs","Packages/com.unity.timeline/Editor/Manipulators/Utils/EditModeGUIUtils.cs","Packages/com.unity.timeline/Editor/Manipulators/Utils/EditModeMixUtils.cs","Packages/com.unity.timeline/Editor/Manipulators/Utils/EditModeReplaceUtils.cs","Packages/com.unity.timeline/Editor/Manipulators/Utils/EditModeRippleUtils.cs","Packages/com.unity.timeline/Editor/Manipulators/Utils/EditModeUtils.cs","Packages/com.unity.timeline/Editor/Manipulators/Utils/ManipulatorsUtils.cs","Packages/com.unity.timeline/Editor/Manipulators/Utils/PlacementValidity.cs","Packages/com.unity.timeline/Editor/MenuPriority.cs","Packages/com.unity.timeline/Editor/Playables/ControlPlayableInspector.cs","Packages/com.unity.timeline/Editor/Properties/AssemblyInfo.cs","Packages/com.unity.timeline/Editor/Recording/AnimationTrackRecorder.cs","Packages/com.unity.timeline/Editor/Recording/TimelineRecording.cs","Packages/com.unity.timeline/Editor/Recording/TimelineRecordingContextualResponder.cs","Packages/com.unity.timeline/Editor/Recording/TimelineRecording_Monobehaviour.cs","Packages/com.unity.timeline/Editor/Recording/TimelineRecording_PlayableAsset.cs","Packages/com.unity.timeline/Editor/Recording/TrackAssetRecordingExtensions.cs","Packages/com.unity.timeline/Editor/Shortcuts.cs","Packages/com.unity.timeline/Editor/Signals/SignalAssetInspector.cs","Packages/com.unity.timeline/Editor/Signals/SignalEmitterEditor.cs","Packages/com.unity.timeline/Editor/Signals/SignalEmitterInspector.cs","Packages/com.unity.timeline/Editor/Signals/SignalEventDrawer.cs","Packages/com.unity.timeline/Editor/Signals/SignalManager.cs","Packages/com.unity.timeline/Editor/Signals/SignalReceiverHeader.cs","Packages/com.unity.timeline/Editor/Signals/SignalReceiverInspector.cs","Packages/com.unity.timeline/Editor/Signals/SignalUtility.cs","Packages/com.unity.timeline/Editor/Signals/Styles.cs","Packages/com.unity.timeline/Editor/Signals/TreeView/SignalListFactory.cs","Packages/com.unity.timeline/Editor/Signals/TreeView/SignalReceiverItem.cs","Packages/com.unity.timeline/Editor/Signals/TreeView/SignalReceiverTreeView.cs","Packages/com.unity.timeline/Editor/State/ISequenceState.cs","Packages/com.unity.timeline/Editor/State/PlayRange.cs","Packages/com.unity.timeline/Editor/State/SequenceHierarchy.cs","Packages/com.unity.timeline/Editor/State/SequencePath.cs","Packages/com.unity.timeline/Editor/State/SequenceState.cs","Packages/com.unity.timeline/Editor/State/WindowState.cs","Packages/com.unity.timeline/Editor/TimelineEditor.cs","Packages/com.unity.timeline/Editor/TimelineHelpers.cs","Packages/com.unity.timeline/Editor/TimelineSelection.cs","Packages/com.unity.timeline/Editor/TimelineUtility.cs","Packages/com.unity.timeline/Editor/Tooltip.cs","Packages/com.unity.timeline/Editor/Trackhead.cs","Packages/com.unity.timeline/Editor/Undo/ApplyDefaultUndoAttribute.cs","Packages/com.unity.timeline/Editor/Undo/UndoExtensions.cs","Packages/com.unity.timeline/Editor/Undo/UndoScope.cs","Packages/com.unity.timeline/Editor/UnityEditorInternals.cs","Packages/com.unity.timeline/Editor/Utilities/AnimatedParameterCache.cs","Packages/com.unity.timeline/Editor/Utilities/AnimatedParameterUtility.cs","Packages/com.unity.timeline/Editor/Utilities/AnimatedPropertyUtility.cs","Packages/com.unity.timeline/Editor/Utilities/BindingUtility.cs","Packages/com.unity.timeline/Editor/Utilities/BreadcrumbDrawer.cs","Packages/com.unity.timeline/Editor/Utilities/ClipModifier.cs","Packages/com.unity.timeline/Editor/Utilities/Clipboard.cs","Packages/com.unity.timeline/Editor/Utilities/ControlPlayableUtility.cs","Packages/com.unity.timeline/Editor/Utilities/CustomTrackDrawerAttribute.cs","Packages/com.unity.timeline/Editor/Utilities/DisplayNameHelper.cs","Packages/com.unity.timeline/Editor/Utilities/FileUtility.cs","Packages/com.unity.timeline/Editor/Utilities/FrameRateDisplayUtility.cs","Packages/com.unity.timeline/Editor/Utilities/Graphics.cs","Packages/com.unity.timeline/Editor/Utilities/KeyTraverser.cs","Packages/com.unity.timeline/Editor/Utilities/MarkerModifier.cs","Packages/com.unity.timeline/Editor/Utilities/ObjectExtension.cs","Packages/com.unity.timeline/Editor/Utilities/ObjectReferenceField.cs","Packages/com.unity.timeline/Editor/Utilities/PropertyCollector.cs","Packages/com.unity.timeline/Editor/Utilities/Range.cs","Packages/com.unity.timeline/Editor/Utilities/Scopes/GUIColorOverride.cs","Packages/com.unity.timeline/Editor/Utilities/Scopes/GUIGroupScope.cs","Packages/com.unity.timeline/Editor/Utilities/Scopes/GUIMixedValueScope.cs","Packages/com.unity.timeline/Editor/Utilities/Scopes/GUIViewportScope.cs","Packages/com.unity.timeline/Editor/Utilities/Scopes/HorizontalScope.cs","Packages/com.unity.timeline/Editor/Utilities/Scopes/IndentLevelScope.cs","Packages/com.unity.timeline/Editor/Utilities/Scopes/LabelWidthScope.cs","Packages/com.unity.timeline/Editor/Utilities/Scopes/PropertyScope.cs","Packages/com.unity.timeline/Editor/Utilities/SequenceSelectorNameFormater.cs","Packages/com.unity.timeline/Editor/Utilities/SpacePartitioner.cs","Packages/com.unity.timeline/Editor/Utilities/StyleManager.cs","Packages/com.unity.timeline/Editor/Utilities/StyleNormalColorOverride.cs","Packages/com.unity.timeline/Editor/Utilities/TimeFormat.cs","Packages/com.unity.timeline/Editor/Utilities/TimeReferenceUtility.cs","Packages/com.unity.timeline/Editor/Utilities/TimelineKeyboardNavigation.cs","Packages/com.unity.timeline/Editor/Utilities/TrackModifier.cs","Packages/com.unity.timeline/Editor/Utilities/TrackResourceCache.cs","Packages/com.unity.timeline/Editor/Utilities/TypeUtility.cs","Packages/com.unity.timeline/Editor/Window/Modes/TimeReferenceMode.cs","Packages/com.unity.timeline/Editor/Window/Modes/TimelineActiveMode.cs","Packages/com.unity.timeline/Editor/Window/Modes/TimelineAssetEditionMode.cs","Packages/com.unity.timeline/Editor/Window/Modes/TimelineDisabledMode.cs","Packages/com.unity.timeline/Editor/Window/Modes/TimelineInactiveMode.cs","Packages/com.unity.timeline/Editor/Window/Modes/TimelineMode.cs","Packages/com.unity.timeline/Editor/Window/Modes/TimelineReadOnlyMode.cs","Packages/com.unity.timeline/Editor/Window/OverlayDrawer.cs","Packages/com.unity.timeline/Editor/Window/PlaybackScroller.cs","Packages/com.unity.timeline/Editor/Window/SequenceContext.cs","Packages/com.unity.timeline/Editor/Window/TimelineEditorWindow.cs","Packages/com.unity.timeline/Editor/Window/TimelineMarkerHeaderGUI.cs","Packages/com.unity.timeline/Editor/Window/TimelineNavigator.cs","Packages/com.unity.timeline/Editor/Window/TimelinePlaybackControls.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindowAnalytics.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindowTimeControl.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_ActiveTimeline.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_Breadcrumbs.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_Duration.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_EditorCallbacks.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_Gui.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_HeaderGui.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_Manipulators.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_Navigator.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_PlayRange.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_PlayableLookup.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_PlaybackControls.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_PreviewPlayMode.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_Selection.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_StateChange.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_TimeArea.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_TimeCursor.cs","Packages/com.unity.timeline/Editor/Window/TimelineWindow_TrackGui.cs","Packages/com.unity.timeline/Editor/Window/ViewModel/ScriptableObjectViewPrefs.cs","Packages/com.unity.timeline/Editor/Window/ViewModel/TimelineAssetViewModel.cs","Packages/com.unity.timeline/Editor/Window/ViewModel/TimelineAssetViewModel_versions.cs","Packages/com.unity.timeline/Editor/Window/ViewModel/TimelineWindowViewPrefs.cs","Packages/com.unity.timeline/Editor/Window/WindowConstants.cs","Packages/com.unity.timeline/Editor/inspectors/AnimationPlayableAssetInspector.cs","Packages/com.unity.timeline/Editor/inspectors/AnimationTrackInspector.cs","Packages/com.unity.timeline/Editor/inspectors/BasicAssetInspector.cs","Packages/com.unity.timeline/Editor/inspectors/BuiltInCurvePresets.cs","Packages/com.unity.timeline/Editor/inspectors/ClipInspector/ClipInspector.cs","Packages/com.unity.timeline/Editor/inspectors/ClipInspector/ClipInspectorCurveEditor.cs","Packages/com.unity.timeline/Editor/inspectors/ClipInspector/ClipInspectorSelectionInfo.cs","Packages/com.unity.timeline/Editor/inspectors/CurvesOwner/CurvesOwnerInspectorHelper.cs","Packages/com.unity.timeline/Editor/inspectors/CurvesOwner/ICurvesOwnerInspectorWrapper.cs","Packages/com.unity.timeline/Editor/inspectors/DirectorNamedColorInspector.cs","Packages/com.unity.timeline/Editor/inspectors/EditorClip.cs","Packages/com.unity.timeline/Editor/inspectors/EditorClipFactory.cs","Packages/com.unity.timeline/Editor/inspectors/FrameRateDrawer.cs","Packages/com.unity.timeline/Editor/inspectors/GroupTrackInspector.cs","Packages/com.unity.timeline/Editor/inspectors/IInspectorChangeHandler.cs","Packages/com.unity.timeline/Editor/inspectors/MarkerInspector.cs","Packages/com.unity.timeline/Editor/inspectors/TimeFieldDrawer.cs","Packages/com.unity.timeline/Editor/inspectors/TimelineAssetInspector.cs","Packages/com.unity.timeline/Editor/inspectors/TimelineInspectorUtility.cs","Packages/com.unity.timeline/Editor/inspectors/TimelinePreferences.cs","Packages/com.unity.timeline/Editor/inspectors/TimelineProjectSettings.cs","Packages/com.unity.timeline/Editor/inspectors/TrackAssetInspector.cs","Packages/com.unity.timeline/Editor/treeview/AnimationTrackKeyDataSource.cs","Packages/com.unity.timeline/Editor/treeview/Control.cs","Packages/com.unity.timeline/Editor/treeview/Drawers/AnimationTrackDrawer.cs","Packages/com.unity.timeline/Editor/treeview/Drawers/ClipDrawer.cs","Packages/com.unity.timeline/Editor/treeview/Drawers/InfiniteTrackDrawer.cs","Packages/com.unity.timeline/Editor/treeview/Drawers/Layers/ClipsLayer.cs","Packages/com.unity.timeline/Editor/treeview/Drawers/Layers/ItemsLayer.cs","Packages/com.unity.timeline/Editor/treeview/Drawers/Layers/MarkersLayer.cs","Packages/com.unity.timeline/Editor/treeview/Drawers/TrackDrawer.cs","Packages/com.unity.timeline/Editor/treeview/Drawers/TrackItemsDrawer.cs","Packages/com.unity.timeline/Editor/treeview/IPropertyKeyDataSource.cs","Packages/com.unity.timeline/Editor/treeview/IRowGUI.cs","Packages/com.unity.timeline/Editor/treeview/ItemGui/ISelectable.cs","Packages/com.unity.timeline/Editor/treeview/ItemGui/TimelineClipGUI.cs","Packages/com.unity.timeline/Editor/treeview/ItemGui/TimelineItemGUI.cs","Packages/com.unity.timeline/Editor/treeview/ItemGui/TimelineMarkerClusterGUI.cs","Packages/com.unity.timeline/Editor/treeview/ItemGui/TimelineMarkerGUI.cs","Packages/com.unity.timeline/Editor/treeview/ManipulationsClips.cs","Packages/com.unity.timeline/Editor/treeview/ManipulationsTimeline.cs","Packages/com.unity.timeline/Editor/treeview/ManipulationsTracks.cs","Packages/com.unity.timeline/Editor/treeview/Manipulator.cs","Packages/com.unity.timeline/Editor/treeview/PickerUtils.cs","Packages/com.unity.timeline/Editor/treeview/Snapping/IAttractable.cs","Packages/com.unity.timeline/Editor/treeview/Snapping/ISnappable.cs","Packages/com.unity.timeline/Editor/treeview/Snapping/SnapEngine.cs","Packages/com.unity.timeline/Editor/treeview/TimelineClipHandle.cs","Packages/com.unity.timeline/Editor/treeview/TimelineClipUnion.cs","Packages/com.unity.timeline/Editor/treeview/TimelineDataSource.cs","Packages/com.unity.timeline/Editor/treeview/TimelineDragging.cs","Packages/com.unity.timeline/Editor/treeview/TimelineTreeView.cs","Packages/com.unity.timeline/Editor/treeview/TimelineTreeViewGUI.cs","Packages/com.unity.timeline/Editor/treeview/TrackGui/InlineCurveEditor.cs","Packages/com.unity.timeline/Editor/treeview/TrackGui/TimelineGroupGUI.cs","Packages/com.unity.timeline/Editor/treeview/TrackGui/TimelineTrackBaseGUI.cs","Packages/com.unity.timeline/Editor/treeview/TrackGui/TimelineTrackErrorGUI.cs","Packages/com.unity.timeline/Editor/treeview/TrackGui/TimelineTrackGUI.cs","Packages/com.unity.timeline/Editor/treeview/TrackGui/TrackResizeHandle.cs","Packages/com.unity.timeline/Editor/treeview/TrackPropertyCurvesDataSource.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","TIMELINE_FRAMEACCURATE","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[15,26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.timeline/Editor/Unity.Timeline.Editor.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":14,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.Timeline","SourceFiles":["Packages/com.unity.timeline/Runtime/Activation/ActivationMixerPlayable.cs","Packages/com.unity.timeline/Runtime/Activation/ActivationPlayableAsset.cs","Packages/com.unity.timeline/Runtime/Activation/ActivationTrack.cs","Packages/com.unity.timeline/Runtime/Animation/AnimationOutputWeightProcessor.cs","Packages/com.unity.timeline/Runtime/Animation/AnimationPlayableAsset.cs","Packages/com.unity.timeline/Runtime/Animation/AnimationPreviewUpdateCallback.cs","Packages/com.unity.timeline/Runtime/Animation/AnimationTrack.cs","Packages/com.unity.timeline/Runtime/Animation/ICurvesOwner.cs","Packages/com.unity.timeline/Runtime/AssetUpgrade/AnimationPlayableAssetUpgrade.cs","Packages/com.unity.timeline/Runtime/AssetUpgrade/AnimationTrackUpgrade.cs","Packages/com.unity.timeline/Runtime/AssetUpgrade/ClipUpgrade.cs","Packages/com.unity.timeline/Runtime/AssetUpgrade/TimelineUpgrade.cs","Packages/com.unity.timeline/Runtime/AssetUpgrade/TrackUpgrade.cs","Packages/com.unity.timeline/Runtime/Attributes/TimelineHelpURLAttribute.cs","Packages/com.unity.timeline/Runtime/Attributes/TrackColorAttribute.cs","Packages/com.unity.timeline/Runtime/Audio/AudioClipProperties.cs","Packages/com.unity.timeline/Runtime/Audio/AudioMixerProperties.cs","Packages/com.unity.timeline/Runtime/Audio/AudioPlayableAsset.cs","Packages/com.unity.timeline/Runtime/Audio/AudioTrack.cs","Packages/com.unity.timeline/Runtime/ClipCaps.cs","Packages/com.unity.timeline/Runtime/Control/ControlPlayableAsset.cs","Packages/com.unity.timeline/Runtime/Control/ControlTrack.cs","Packages/com.unity.timeline/Runtime/DiscreteTime.cs","Packages/com.unity.timeline/Runtime/Evaluation/InfiniteRuntimeClip.cs","Packages/com.unity.timeline/Runtime/Evaluation/IntervalTree.cs","Packages/com.unity.timeline/Runtime/Evaluation/RuntimeClip.cs","Packages/com.unity.timeline/Runtime/Evaluation/RuntimeClipBase.cs","Packages/com.unity.timeline/Runtime/Evaluation/RuntimeElement.cs","Packages/com.unity.timeline/Runtime/Evaluation/ScheduleRuntimeClip.cs","Packages/com.unity.timeline/Runtime/Events/IMarker.cs","Packages/com.unity.timeline/Runtime/Events/INotificationOptionProvider.cs","Packages/com.unity.timeline/Runtime/Events/Marker.cs","Packages/com.unity.timeline/Runtime/Events/MarkerList.cs","Packages/com.unity.timeline/Runtime/Events/MarkerTrack.cs","Packages/com.unity.timeline/Runtime/Events/SignalTrack.cs","Packages/com.unity.timeline/Runtime/Events/Signals/CustomSignalEventDrawer.cs","Packages/com.unity.timeline/Runtime/Events/Signals/SignalAsset.cs","Packages/com.unity.timeline/Runtime/Events/Signals/SignalEmitter.cs","Packages/com.unity.timeline/Runtime/Events/Signals/SignalReceiver.cs","Packages/com.unity.timeline/Runtime/Extensions/TrackExtensions.cs","Packages/com.unity.timeline/Runtime/GroupTrack.cs","Packages/com.unity.timeline/Runtime/ILayerable.cs","Packages/com.unity.timeline/Runtime/Playables/ActivationControlPlayable.cs","Packages/com.unity.timeline/Runtime/Playables/BasicScriptPlayable.cs","Packages/com.unity.timeline/Runtime/Playables/DirectorControlPlayable.cs","Packages/com.unity.timeline/Runtime/Playables/ITimeControl.cs","Packages/com.unity.timeline/Runtime/Playables/NotificationFlags.cs","Packages/com.unity.timeline/Runtime/Playables/ParticleControlPlayable.cs","Packages/com.unity.timeline/Runtime/Playables/PrefabControlPlayable.cs","Packages/com.unity.timeline/Runtime/Playables/TimeControlPlayable.cs","Packages/com.unity.timeline/Runtime/Playables/TimeNotificationBehaviour.cs","Packages/com.unity.timeline/Runtime/Properties/AssemblyInfo.cs","Packages/com.unity.timeline/Runtime/Scripting/PlayableTrack.cs","Packages/com.unity.timeline/Runtime/Timeline.deprecated.cs","Packages/com.unity.timeline/Runtime/TimelineAsset.cs","Packages/com.unity.timeline/Runtime/TimelineAsset_CreateRemove.cs","Packages/com.unity.timeline/Runtime/TimelineAttributes.cs","Packages/com.unity.timeline/Runtime/TimelineClip.cs","Packages/com.unity.timeline/Runtime/TimelinePlayable.cs","Packages/com.unity.timeline/Runtime/TrackAsset.cs","Packages/com.unity.timeline/Runtime/Utilities/AnimationPreviewUtilities.cs","Packages/com.unity.timeline/Runtime/Utilities/AnimatorBindingCache.cs","Packages/com.unity.timeline/Runtime/Utilities/Extrapolation.cs","Packages/com.unity.timeline/Runtime/Utilities/FrameRate.cs","Packages/com.unity.timeline/Runtime/Utilities/HashUtility.cs","Packages/com.unity.timeline/Runtime/Utilities/IPropertyCollector.cs","Packages/com.unity.timeline/Runtime/Utilities/IPropertyPreview.cs","Packages/com.unity.timeline/Runtime/Utilities/NotificationUtilities.cs","Packages/com.unity.timeline/Runtime/Utilities/TimeUtility.cs","Packages/com.unity.timeline/Runtime/Utilities/TimelineClipExtensions.cs","Packages/com.unity.timeline/Runtime/Utilities/TimelineCreateUtilities.cs","Packages/com.unity.timeline/Runtime/Utilities/TimelineUndo.cs","Packages/com.unity.timeline/Runtime/Utilities/WeightUtility.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_STANDARD_2_0","NET_STANDARD","NET_STANDARD_2_1","NETSTANDARD","NETSTANDARD2_1","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","TIMELINE_FRAMEACCURATE","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll"],"References":[27,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.timeline/Runtime/Unity.Timeline.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":15,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.Toolchain.Linux-x86_64","SourceFiles":["Packages/com.unity.toolchain.linux-x86_64/Editor/Unity.Toolchain.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[7,8,26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.toolchain.linux-x86_64/Editor/Unity.Toolchain.Linux-x86_64.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":16,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.VisualScripting.Core.Editor","SourceFiles":["Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analysis/Analyser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analysis/AnalyserAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analysis/AnalyserProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analysis/Analysis.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analysis/GraphElementAnalysis.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analysis/IAnalyser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analysis/IAnalysis.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analysis/IGraphElementAnalysis.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analytics/Analytics.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analytics/AnalyticsUtilities.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analytics/HotkeyUsageAnalytics.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analytics/MigrationAnalytics.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analytics/NodeUsageAnalytics.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analytics/OnPreprocessBuildAnalytics.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Analytics/OnPreprocessBuildAnalyticsEventHandler.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/AssetBundleCreator.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Assignment/Assigner.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Assignment/Assignment.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Assignment/AssignsAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Assignment/IAssigner.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/BoltGUI.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/BoltProduct.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/BoltStyles.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Canvases/AlignOperation.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Canvases/CanvasAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Canvases/CanvasControlScheme.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Canvases/CanvasProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Canvases/DistributeOperation.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Canvases/ICanvas.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Canvases/IGraphContextExtension.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Canvases/VisualScriptingCanvas.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Canvases/WidgetList.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Context/GraphClipboard.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Context/GraphContext.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Context/GraphContextAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Context/GraphContextExtension.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Context/GraphContextExtensionAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Context/GraphContextExtensionProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Context/GraphContextMenuItem.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Context/GraphContextProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Context/GraphSelection.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Context/IGraphContext.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Debugging/GraphDebugDataProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Decorators/MultiDecoratorProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Decorators/SingleDecoratorProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/ElementAdderMenuBuilder.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/ElementAdderMenuCommandAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/ElementAdderMeta.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/GenericElementAdderMenu.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/GenericElementAdderMenuBuilder.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/IElementAdder.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/IElementAdderMenu.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/IElementAdderMenuBuilder.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/IElementAdderMenuCommand.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/GenericListAdaptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/IReorderableListAdaptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/IReorderableListDropTarget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/Internal/GUIHelper.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/Internal/ReorderableListResources.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/Internal/SerializedPropertyUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListControl.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListEvents.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListFlags.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListGUI.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListStyles.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/ReorderableList/SerializedPropertyAdaptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/SQLite/SQLite.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Description/GraphDescription.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Description/GraphDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Description/GraphElementDescription.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Description/GraphItemDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Description/GraphNesterDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Description/IGraphDescription.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Description/IGraphElementDescription.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Description/IMachineDescription.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Description/IMacroDescription.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Description/MachineDescription.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Description/MachineDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Description/MacroDescription.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Description/MacroDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Descriptors/Description.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Descriptors/Descriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Descriptors/DescriptorAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Descriptors/DescriptorProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Descriptors/IDescription.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Descriptors/IDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Documentation/DocumentationGenerator.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Documentation/XmlDocumentation.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Documentation/XmlDocumentationTags.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Exceptions/EditorDebugUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Exceptions/UnityEditorInternalException.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Graph/GraphGUI.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Graph/GraphPointerData.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Graph/LudiqGraphsEditorUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/DraggedListItem.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/EditorAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/EditorProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/EventMachineEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/GraphEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/GraphElementEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/GraphInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/GraphNestEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/ImplementationInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/IndividualEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/IndividualPropertyDrawer.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Inspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/InspectorAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/InspectorBlock.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/InspectorImplementationOrderAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/InspectorProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/InspectorUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/MachineEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/MacroEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/MetadataCollectionAdaptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/MetadataDictionaryAdaptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/MetadataListAdaptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/OptimizedEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/OptimizedPropertyDrawer.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Other/DictionaryAssetEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Other/SemanticVersionInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/BoolInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/ByteInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/CharInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/ContinuousNumberDrawer.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/DecimalInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/DiscreteNumberInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/DoubleInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/FloatInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/GuidInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/IntInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/LongInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/SbyteInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/ShortInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/StringInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/UintInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/UlongInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Primitives/UshortInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Reflection/LooseAssemblyNameInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Reflection/MemberInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Reflection/NamespaceInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Reflection/TypeInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Root/LudiqBehaviourEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Root/LudiqRootObjectEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Root/LudiqScriptableObjectEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Special/AutomaticReflectedInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Special/CustomPropertyDrawerInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Special/DictionaryInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Special/EnumInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Special/KeyValuePairInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Special/ListInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Special/NullableInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Special/ReflectedInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Special/SystemObjectInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Special/TypeHandleInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Special/UnknownEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Special/UnknownInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Unity/AnimationCurveInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Unity/BoundsInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Unity/ColorInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Unity/LayerMaskInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Unity/QuaternionInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Unity/Ray2DInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Unity/RayInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Unity/RectInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Unity/UnityObjectInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Unity/Vector2Inspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Unity/Vector3Inspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Unity/Vector4Inspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Inspection/Unity/VectorInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Annotations/AnnotationDisabler.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Colors/ColorPalette.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Colors/ColorUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Colors/SkinnedColor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/DragAndDrop/DragAndDropUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/DragAndDrop/IDragAndDropHandler.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Dropdowns/DropdownOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Dropdowns/DropdownSeparator.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Dropdowns/IDropdownOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Edge.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/EditorTexture.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/EventWrapper.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fonts/FontCollection.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fonts/FontVariant.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fonts/FontWeight.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fuzzy/ExtensibleFuzzyOptionTree.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyGroup.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyGroupOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionNode.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionTree.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionTreeExtensionAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionTreeExtensionProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyWindow.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fuzzy/IFuzzyOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fuzzy/IFuzzyOptionTree.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Fuzzy/NullOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Icons/IconSize.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Icons/Icons.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Icons/LanguageIconSet.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Licenses/License.CCA3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Licenses/License.Iconmonstr.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Licenses/License.MIT.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/Licenses/License.MSPL.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/ListOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/LudiqGUI.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/LudiqGUIUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/LudiqStyles.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/SharedEditorTextureDictionary.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Interface/TextureResolution.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Meta/CastMetadata.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Meta/DictionaryIndexMetadata.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Meta/DictionaryKeyAtIndexMetadata.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Meta/DictionaryValueAtIndexMetadata.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Meta/EditorPrefMetadata.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Meta/IndexMetadata.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Meta/IndexerMetadata.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Meta/MemberMetadata.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Meta/Metadata.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Meta/ObjectMetadata.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Meta/PluginConfigurationItemMetadata.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Meta/ProjectSettingMetadata.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Meta/ProxyMetadata.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Meta/RootMetadata.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/PackageEventListener.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Platforms/AccessorInfoStubWriter.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Platforms/AotPreBuilder.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Platforms/AotStubWriter.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Platforms/AotStubWriterAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Platforms/AotStubWriterProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Platforms/ConstructorInfoStubWriter.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Platforms/EditorPlatformUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Platforms/FieldInfoStubWriter.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Platforms/MemberInfoStubWriter.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Platforms/MethodBaseStubWriter.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Platforms/MethodInfoStubWriter.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Platforms/PropertyInfoStubWriter.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_AqnParser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_DeepCopy.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_DotNetZip.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_FatcowIcons.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_FullSerializer.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_Iconmonstr.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_MD4.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_ReorderableList.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_SQLite.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_YamlDotNet.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/BoltCore.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/BoltCoreConfiguration.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/BoltCoreManifest.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/BoltCoreMigration.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/BoltCorePaths.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/BoltCoreResources.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_0_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_3_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_1.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_13.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_5.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_1.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_4.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_5.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_6.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_1.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_4.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_3_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_3_1.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_1.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_11.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_12.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_13.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_4.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_5.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_6.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_7.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_8.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_9.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_0_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_0_1.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_0_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_0_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_1_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_1_1.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_1_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_1_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_2_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_2_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_2_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_2_4.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_3_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_1.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_4.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_5.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_6.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_7.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_0_5_to_1_0_6.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_2_2_to_1_2_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_2_4_to_1_3_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_4_0_f5_to_1_4_0_f6.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_4_5_to_1_4_6.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_5_1_to_1_5_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_6_to_1_7.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/Migrations/Migration_Asset_to_Package.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugin/NamingSchemePage.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/EditorPrefAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/IPluginLinked.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/IPluginModule.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/InitializeAfterPluginsAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/Plugin.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginAcknowledgement.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginChangelog.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginConfiguration.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginConfigurationItemAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginContainer.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginDependencyAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginManifest.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginMigration.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginModuleAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginModuleDependencyAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginResources.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginRuntimeAssemblyAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginSavedVersionMigration.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/PluginUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Plugins/ProjectSettingAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Product/LudiqProduct.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Products/Product.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Products/ProductAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Products/ProductContainer.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Properties/AssemblyInfo.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Reflection/Codebase.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Reflection/CodebaseSubset.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Reflection/DocumentedOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Reflection/EnumOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Reflection/EnumOptionTree.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Reflection/LooseAssemblyNameOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Reflection/LooseAssemblyNameOptionTree.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Reflection/MemberOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Reflection/MemberOptionTree.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Reflection/NamespaceOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Reflection/ParameterStringMode.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Reflection/TypeOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Reflection/TypeOptionTree.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/ResourceProviders/AssemblyResourceProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/ResourceProviders/AssetBundleResourceProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/ResourceProviders/CreateTextureOptions.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/ResourceProviders/EditorAssetResourceProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/ResourceProviders/EmbeddedResourceProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/ResourceProviders/IResourceProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/SemanticLabel.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/SemanticVersion.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Serialization/MovedFromAttributeExtensions.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Serialization/SerializableTypeExtensions.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Serialization/TypeExtensions.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Serialization/TypeSerializer.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/SerializedProperties/SerializedPropertyProviderProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/SerializedProperties/SerializedPropertyUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Threading/BackgroundWorker.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Threading/BackgroundWorkerAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Threading/ThreadableAssetWrapper.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/AnnotationUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/AssetBundleUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/AssetUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/BackupUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/Clipboard.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/ConsoleProfiler.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/DefineUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/EditorApplicationUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/EditorFilteringUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/EditorLinqUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/EditorSerializationUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/EditorTimeUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/EditorTypeUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/EditorUnityObjectUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/FrameLimiterUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/IconExportUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/LudiqEditorUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/MD4.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/MathfEx.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/NameUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/NativeUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/PackageVersionUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/PathUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/Paths.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/PluginPaths.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/ProgressUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/ReloadAssets.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/ScriptReference.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/ScriptReferenceReplacement.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/ScriptReferenceResolver.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/ScriptUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/SearchResult.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/SearchUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/UndoUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/UnityAPI.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/VSBackupUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/VSMigrationUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/VSUsageUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/VersionControlUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/Warning.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Utilities/WarningLevel.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Variables/EditorVariablesUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Variables/InspectorVariableFieldAttributeInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Variables/VariableDeclarationInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Variables/VariableDeclarationsInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Variables/VariableNameInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Variables/VariablesAssetEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Variables/VariablesEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Variables/VariablesPanel.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/GraphElementWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/Groups/GraphGroupEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/Groups/GraphGroupInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/Groups/GraphGroupWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/IGraphElementWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/IWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/Nodes/INodeWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/Nodes/NodeColor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/Nodes/NodeColorMix.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/Nodes/NodeShape.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/Nodes/NodeWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/StickyNote/StickyNoteEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/StickyNote/StickyNoteInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/StickyNote/StickyNoteOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/StickyNote/StickyNoteWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/Widget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/WidgetAttribute.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Widgets/WidgetProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/AboutWindow/AboutPluginsPage.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/AboutWindow/AboutablePage.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/AboutWindow/AcknowledgementPage.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/AboutWindow/ChangelogPage.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/AboutWindow/IAboutable.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/BackupWindow/BackupPage.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/ConfigurationPanel/ConfigurationPanel.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/EditorWindowWrapper.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/GenerateDocumentationWindow/GenerateDocumentationPage.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/GeneratePropertyProvidersWindow/GeneratePropertyProvidersPage.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/GraphInspectorPanel.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/GraphWindow.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/ICanvasWindow.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/ListPage.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/LudiqEditorWindow.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/Page.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/Sidebars/ISidebarPanelContent.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/Sidebars/Sidebar.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/Sidebars/SidebarAnchor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/Sidebars/SidebarPanel.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/Sidebars/SidebarPanelWindow.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/Sidebars/Sidebars.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/SinglePageWindow.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/TabbedPage.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/UpdateWizard/UpdateBackupPage.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/WebView.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/WebWindow.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/WindowClose.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/Wizard.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Windows/WrappedEditorWindow.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[18,26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Unity.VisualScripting.Core.Editor.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":17,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.VisualScripting.Core","SourceFiles":["Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Cloning/Cloner.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Cloning/Cloners/AnimationCurveCloner.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Cloning/Cloners/ArrayCloner.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Cloning/Cloners/DictionaryCloner.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Cloning/Cloners/EnumerableCloner.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Cloning/Cloners/FakeSerializationCloner.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Cloning/Cloners/FieldsCloner.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Cloning/Cloners/ListCloner.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Cloning/Cloners/ReflectedCloner.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Cloning/Cloning.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Cloning/CloningContext.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Cloning/ICloner.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Cloning/ISpecifiesCloner.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/AotDictionary.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/AotList.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/DebugDictionary.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/FlexibleDictionary.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/GuidCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/IKeyedCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/IMergedCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/INotifiedCollectionItem.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/INotifyCollectionChanged.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/IProxyableNotifyCollectionChanged.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/ISet.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/MergedCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/MergedKeyedCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/MergedList.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/NoAllocEnumerator.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/NonNullableCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/NonNullableDictionary.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/NonNullableHashSet.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/NonNullableList.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/VariantCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/VariantList.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Collections/WatchedList.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Connections/ConnectionCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Connections/ConnectionCollectionBase.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Connections/GraphConnectionCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Connections/IConnection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Connections/IConnectionCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Connections/InvalidConnectionException.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Decorators/IDecoratorAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Decorators/ValueAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/AssemblyQualifiedNameParser/ParsedAssemblyQualifiedName.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/AnimationCurve_DirectConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/Bounds_DirectConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/GUIStyleState_DirectConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/GUIStyle_DirectConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/Gradient_DirectConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/InputAction_DirectConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/Keyframe_DirectConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/LayerMask_DirectConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/RectOffset_DirectConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/Rect_DirectConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/UnityEvent_Converter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsArrayConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsDateConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsDictionaryConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsEnumConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsForwardConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsGuidConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsIEnumerableConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsKeyValuePairConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsNullableConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsPrimitiveConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsReflectedConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsTypeConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsWeakReferenceConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsCyclicReferenceManager.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsOption.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsPortableReflection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsTypeExtensions.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsVersionManager.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsVersionedType.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Reflection/fsMetaProperty.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Reflection/fsMetaType.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Reflection/fsReflectionUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Reflection/fsTypeCache.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsAotCompilationManager.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsBaseConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsConfig.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsContext.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsConverterRegistrar.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsDirectConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsExceptions.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsISerializationCallbacks.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsIgnoreAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsJsonParser.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsJsonPrinter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsMemberSerialization.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsObjectAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsObjectProcessor.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsPropertyAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsResult.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsSerializer.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/AllowsNullAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/DisableAnnotationAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/EditorBindingUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/EditorTimeBinding.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/ExpectedTypeAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/IInspectableAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/IncludeInSettingsAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/InspectableAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/InspectableIfAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectViaImplementationsAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorActionDirectionAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorAdaptiveWidthAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorDelayedAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorExpandTooltipAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorLabelAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorRangeAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorTextAreaAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorToggleLeftAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorWideAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/NullMeansSelfAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/PredictableAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/TypeIconAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/TypeIconPriorityAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/TypeSetAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/Typeset.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/WarnBeforeEditingAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/EditorBinding/WarnBeforeRemovingAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/Ensure.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/EnsureThat.Booleans.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/EnsureThat.Collections.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/EnsureThat.Comparables.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/EnsureThat.Guids.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/EnsureThat.NullableValueTypes.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/EnsureThat.Objects.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/EnsureThat.Reflection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/EnsureThat.Strings.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/EnsureThat.Types.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/EnsureThat.ValueTypes.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/EnsureThat.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/ExceptionMessages.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/Extensions/XComparable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Ensure/Extensions/XString.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Events/EmptyEventArgs.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Events/EventBus.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Events/EventHook.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Events/EventHookComparer.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Events/EventHooks.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Events/EventMachine.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Events/FrameDelayedCallback.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Events/IEventGraph.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Events/IEventMachine.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Events/IGraphEventHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Exceptions/DebugUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Exceptions/InvalidConversionException.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Exceptions/InvalidImplementationException.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Exceptions/UnexpectedEnumValueException.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/Graph.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/GraphData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/GraphDebugData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/GraphElement.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/GraphElementCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/GraphInstances.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/GraphNest.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/GraphPointer.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/GraphPointerException.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/GraphReference.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/GraphSource.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/GraphStack.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/GraphsExceptionUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraph.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphDebugData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphElement.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphElementCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphElementData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphElementDebugData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphElementWithData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphElementWithDebugData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphItem.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphNest.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphNester.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphNesterElement.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphParent.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphParentElement.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/IGraphRoot.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Graphs/MergedGraphElementCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Groups/GraphGroup.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Input/MouseButton.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Input/PressState.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/AnimatorMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/GlobalMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/IGraphEventListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/IGraphEventListenerData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnBecameInvisibleMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnBecameVisibleMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionEnter2DMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionEnterMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionExit2DMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionExitMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionStay2DMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionStayMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnControllerColliderHitMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnJointBreak2DMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnJointBreakMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseDownMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseDragMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseEnterMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseExitMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseOverMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseUpAsButtonMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseUpMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnParticleCollisionMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTransformChildrenChangedMListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTransformParentChangedMListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerEnter2DMListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerEnterMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerExit2DMListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerExitMListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerStay2DMListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerStayMListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UI/UnityOnButtonClickMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UI/UnityOnDropdownValueChangedMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UI/UnityOnInputFieldEndEditMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UI/UnityOnInputFieldValueChangedMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UI/UnityOnScrollRectValueChangedMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UI/UnityOnScrollbarValueChangedMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UI/UnityOnSliderValueChangedMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UI/UnityOnToggleValueChangedMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnBeginDragMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnCancelMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnDeselectMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnDragMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnDropMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnEndDragMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnMoveMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerClickMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerDownMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerEnterMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerExitMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerUpMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnScrollMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnSelectMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnSubmitMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Listeners/UnityMessageListener.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Machines/IMachine.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Machines/Machine.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Macros/IMacro.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Macros/Macro.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Platforms/AotIncompatibleAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Platforms/IAotStubbable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Platforms/PlatformUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Pooling/ArrayPool.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Pooling/DictionaryPool.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Pooling/GenericPool.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Pooling/HashSetPool.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Pooling/IPoolable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Pooling/ListPool.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Pooling/ManualPool.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Profiling/ProfiledSegment.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Profiling/ProfiledSegmentCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Profiling/ProfilingScope.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Profiling/ProfilingUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Properties/AssemblyInfo.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/ActionDirection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/AttributeUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/ConversionUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/GenericClosingException.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/IAttributeProvider.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/IPrewarmable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/LooseAssemblyName.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Member.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/MemberFilter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/MemberInfoComparer.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/MemberUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Namespace.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/AdditionHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/AmbiguousOperatorException.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/AndHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/BinaryOperator.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/BinaryOperatorHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/DecrementHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/DivisionHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/EqualityHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/ExclusiveOrHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/GreaterThanHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/GreaterThanOrEqualHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/IncrementHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/InequalityHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/InvalidOperatorException.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/LeftShiftHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/LessThanHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/LessThanOrEqualHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/LogicalNegationHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/ModuloHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/MultiplicationHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/NumericNegationHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/OperatorException.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/OperatorHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/OperatorUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/OrHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/PlusHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/RightShiftHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/SubtractionHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/UnaryOperator.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Operators/UnaryOperatorHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/Action_5.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/Action_6.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/Func_5.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/Func_6.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/IOptimizedAccessor.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/IOptimizedInvoker.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvokerBase.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_0.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_1.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_2.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_3.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_4.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_5.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFieldAccessor.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvokerBase.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_0.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_1.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_2.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_3.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_4.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_5.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceInvokerBase.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InstancePropertyAccessor.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/InvokerBase.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/OptimizedReflection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/ReflectionFieldAccessor.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/ReflectionInvoker.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/ReflectionPropertyAccessor.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvokerBase.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_0.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_1.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_2.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_3.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_4.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_5.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFieldAccessor.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvokerBase.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_0.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_1.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_2.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_3.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_4.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_5.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticInvokerBase.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/Optimization/StaticPropertyAccessor.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/RenamedAssemblyAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/RenamedFromAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/RenamedNamespaceAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/RuntimeCodebase.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/TypeFilter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/TypeName.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/TypeNameDetail.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/TypeQualifier.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/TypeUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Reflection/TypesMatching.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/Converters/LooseAssemblyNameConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/Converters/NamespaceConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/Converters/Ray2DConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/Converters/RayConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/Converters/UnityObjectConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/DictionaryAsset.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/DoNotSerializeAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/ISerializationDependency.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/ISerializationDepender.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/SerializableType.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/Serialization.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/SerializationData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/SerializationOperation.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/SerializationVersionAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/SerializeAsAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Serialization/SerializeAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/SerializedProperties/ISerializedPropertyProvider.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/SerializedProperties/SerializedPropertyProvider.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/SerializedProperties/SerializedPropertyProviderAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/StickyNote/StickyNote.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Unity/IGizmoDrawer.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Unity/ISingleton.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Unity/IUnityObjectOwnable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Unity/LudiqBehaviour.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Unity/LudiqScriptableObject.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Unity/MacroScriptableObject.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Unity/RequiresUnityAPIAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Unity/SceneSingleton.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Unity/Singleton.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Unity/SingletonAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Unity/UnityObjectOwnershipUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Unity/UnityThread.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/CSharpNameUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/ComponentHolderProtocol.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/CoroutineRunner.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/Empty.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/EnumUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/ExceptionUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/HashUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/IAnalyticsIdentifiable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/IGettable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/IIdentifiable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/IInitializable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/LinqUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/OverrideStack.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/Recursion.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/ReferenceCollector.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/ReferenceEqualityComparer.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/RuntimeVSUsageUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/StringUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/UnityObjectUtility.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Utilities/XColor.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/ApplicationVariables.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/IGraphDataWithVariables.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/IGraphWithVariables.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/InspectorVariableNameAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/ObjectVariables.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/SavedVariables.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/SceneVariables.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/VariableDeclaration.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/VariableDeclarationCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/VariableDeclarations.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/VariableDeclarationsCloner.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/VariableKind.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/VariableKindAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/Variables.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/VariablesAsset.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Variables/VariablesSaver.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_STANDARD_2_0","NET_STANDARD","NET_STANDARD_2_1","NETSTANDARD","NETSTANDARD2_1","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","MODULE_ANIMATION_EXISTS","MODULE_PHYSICS_EXISTS","MODULE_PHYSICS_2D_EXISTS","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll"],"References":[27,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.visualscripting/Runtime/VisualScripting.Core/Unity.VisualScripting.Core.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":18,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.VisualScripting.Flow.Editor","SourceFiles":["Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Acknowledgements/Acknowledgement_NCalc.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Analytics/FlowMacroSavedEvent.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/BoltFlowNameUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Connections/ControlConnectionWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Connections/IUnitConnectionWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Connections/InvalidConnectionWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Connections/UnitConnectionStyles.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Connections/UnitConnectionWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Connections/ValueConnectionWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Description/FlowGraphDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Description/FlowMachineDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Description/FlowMacroDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Description/IUnitDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Description/UnitAnalyser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Description/UnitAnalysis.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Description/UnitDescription.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Description/UnitDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Description/UnitPortDescription.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Description/UnitPortDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Events/CustomEventDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Events/EventUnitDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Events/EventUnitWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Events/GlobalMessageListenerEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Events/MessageListenerEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Events/TriggerCustomEventDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/FlowCanvas.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/FlowDragAndDropUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/FlowEditorBindings.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/FlowGraphContext.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/FlowGraphEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/FlowGraphUnitUISample.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/FlowMachineEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/CreateStructDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/CreateStructOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/ExposeDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/ExposeOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/GetMemberDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/GetMemberOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/InvokeMemberDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/InvokeMemberOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/LiteralDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/LiteralInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/LiteralOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/LiteralWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/MemberUnitAnalyser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/MemberUnitDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/MemberUnitOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/OnInputSystemEventAnalyser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/SetMemberDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Codebase/SetMemberOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Control/ForAnalyser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Control/ForEachDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Control/SelectOnEnumDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Control/SelectOnFlowDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Control/SelectOnIntegerDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Control/SelectOnStringDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Control/SelectUnitDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Control/SequenceDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Control/SwitchOnEnumDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Control/SwitchOnIntegerDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Control/SwitchOnStringDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Control/SwitchUnitDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/InputActionInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/InputSystemWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/MultiInputUnitAlphabeticDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/MultiInputUnitNumericDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/GraphInputAnalyser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/GraphInputDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/GraphInputInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/GraphInputWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/GraphOutputAnalyser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/GraphOutputDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/GraphOutputInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/GraphOutputWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/NesterUnitAnalyser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/NesterUnitDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/NesterUnitEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/NesterUnitOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/NestrerUnitWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/SuperUnitDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/SuperUnitEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/SuperUnitWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Nesting/UnitPortDefinitionUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Time/WaitForFlowDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Variables/GetVariableOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Variables/IsVariableDefinedOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/GetVariableUnitOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/IsVariableDefinedUnitOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/SetVariableUnitOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/VariableUnitDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/VariableUnitOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/VariableUnitWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Variables/SetVariableOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Variables/UnifiedVariableUnitDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Variables/UnifiedVariableUnitOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Variables/UnifiedVariableUnitWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Framework/Variables/VariableKindOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Invocations/InvocationInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Invocations/MemberInvocationInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Options/IUnitOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Options/UnitBase.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Options/UnitCategoryOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Options/UnitOption.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Options/UnitOptionFilter.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Options/UnitOptionProvider.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Options/UnitOptionRow.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Options/UnitOptionTree.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Options/UnitOptionUtility.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/BoltFlow.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/BoltFlowConfiguration.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/BoltFlowManifest.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/BoltFlowPaths.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/BoltFlowResources.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_1.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_4.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_1_0..cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_1_1.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_1_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_1_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_2_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_2_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_2_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_2_4.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_3_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_1.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_10.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_4.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_5.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_6.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_7.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_8.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_0_2_to_1_0_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_1_1_to_1_1_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_1_2_to_1_1_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_1_3_to_1_2_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_2_0_to_1_2_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_2_4_to_1_3_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_3_0_to_1_4_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_5_1_to_1_5_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_6_to_1_7.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_Asset_to_Package.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Ports/ControlInputWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Ports/ControlOutputWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Ports/IUnitPortWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Ports/InvalidInputWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Ports/InvalidOutputWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Ports/UnitInputPortWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Ports/UnitOutputPortWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Ports/UnitPortDefinitionInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Ports/UnitPortWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Ports/ValueInputDefinitionInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Ports/ValueInputWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Ports/ValueOutputWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Ports/ValuePortDefinitionInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Properties/AssemblyInfo.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/RuntimeGraphBase.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Units/IUnitWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Units/MissingTypeUnitWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Units/UnitEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Units/UnitInspector.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Units/UnitWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/XFlowGraph.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[17,18,20,26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.visualscripting/Editor/VisualScripting.Flow/Unity.VisualScripting.Flow.Editor.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":19,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.VisualScripting.Flow","SourceFiles":["Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Connections/ControlConnection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Connections/IUnitConnection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Connections/IUnitConnectionDebugData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Connections/IUnitRelation.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Connections/InvalidConnection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Connections/UnitConnection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Connections/UnitConnectionDebugData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Connections/UnitRelation.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Connections/ValueConnection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/BinaryExpression.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluateFunctionHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluateParameterHandler.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluationException.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluationOption.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluationVisitor.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Expression.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/FunctionArgs.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/FunctionExpression.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/IdentifierExpression.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/LogicalExpression.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/LogicalExpressionVisitor.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/NCalcLexer.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/NCalcParser.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/ParameterArgs.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/SerializationVisitor.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/TernaryExpression.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/UnaryExpression.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/ValueExpression.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/EditorBinding/PortKeyAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/EditorBinding/PortLabelAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/EditorBinding/PortLabelHiddenAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/EditorBinding/SpecialUnitAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/EditorBinding/UnitFooterPortsAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/EditorBinding/UnitHeaderInspectableAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/EditorBinding/UnitOrderAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/EditorBinding/UnitShortTitleAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/EditorBinding/UnitSubtitleAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/EditorBinding/UnitSurtitleAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/EditorBinding/UnitTitleAttribute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Flow.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/FlowGraph.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/FlowGraphData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Codebase/CreateStruct.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Codebase/Expose.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Codebase/GetMember.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Codebase/InvokeMember.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Codebase/MemberUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Codebase/SetMember.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/CountItems.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/AddDictionaryItem.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/ClearDictionary.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/CreateDictionary.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/DictionaryContainsKey.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/GetDictionaryItem.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/MergeDictionaries.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/RemoveDictionaryItem.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/SetDictionaryItem.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/FirstItem.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/LastItem.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Lists/AddListItem.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Lists/ClearList.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Lists/CreateList.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Lists/GetListItem.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Lists/InsertListItem.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Lists/ListContainsItem.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Lists/MergeLists.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Lists/RemoveListItem.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Lists/RemoveListItemAt.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Collections/Lists/SetListItem.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/Break.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/Cache.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/For.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/ForEach.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/IBranchUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/ISelectUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/If.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/LoopUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/Once.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/SelectOnEnum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/SelectOnFlow.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/SelectOnInteger.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/SelectOnString.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/SelectUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/SelectUnit_T.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/Sequence.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/SwitchOnEnum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/SwitchOnInteger.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/SwitchOnString.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/SwitchUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/Throw.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/ToggleFlow.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/ToggleValue.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/TryCatch.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Control/While.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Animation/BoltAnimationEvent.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Animation/BoltNamedAnimationEvent.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Animation/OnAnimatorIK.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Animation/OnAnimatorMove.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationFocus.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationLostFocus.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationPause.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationQuit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationResume.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/BoltUnityEvent.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/CustomEvent.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/CustomEventArgs.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Editor/OnDrawGizmos.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Editor/OnDrawGizmosSelected.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/EventUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/GenericGuiEventUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnBeginDrag.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnButtonClick.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnCancel.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnDeselect.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnDrag.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnDrop.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnDropdownValueChanged.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnEndDrag.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnGUI.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnInputFieldEndEdit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnInputFieldValueChanged.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnMove.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerClick.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerDown.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerEnter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerExit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerUp.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnScroll.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnScrollRectValueChanged.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnScrollbarValueChanged.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnSelect.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnSliderValueChanged.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnSubmit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnToggleValueChanged.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GUI/PointerEventUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GameObjectEventUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/GlobalEventUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Hierarchy/OnTransformChildrenChanged.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Hierarchy/OnTransformParentChanged.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/IEventUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Input/IMouseEventUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Input/InputSystem/OnInputSystemEvent.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Input/OnButtonInput.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Input/OnKeyboardInput.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseDown.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseDrag.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseEnter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseExit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseInput.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseOver.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseUp.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseUpAsButton.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/FixedUpdate.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/LateUpdate.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/OnDestroy.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/OnDisable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/OnEnable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/Start.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/Update.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/MachineEventUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/ManualEventUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Navigation/OnDestinationReached.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics/CollisionEventUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnCollisionEnter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnCollisionExit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnCollisionStay.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnControllerColliderHit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnJointBreak.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnParticleCollision.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnTriggerEnter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnTriggerExit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnTriggerStay.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics/TriggerEventUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/CollisionEvent2DUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnCollisionEnter2D.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnCollisionExit2D.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnCollisionStay2D.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnJointBreak2D.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnTriggerEnter2D.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnTriggerExit2D.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnTriggerStay2D.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/TriggerEvent2DUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Rendering/OnBecameInvisible.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Rendering/OnBecameVisible.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/Time/OnTimerElapsed.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Events/TriggerCustomEvent.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Formula.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Graph/GetGraph.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Graph/GetGraphs.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Graph/GetScriptGraph.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Graph/GetScriptGraphs.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Graph/HasGraph.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Graph/HasScriptGraph.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Graph/ScriptGraphContainerType.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Graph/SetGraph.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Graph/SetScriptGraph.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Literal.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/And.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/ApproximatelyEqual.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/BinaryComparisonUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/Comparison.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/Equal.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/EqualityComparison.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/ExclusiveOr.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/Greater.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/GreaterOrEqual.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/Less.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/LessOrEqual.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/Negate.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/NotApproximatelyEqual.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/NotEqual.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/NumericComparison.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Logic/Or.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Absolute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Add.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Angle.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Average.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/CrossProduct.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Distance.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Divide.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/DotProduct.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Generic/DeprecatedGenericAdd.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericDivide.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericModulo.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericMultiply.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericSubtract.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericSum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Lerp.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Maximum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Minimum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Modulo.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/MoveTowards.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Multiply.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Normalize.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/PerSecond.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Project.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Round.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/DeprecatedScalarAdd.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarAbsolute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarAverage.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarDivide.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarExponentiate.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarLerp.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarMaximum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarMinimum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarModulo.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarMoveTowards.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarMultiply.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarNormalize.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarPerSecond.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarRoot.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarRound.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarSubtract.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarSum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Subtract.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Sum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/DeprecatedVector2Add.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Absolute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Angle.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Average.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Distance.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Divide.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2DotProduct.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Lerp.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Maximum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Minimum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Modulo.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2MoveTowards.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Multiply.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Normalize.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2PerSecond.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Project.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Round.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Subtract.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Sum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/DeprecatedVector3Add.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Absolute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Angle.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Average.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3CrossProduct.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Distance.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Divide.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3DotProduct.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Lerp.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Maximum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Minimum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Modulo.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3MoveTowards.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Multiply.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Normalize.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3PerSecond.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Project.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Round.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Subtract.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Sum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/DeprecatedVector4Add.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Absolute.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Average.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Distance.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Divide.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4DotProduct.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Lerp.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Maximum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Minimum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Modulo.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4MoveTowards.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Multiply.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Normalize.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4PerSecond.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Round.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Subtract.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Sum.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/MissingType.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Nesting/GraphInput.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Nesting/GraphOutput.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Nulls/Null.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Nulls/NullCheck.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Nulls/NullCoalesce.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/This.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Time/Cooldown.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Time/Timer.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Time/WaitForEndOfFrameUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Time/WaitForFlow.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Time/WaitForNextFrameUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Time/WaitForSecondsUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Time/WaitUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Time/WaitUntilUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Time/WaitWhileUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/GetVariable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/IUnifiedVariableUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/IsVariableDefined.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetApplicationVariable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetGraphVariable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetObjectVariable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetSavedVariable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetSceneVariable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetVariableUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IApplicationVariableUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IGraphVariableUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IObjectVariableUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/ISavedVariableUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/ISceneVariableUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IVariableUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsApplicationVariableDefined.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsGraphVariableDefined.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsObjectVariableDefined.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsSavedVariableDefined.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsSceneVariableDefined.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsVariableDefinedUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetApplicationVariable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetGraphVariable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetObjectVariable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetSavedVariable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetSceneVariable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetVariableUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/VariableUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/SaveVariables.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/SetVariable.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Framework/Variables/UnifiedVariableUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/IDefaultValue.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/INesterUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/IUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/IUnitDebugData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/MultiInputUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/NesterUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/ControlInput.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/ControlInputDefinition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/ControlOutput.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/ControlOutputDefinition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/ControlPortDefinition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/IUnitControlPort.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/IUnitControlPortDefinition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/IUnitInputPort.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/IUnitInputPortDefinition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/IUnitInvalidPort.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/IUnitOutputPort.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/IUnitOutputPortDefinition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/IUnitPort.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/IUnitPortCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/IUnitPortDefinition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/IUnitValuePort.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/IUnitValuePortDefinition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/InvalidInput.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/InvalidOutput.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/MissingValuePortInputException.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/UnitPort.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/UnitPortCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/UnitPortDefinition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/ValueInput.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/ValueInputDefinition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/ValueOutput.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/ValueOutputDefinition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/ValuePortDefinition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Properties/AssemblyInfo.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/ScriptGraphAsset.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/ScriptMachine.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/SubgraphUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Unit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/UnitCategory.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/UnitCategoryConverter.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/UnitPortDefinitionCollection.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/UnitPreservation.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_STANDARD_2_0","NET_STANDARD","NET_STANDARD_2_1","NETSTANDARD","NETSTANDARD2_1","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","MODULE_AI_EXISTS","MODULE_ANIMATION_EXISTS","MODULE_PHYSICS_EXISTS","MODULE_PHYSICS_2D_EXISTS","MODULE_PARTICLE_SYSTEM_EXISTS","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll"],"References":[18,27,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Unity.VisualScripting.Flow.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":20,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.VisualScripting.SettingsProvider.Editor","SourceFiles":["Packages/com.unity.visualscripting/Editor/SettingsProvider/EditorPreferencesProvider.cs","Packages/com.unity.visualscripting/Editor/SettingsProvider/EditorPreferencesProviderView.cs","Packages/com.unity.visualscripting/Editor/SettingsProvider/ProjectSettings/AssemblyOptionsSettings.cs","Packages/com.unity.visualscripting/Editor/SettingsProvider/ProjectSettings/BackupSettings.cs","Packages/com.unity.visualscripting/Editor/SettingsProvider/ProjectSettings/CustomPropertyProviderSettings.cs","Packages/com.unity.visualscripting/Editor/SettingsProvider/ProjectSettings/ScriptReferenceResolverSettings.cs","Packages/com.unity.visualscripting/Editor/SettingsProvider/ProjectSettings/TypeOptionsSettings.cs","Packages/com.unity.visualscripting/Editor/SettingsProvider/ProjectSettingsProvider.cs","Packages/com.unity.visualscripting/Editor/SettingsProvider/ProjectSettingsProviderView.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[17,18,19,20,24,26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.visualscripting/Editor/SettingsProvider/Unity.VisualScripting.SettingsProvider.Editor.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":21,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.VisualScripting.Shared.Editor","SourceFiles":["Packages/com.unity.visualscripting/Editor/VisualScripting.Shared/EmptyGraphWindow.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[17,18,19,20,23,24,26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.visualscripting/Editor/VisualScripting.Shared/Unity.VisualScripting.Shared.Editor.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":22,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.VisualScripting.State.Editor","SourceFiles":["Packages/com.unity.visualscripting/Editor/VisualScripting.State/Analytics/StateMacroSavedEvent.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Description/StateGraphDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Description/StateMachineDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Description/StateMacroDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Flow/FlowGraphContextStateExtension.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Flow/StateUnitDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Flow/StateUnitEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Flow/StateUnitWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Flow/UnitBaseStateExtensions.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Graph/StateCanvas.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Graph/StateGraphContext.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/BoltState.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/BoltStateConfiguration.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/BoltStateManifest.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/BoltStateResources.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_0_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_0_1.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_0_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_1_1.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_1_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_1_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_2_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_2_3.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_2_4.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_3_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_4_0.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_4_1.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Migrations/Migration_1_5_1_to_1_5_2.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Migrations/Migration_1_6_to_1_7.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Plugin/Migrations/Migration_Asset_to_Package.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Properties/AssemblyInfo.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/StateGraphEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/StateRevealCondition.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/AnyStateDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/AnyStateWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/FlowStateDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/FlowStateEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/FlowStateWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/IStateWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/NesterStateAnalyser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/NesterStateDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/NesterStateEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/NesterStateWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/StateAnalyser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/StateAnalysis.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/StateDescription.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/StateDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/StateEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/StateTransitionAnalysis.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/StateWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/SuperStateDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/SuperStateEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/States/SuperStateWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/FlowStateTransitionAnalyser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/FlowStateTransitionDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/FlowStateTransitionEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/FlowStateTransitionWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/IStateTransitionWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/NesterStateTransitionAnalyser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/NesterStateTransitionDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/NesterStateTransitionEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/NesterStateTransitionWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/StateTransitionAnalyser.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/StateTransitionDescription.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/StateTransitionDescriptor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/StateTransitionEditor.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/StateTransitionWidget.cs","Packages/com.unity.visualscripting/Editor/VisualScripting.State/Transitions/TriggerStateTransitionWidget.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[17,18,19,20,24,26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.visualscripting/Editor/VisualScripting.State/Unity.VisualScripting.State.Editor.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":23,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.VisualScripting.State","SourceFiles":["Packages/com.unity.visualscripting/Runtime/VisualScripting.State/AnyState.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/FlowState.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/FlowStateTransition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/Framework/Graph/HasStateGraph.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/INesterState.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/INesterStateTransition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/IState.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/IStateDebugData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/IStateTransition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/IStateTransitionDebugData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/NesterState.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/NesterStateTransition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/OnEnterState.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/OnExitState.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/Properties/AssemblyInfo.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/State.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/StateEnterReason.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/StateEventHooks.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/StateExitReason.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/StateGraph.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/StateGraphAsset.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/StateGraphData.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/StateMachine.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/StateTransition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/StateUnit.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/SuperState.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/TriggerStateTransition.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/Units/GetStateGraph.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/Units/GetStateGraphs.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/Units/SetStateGraph.cs","Packages/com.unity.visualscripting/Runtime/VisualScripting.State/Units/StateGraphContainerType.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_STANDARD_2_0","NET_STANDARD","NET_STANDARD_2_1","NETSTANDARD","NETSTANDARD2_1","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll"],"References":[18,20,27,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.visualscripting/Runtime/VisualScripting.State/Unity.VisualScripting.State.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":24,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"Unity.VisualStudio.Editor","SourceFiles":["Packages/com.unity.ide.visualstudio/Editor/AssemblyInfo.cs","Packages/com.unity.ide.visualstudio/Editor/AsyncOperation.cs","Packages/com.unity.ide.visualstudio/Editor/Cli.cs","Packages/com.unity.ide.visualstudio/Editor/Discovery.cs","Packages/com.unity.ide.visualstudio/Editor/FileUtility.cs","Packages/com.unity.ide.visualstudio/Editor/Image.cs","Packages/com.unity.ide.visualstudio/Editor/KnownAssemblies.cs","Packages/com.unity.ide.visualstudio/Editor/Messaging/Deserializer.cs","Packages/com.unity.ide.visualstudio/Editor/Messaging/ExceptionEventArgs.cs","Packages/com.unity.ide.visualstudio/Editor/Messaging/Message.cs","Packages/com.unity.ide.visualstudio/Editor/Messaging/MessageEventArgs.cs","Packages/com.unity.ide.visualstudio/Editor/Messaging/MessageType.cs","Packages/com.unity.ide.visualstudio/Editor/Messaging/Messenger.cs","Packages/com.unity.ide.visualstudio/Editor/Messaging/Serializer.cs","Packages/com.unity.ide.visualstudio/Editor/Messaging/TcpClient.cs","Packages/com.unity.ide.visualstudio/Editor/Messaging/TcpListener.cs","Packages/com.unity.ide.visualstudio/Editor/Messaging/UdpSocket.cs","Packages/com.unity.ide.visualstudio/Editor/ProcessRunner.cs","Packages/com.unity.ide.visualstudio/Editor/ProjectGeneration/AssemblyNameProvider.cs","Packages/com.unity.ide.visualstudio/Editor/ProjectGeneration/FileIOProvider.cs","Packages/com.unity.ide.visualstudio/Editor/ProjectGeneration/GUIDProvider.cs","Packages/com.unity.ide.visualstudio/Editor/ProjectGeneration/ProjectGeneration.cs","Packages/com.unity.ide.visualstudio/Editor/ProjectGeneration/ProjectGenerationFlag.cs","Packages/com.unity.ide.visualstudio/Editor/ProjectGeneration/ProjectProperties.cs","Packages/com.unity.ide.visualstudio/Editor/Solution.cs","Packages/com.unity.ide.visualstudio/Editor/SolutionParser.cs","Packages/com.unity.ide.visualstudio/Editor/SolutionProjectEntry.cs","Packages/com.unity.ide.visualstudio/Editor/SolutionProperties.cs","Packages/com.unity.ide.visualstudio/Editor/Symbols.cs","Packages/com.unity.ide.visualstudio/Editor/Testing/TestAdaptor.cs","Packages/com.unity.ide.visualstudio/Editor/Testing/TestResultAdaptor.cs","Packages/com.unity.ide.visualstudio/Editor/Testing/TestRunnerApiListener.cs","Packages/com.unity.ide.visualstudio/Editor/Testing/TestRunnerCallbacks.cs","Packages/com.unity.ide.visualstudio/Editor/Testing/TestStatusAdaptor.cs","Packages/com.unity.ide.visualstudio/Editor/UnityInstallation.cs","Packages/com.unity.ide.visualstudio/Editor/UsageUtility.cs","Packages/com.unity.ide.visualstudio/Editor/VersionPair.cs","Packages/com.unity.ide.visualstudio/Editor/VisualStudioEditor.cs","Packages/com.unity.ide.visualstudio/Editor/VisualStudioInstallation.cs","Packages/com.unity.ide.visualstudio/Editor/VisualStudioIntegration.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[26,27,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.ide.visualstudio/Editor/com.unity.ide.visualstudio.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":25,"SkipCodeGen":true,"Path":"/home/andrew/My project (1)"},{"Name":"UnityEditor.TestRunner","SourceFiles":["Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/Analytics/AnalyticsReporter.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/Analytics/AnalyticsTestCallback.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/Analytics/RunFinishedData.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/Analytics/TestTreeData.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/CallbacksDelegator.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/CallbacksDelegatorListener.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/CallbacksHolder.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/ExecutionSettings.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/Filter.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/ICallbacks.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/ICallbacksDelegator.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/ICallbacksHolder.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/IErrorCallbacks.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/ITestAdaptor.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/ITestAdaptorFactory.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/ITestResultAdaptor.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/ITestRunSettings.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/ITestRunnerApi.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/ITestTreeRebuildCallbacks.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/IgnoreTest.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/RunState.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/TestAdaptor.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/TestAdaptorFactory.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/TestMode.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/TestResultAdaptor.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/TestRunProgress.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/TestRunnerApi.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/Api/TestStatus.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/AssemblyInfo.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineParser/CommandLineOption.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineParser/CommandLineOptionSet.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/Executer.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/ExecutionSettings.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/IExecuter.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/IRunData.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/ISettingsBuilder.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/LogSavingCallbacks.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/LogWriter.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/ResultsSavingCallbacks.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/ResultsWriter.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/RunData.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/RunSettings.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/RunStateCallbacks.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/SettingsBuilder.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/SetupException.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/TestStarter.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/CommandLineTest/TestState.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/AssetsDatabaseHelper.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/GuiHelper.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/IAssetsDatabaseHelper.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/IGuiHelper.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/TestListBuilder/RenderingOptions.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/TestListBuilder/ResultSummarizer.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/TestListBuilder/TestFilterSettings.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/TestListBuilder/TestTreeViewBuilder.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/TestListGuiHelper.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/TestListTreeView/Icons.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewDataSource.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewGUI.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/TestListTreeView/TestTreeViewItem.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/TestRunnerResult.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/TestRunnerUIFilter.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/UITestRunnerFilter.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/Views/EditModeTestListGUI.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/Views/PlayModeTestListGUI.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/GUI/Views/TestListGUIBase.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/NUnitExtension/Attributes/AssetPipelineIgnore.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/NUnitExtension/Attributes/ITestPlayerBuildModifier.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/NUnitExtension/Attributes/TestPlayerBuildModifierAttribute.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/NUnitExtension/TestRunnerStateSerializer.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/RequireApiProfileAttribute.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/RequirePlatformSupportAttribute.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestBuildAssemblyFilter.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/EditModeLauncherContextSettings.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/Helpers/AttributeFinderBase.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/Helpers/DelayedCallback.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/Helpers/FilePathMetaInfo.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/Helpers/PlayerLauncherBuildOptions.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/Helpers/PostbuildCleanupAttributeFinder.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/Helpers/PrebuildSetupAttributeFinder.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/AndroidPlatformSetup.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/ApplePlatformSetup.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/IPlatformSetup.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/LuminPlatformSetup.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/PlatformSpecificSetup.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/StadiaPlatformSetup.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/SwitchPlatformSetup.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/UwpPlatformSetup.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/XboxOnePlatformSetup.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/PlayerLauncher.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherContextSettings.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherTestRunSettings.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/PlaymodeLauncher.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/RemotePlayerLogController.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/RemotePlayerTestController.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/RuntimeTestLauncherBase.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/TestLauncherBase.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestResultSerializer.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Data/RunProgress.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Data/TaskInfo.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Data/TaskMode.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Data/TestJobData.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Data/TestProgress.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/ITestJobDataHolder.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/ITestJobRunner.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/RequiredTestRunDataMissingException.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/TaskList.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/BuildActionTaskBase.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/BuildTestTreeTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/CleanUpContext.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/CleanupConstructDelegatorTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/CleanupVerificationTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/EditModeRunTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/EnableTestOutLoggerTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/Events/CreateEventsTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/Events/RegisterCallbackDelegatorEventsTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/Events/RegisterTestRunCallbackEventsTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/Events/RunFinishedInvocationEvent.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/Events/RunStartedInvocationEvent.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/Events/UpdateTestProgressTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/FileCleanupVerifierTaskBase.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/GenerateContextTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/InitializeTestProgressTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayModeRunTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayerRunTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/PerformUndoTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/PostbuildCleanupTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/PrebuildSetupTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/RegisterFilesForCleanupVerificationTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/SaveUndoIndexTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/Scene/CreateNewSceneTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/Scene/ISceneWrapper.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/Scene/ReloadModifiedScenesTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/Scene/RemoveAdditionalUntitledSceneTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/Scene/RestoreSceneSetupTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/Scene/SaveModifiedSceneTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/Scene/SaveSceneSetupTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/Scene/SceneWrapper.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/SetupConstructDelegatorTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/TestTaskBase.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/Tasks/UnlockReloadAssembliesTask.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/TestJobDataHolder.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/TestJobRunner.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRun/TestRunCanceledException.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Callbacks/TestRunnerCallback.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdater.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdaterDataHolder.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/EditModePCHelper.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/EditModeRunner.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/EditmodeWorkItemFactory.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/EditorEnumeratorTestWorkItem.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/EnumeratorStepHelper.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Messages/EnterPlayMode.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Messages/ExitPlayMode.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Messages/RecompileScripts.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Messages/WaitForDomainReload.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/CachingTestListProvider.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/EditorAssembliesProxy.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/EditorAssemblyWrapper.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/EditorCompilationInterfaceProxy.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/EditorLoadedTestAssemblyProvider.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/IEditorAssembliesProxy.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/IEditorCompilationInterfaceProxy.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/IEditorLoadedTestAssemblyProvider.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/ITestListCache.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/ITestListProvider.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/TestListCache.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/TestListCacheData.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/TestListJob.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunner/Utils/TestListProvider.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunnerWindow.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestRunnerWindowSettings.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestSettings/ITestSettings.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestSettings/ITestSettingsDeserializer.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestSettings/TestSettings.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/TestSettings/TestSettingsDeserializer.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/ITestRunnerApiMapper.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/IUtpLogger.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/Message.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/TesRunDataHolder.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/TestFinishedMessage.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/TestRunData.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/TestRunnerApiMapper.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/TestStartedMessage.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/TestState.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolListener.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolStarter.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/UtpDebuglogger.cs","Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityTestProtocol/UtpMessageReporter.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","UNITY_TESTS_FRAMEWORK","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[28],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.test-framework/UnityEditor.TestRunner/UnityEditor.TestRunner.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":26,"SkipCodeGen":true,"Path":"/home/andrew/My project (1)"},{"Name":"UnityEditor.UI","SourceFiles":["Packages/com.unity.ugui/Editor/EventSystem/EventSystemEditor.cs","Packages/com.unity.ugui/Editor/EventSystem/EventTriggerEditor.cs","Packages/com.unity.ugui/Editor/EventSystem/Physics2DRaycasterEditor.cs","Packages/com.unity.ugui/Editor/EventSystem/PhysicsRaycasterEditor.cs","Packages/com.unity.ugui/Editor/Properties/AssemblyInfo.cs","Packages/com.unity.ugui/Editor/UI/AspectRatioFitterEditor.cs","Packages/com.unity.ugui/Editor/UI/ButtonEditor.cs","Packages/com.unity.ugui/Editor/UI/CanvasScalerEditor.cs","Packages/com.unity.ugui/Editor/UI/ContentSizeFitterEditor.cs","Packages/com.unity.ugui/Editor/UI/DropdownEditor.cs","Packages/com.unity.ugui/Editor/UI/GraphicEditor.cs","Packages/com.unity.ugui/Editor/UI/GridLayoutGroupEditor.cs","Packages/com.unity.ugui/Editor/UI/HorizontalOrVerticalLayoutGroupEditor.cs","Packages/com.unity.ugui/Editor/UI/ImageEditor.cs","Packages/com.unity.ugui/Editor/UI/InputFieldEditor.cs","Packages/com.unity.ugui/Editor/UI/InterceptedEventsPreview.cs","Packages/com.unity.ugui/Editor/UI/LayoutElementEditor.cs","Packages/com.unity.ugui/Editor/UI/LayoutPropertiesPreview.cs","Packages/com.unity.ugui/Editor/UI/MaskEditor.cs","Packages/com.unity.ugui/Editor/UI/MenuOptions.cs","Packages/com.unity.ugui/Editor/UI/PrefabLayoutRebuilder.cs","Packages/com.unity.ugui/Editor/UI/PropertyDrawers/AnimationTriggersDrawer.cs","Packages/com.unity.ugui/Editor/UI/PropertyDrawers/ColorBlockDrawer.cs","Packages/com.unity.ugui/Editor/UI/PropertyDrawers/DropdownOptionListDrawer.cs","Packages/com.unity.ugui/Editor/UI/PropertyDrawers/FontDataDrawer.cs","Packages/com.unity.ugui/Editor/UI/PropertyDrawers/NavigationDrawer.cs","Packages/com.unity.ugui/Editor/UI/PropertyDrawers/SpriteStateDrawer.cs","Packages/com.unity.ugui/Editor/UI/RawImageEditor.cs","Packages/com.unity.ugui/Editor/UI/RectMask2DEditor.cs","Packages/com.unity.ugui/Editor/UI/ScrollRectEditor.cs","Packages/com.unity.ugui/Editor/UI/ScrollbarEditor.cs","Packages/com.unity.ugui/Editor/UI/SelectableEditor.cs","Packages/com.unity.ugui/Editor/UI/SelfControllerEditor.cs","Packages/com.unity.ugui/Editor/UI/SliderEditor.cs","Packages/com.unity.ugui/Editor/UI/SpriteDrawUtility.cs","Packages/com.unity.ugui/Editor/UI/TextEditor.cs","Packages/com.unity.ugui/Editor/UI/ToggleEditor.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_4_6","NET_UNITY_4_8","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","PACKAGE_PHYSICS","PACKAGE_PHYSICS2D","PACKAGE_ANIMATION","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER","UNITY_EDITOR_ONLY_COMPILATION"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll"],"References":[26,28,29],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.ugui/Editor/UnityEditor.UI.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":27,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"},{"Name":"UnityEngine.TestRunner","SourceFiles":["Packages/com.unity.test-framework/UnityEngine.TestRunner/AssemblyInfo.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/AllocatingGCMemoryConstraint.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/InvalidSignatureException.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/Is.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogAssert.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/LogScope/LogScope.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/OutOfOrderExpectedLogMessageException.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/ActionDelegator.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/ConditionalIgnoreAttribute.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestMustExpectAllLogsAttribute.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityPlatformAttribute.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTearDownAttribute.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandBase.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRepeatedTestCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRetryTestCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestState.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/IgnoreTest.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/IgnoreTestCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/ImmediateEnumerableCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/OuterUnityTestActionCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/RepeatCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/RetryCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/StrictCheckCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/TaskTestMethodCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/TestCommandPcHelper.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/TimeoutCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Commands/UnityTestMethodCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Filters/AssemblyNameFilter.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Filters/FullNameFilter.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/IAsyncTestAssemblyBuilder.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/ITestSuiteModifier.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/OrderedTestSuiteModifier.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/DefaultTestWorkItem.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/FeatureFlags.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/PlaymodeWorkItemFactory.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/TestCommandBuilder.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestExecutionContext.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/TestResultExtensions.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/PlayerQuitHandler.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRendererCallback.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/PlaymodeTestsControllerSettings.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/IRemoteTestResultDataFactory.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/PlayerConnectionMessageIds.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultData.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataFactory.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataWithTestData.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/RuntimeTestRunnerFilter.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/SynchronousFilter.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/TestEnumeratorWrapper.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/TestListenerWrapper.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/TestPlatform.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/TestRunner/TestTaskWrapper.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/UnityTestProtocol/MessageForRetryRepeat.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/UnityTestProtocol/TestFinishMessage.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/UnityTestProtocol/TestStartedMessage.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/UnityTestProtocol/TestState.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyLoadProxy.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/IScriptingRuntimeProxy.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/PlayerTestAssemblyProvider.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AssemblyProvider/ScriptingRuntimeProxy.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/AttributeHelper.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/CoroutineRunner.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/IPostBuildCleanup.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/ITestRunCallback.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/MonoBehaviourTest/IMonoBehaviourTest.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/MonoBehaviourTest/MonoBehaviourTest.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/PrebuildSceneSetupAttribute.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/StacktraceFilter.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/TestRunCallbackAttribute.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/TestRunCallbackListener.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Utils.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector2ComparerWithEqualsOperator.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector3ComparerWithEqualsOperator.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector4ComparerWithEqualsOperator.cs","Packages/com.unity.test-framework/UnityEngine.TestRunner/Utils/Vector4EqualityComparer.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_STANDARD_2_0","NET_STANDARD","NET_STANDARD_2_1","NETSTANDARD","NETSTANDARD2_1","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","UNITY_TESTS_FRAMEWORK","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll"],"References":[],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.test-framework/UnityEngine.TestRunner/UnityEngine.TestRunner.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":28,"SkipCodeGen":true,"Path":"/home/andrew/My project (1)"},{"Name":"UnityEngine.UI","SourceFiles":["Packages/com.unity.ugui/Runtime/EventSystem/EventData/AxisEventData.cs","Packages/com.unity.ugui/Runtime/EventSystem/EventData/BaseEventData.cs","Packages/com.unity.ugui/Runtime/EventSystem/EventData/PointerEventData.cs","Packages/com.unity.ugui/Runtime/EventSystem/EventHandle.cs","Packages/com.unity.ugui/Runtime/EventSystem/EventInterfaces.cs","Packages/com.unity.ugui/Runtime/EventSystem/EventSystem.cs","Packages/com.unity.ugui/Runtime/EventSystem/EventTrigger.cs","Packages/com.unity.ugui/Runtime/EventSystem/EventTriggerType.cs","Packages/com.unity.ugui/Runtime/EventSystem/ExecuteEvents.cs","Packages/com.unity.ugui/Runtime/EventSystem/InputModules/BaseInput.cs","Packages/com.unity.ugui/Runtime/EventSystem/InputModules/BaseInputModule.cs","Packages/com.unity.ugui/Runtime/EventSystem/InputModules/PointerInputModule.cs","Packages/com.unity.ugui/Runtime/EventSystem/InputModules/StandaloneInputModule.cs","Packages/com.unity.ugui/Runtime/EventSystem/InputModules/TouchInputModule.cs","Packages/com.unity.ugui/Runtime/EventSystem/MoveDirection.cs","Packages/com.unity.ugui/Runtime/EventSystem/RaycastResult.cs","Packages/com.unity.ugui/Runtime/EventSystem/RaycasterManager.cs","Packages/com.unity.ugui/Runtime/EventSystem/Raycasters/BaseRaycaster.cs","Packages/com.unity.ugui/Runtime/EventSystem/Raycasters/Physics2DRaycaster.cs","Packages/com.unity.ugui/Runtime/EventSystem/Raycasters/PhysicsRaycaster.cs","Packages/com.unity.ugui/Runtime/EventSystem/UIBehaviour.cs","Packages/com.unity.ugui/Runtime/EventSystem/UIElements/PanelEventHandler.cs","Packages/com.unity.ugui/Runtime/EventSystem/UIElements/PanelRaycaster.cs","Packages/com.unity.ugui/Runtime/Properties/AssemblyInfo.cs","Packages/com.unity.ugui/Runtime/UI/Animation/CoroutineTween.cs","Packages/com.unity.ugui/Runtime/UI/Core/AnimationTriggers.cs","Packages/com.unity.ugui/Runtime/UI/Core/Button.cs","Packages/com.unity.ugui/Runtime/UI/Core/CanvasUpdateRegistry.cs","Packages/com.unity.ugui/Runtime/UI/Core/ColorBlock.cs","Packages/com.unity.ugui/Runtime/UI/Core/Culling/ClipperRegistry.cs","Packages/com.unity.ugui/Runtime/UI/Core/Culling/Clipping.cs","Packages/com.unity.ugui/Runtime/UI/Core/Culling/IClipRegion.cs","Packages/com.unity.ugui/Runtime/UI/Core/Culling/RectangularVertexClipper.cs","Packages/com.unity.ugui/Runtime/UI/Core/DefaultControls.cs","Packages/com.unity.ugui/Runtime/UI/Core/Dropdown.cs","Packages/com.unity.ugui/Runtime/UI/Core/FontData.cs","Packages/com.unity.ugui/Runtime/UI/Core/FontUpdateTracker.cs","Packages/com.unity.ugui/Runtime/UI/Core/Graphic.cs","Packages/com.unity.ugui/Runtime/UI/Core/GraphicRaycaster.cs","Packages/com.unity.ugui/Runtime/UI/Core/GraphicRebuildTracker.cs","Packages/com.unity.ugui/Runtime/UI/Core/GraphicRegistry.cs","Packages/com.unity.ugui/Runtime/UI/Core/IGraphicEnabledDisabled.cs","Packages/com.unity.ugui/Runtime/UI/Core/IMask.cs","Packages/com.unity.ugui/Runtime/UI/Core/IMaskable.cs","Packages/com.unity.ugui/Runtime/UI/Core/Image.cs","Packages/com.unity.ugui/Runtime/UI/Core/InputField.cs","Packages/com.unity.ugui/Runtime/UI/Core/Layout/AspectRatioFitter.cs","Packages/com.unity.ugui/Runtime/UI/Core/Layout/CanvasScaler.cs","Packages/com.unity.ugui/Runtime/UI/Core/Layout/ContentSizeFitter.cs","Packages/com.unity.ugui/Runtime/UI/Core/Layout/GridLayoutGroup.cs","Packages/com.unity.ugui/Runtime/UI/Core/Layout/HorizontalLayoutGroup.cs","Packages/com.unity.ugui/Runtime/UI/Core/Layout/HorizontalOrVerticalLayoutGroup.cs","Packages/com.unity.ugui/Runtime/UI/Core/Layout/ILayoutElement.cs","Packages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutElement.cs","Packages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutGroup.cs","Packages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutRebuilder.cs","Packages/com.unity.ugui/Runtime/UI/Core/Layout/LayoutUtility.cs","Packages/com.unity.ugui/Runtime/UI/Core/Layout/VerticalLayoutGroup.cs","Packages/com.unity.ugui/Runtime/UI/Core/Mask.cs","Packages/com.unity.ugui/Runtime/UI/Core/MaskUtilities.cs","Packages/com.unity.ugui/Runtime/UI/Core/MaskableGraphic.cs","Packages/com.unity.ugui/Runtime/UI/Core/MaterialModifiers/IMaterialModifier.cs","Packages/com.unity.ugui/Runtime/UI/Core/Misc.cs","Packages/com.unity.ugui/Runtime/UI/Core/MultipleDisplayUtilities.cs","Packages/com.unity.ugui/Runtime/UI/Core/Navigation.cs","Packages/com.unity.ugui/Runtime/UI/Core/RawImage.cs","Packages/com.unity.ugui/Runtime/UI/Core/RectMask2D.cs","Packages/com.unity.ugui/Runtime/UI/Core/ScrollRect.cs","Packages/com.unity.ugui/Runtime/UI/Core/Scrollbar.cs","Packages/com.unity.ugui/Runtime/UI/Core/Selectable.cs","Packages/com.unity.ugui/Runtime/UI/Core/SetPropertyUtility.cs","Packages/com.unity.ugui/Runtime/UI/Core/Slider.cs","Packages/com.unity.ugui/Runtime/UI/Core/SpecializedCollections/IndexedSet.cs","Packages/com.unity.ugui/Runtime/UI/Core/SpriteState.cs","Packages/com.unity.ugui/Runtime/UI/Core/StencilMaterial.cs","Packages/com.unity.ugui/Runtime/UI/Core/Text.cs","Packages/com.unity.ugui/Runtime/UI/Core/Toggle.cs","Packages/com.unity.ugui/Runtime/UI/Core/ToggleGroup.cs","Packages/com.unity.ugui/Runtime/UI/Core/Utility/ReflectionMethodsCache.cs","Packages/com.unity.ugui/Runtime/UI/Core/Utility/VertexHelper.cs","Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/BaseMeshEffect.cs","Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/IMeshModifier.cs","Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/Outline.cs","Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/PositionAsUV1.cs","Packages/com.unity.ugui/Runtime/UI/Core/VertexModifiers/Shadow.cs"],"Defines":["UNITY_2023_1_8","UNITY_2023_1","UNITY_2023","UNITY_5_3_OR_NEWER","UNITY_5_4_OR_NEWER","UNITY_5_5_OR_NEWER","UNITY_5_6_OR_NEWER","UNITY_2017_1_OR_NEWER","UNITY_2017_2_OR_NEWER","UNITY_2017_3_OR_NEWER","UNITY_2017_4_OR_NEWER","UNITY_2018_1_OR_NEWER","UNITY_2018_2_OR_NEWER","UNITY_2018_3_OR_NEWER","UNITY_2018_4_OR_NEWER","UNITY_2019_1_OR_NEWER","UNITY_2019_2_OR_NEWER","UNITY_2019_3_OR_NEWER","UNITY_2019_4_OR_NEWER","UNITY_2020_1_OR_NEWER","UNITY_2020_2_OR_NEWER","UNITY_2020_3_OR_NEWER","UNITY_2021_1_OR_NEWER","UNITY_2021_2_OR_NEWER","UNITY_2021_3_OR_NEWER","UNITY_2022_1_OR_NEWER","UNITY_2022_2_OR_NEWER","UNITY_2022_3_OR_NEWER","UNITY_2023_1_OR_NEWER","PLATFORM_ARCH_64","UNITY_64","UNITY_INCLUDE_TESTS","ENABLE_AUDIO","ENABLE_CACHING","ENABLE_CLOTH","ENABLE_MICROPHONE","ENABLE_MULTIPLE_DISPLAYS","ENABLE_PHYSICS","ENABLE_TEXTURE_STREAMING","ENABLE_VIRTUALTEXTURING","ENABLE_LZMA","ENABLE_UNITYEVENTS","ENABLE_VR","ENABLE_WEBCAM","ENABLE_UNITYWEBREQUEST","ENABLE_WWW","ENABLE_CLOUD_SERVICES","ENABLE_CLOUD_SERVICES_ADS","ENABLE_CLOUD_SERVICES_USE_WEBREQUEST","ENABLE_CLOUD_SERVICES_CRASH_REPORTING","ENABLE_CLOUD_SERVICES_PURCHASING","ENABLE_CLOUD_SERVICES_ANALYTICS","ENABLE_CLOUD_SERVICES_BUILD","ENABLE_EDITOR_GAME_SERVICES","ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT","ENABLE_CLOUD_LICENSE","ENABLE_EDITOR_HUB_LICENSE","ENABLE_WEBSOCKET_CLIENT","ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API","ENABLE_DIRECTOR_AUDIO","ENABLE_DIRECTOR_TEXTURE","ENABLE_MANAGED_JOBS","ENABLE_MANAGED_TRANSFORM_JOBS","ENABLE_MANAGED_ANIMATION_JOBS","ENABLE_MANAGED_AUDIO_JOBS","ENABLE_MANAGED_UNITYTLS","INCLUDE_DYNAMIC_GI","ENABLE_SCRIPTING_GC_WBARRIERS","PLATFORM_SUPPORTS_MONO","RENDER_SOFTWARE_CURSOR","ENABLE_MARSHALLING_TESTS","ENABLE_VIDEO","ENABLE_ACCELERATOR_CLIENT_DEBUGGING","ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION","ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT","ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE","PLATFORM_STANDALONE","TEXTCORE_1_0_OR_NEWER","PLATFORM_STANDALONE_LINUX","UNITY_STANDALONE_LINUX","UNITY_STANDALONE","UNITY_STANDALONE_LINUX_API","ENABLE_RUNTIME_GI","ENABLE_MOVIES","ENABLE_NETWORK","ENABLE_CRUNCH_TEXTURE_COMPRESSION","ENABLE_CLUSTER_SYNC","ENABLE_CLUSTERINPUT","ENABLE_SPATIALTRACKING","ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES","ENABLE_MONO","NET_STANDARD_2_0","NET_STANDARD","NET_STANDARD_2_1","NETSTANDARD","NETSTANDARD2_1","ENABLE_PROFILER","DEBUG","TRACE","UNITY_ASSERTIONS","UNITY_EDITOR","UNITY_EDITOR_64","UNITY_EDITOR_LINUX","ENABLE_UNITY_COLLECTIONS_CHECKS","ENABLE_BURST_AOT","UNITY_TEAM_LICENSE","UNITY_PRO_LICENSE","ENABLE_CUSTOM_RENDER_TEXTURE","ENABLE_DIRECTOR","ENABLE_LOCALIZATION","ENABLE_SPRITES","ENABLE_TERRAIN","ENABLE_TILEMAP","ENABLE_TIMELINE","ENABLE_LEGACY_INPUT_MANAGER","TEXTCORE_FONT_ENGINE_1_5_OR_NEWER","PACKAGE_PHYSICS","PACKAGE_PHYSICS2D","PACKAGE_TILEMAP","PACKAGE_ANIMATION","PACKAGE_UITOOLKIT","CSHARP_7_OR_LATER","CSHARP_7_3_OR_NEWER"],"PrebuiltReferences":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/log4netPlastic.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Packages/com.unity.visualscripting/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll","Packages/com.unity.collab-proxy/Lib/Editor/PlasticSCM/unityplastic.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll"],"References":[],"AllowUnsafeCode":false,"RuleSet":"","AnalyzerConfigPath":"","LanguageVersion":"9.0","UseDeterministicCompilation":true,"SuppressCompilerWarnings":true,"Analyzers":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll"],"AdditionalFiles":[],"Asmdef":"Packages/com.unity.ugui/Runtime/UnityEngine.UI.asmdef","BclDirectories":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx"],"CustomCompilerOptions":["/nowarn:0169","/nowarn:0649","/nowarn:0282","/nowarn:1701","/nowarn:1702"],"DebugIndex":29,"SkipCodeGen":false,"Path":"/home/andrew/My project (1)"}],"DotnetRuntimePath":"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime","DotnetRoslynPath":"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn","MovedFromExtractorPath":"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll","OutputDirectory":"Library/ScriptAssemblies","Debug":false,"BuildTarget":"StandaloneLinux64","Localization":"en-US","BuildPlayerDataOutput":"Library/BuildPlayerData/Editor","ExtractRuntimeInitializeOnLoads":false,"EnableDiagnostics":false,"EmitInfoForScriptUpdater":true,"AssembliesToScanForTypeDB":["Library/ScriptAssemblies/Assembly-CSharp.dll","Library/ScriptAssemblies/Unity.TextMeshPro.dll","Library/ScriptAssemblies/Unity.Timeline.dll","Library/ScriptAssemblies/Unity.VisualScripting.Core.dll","Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll","Library/ScriptAssemblies/Unity.VisualScripting.State.dll","Library/ScriptAssemblies/UnityEngine.TestRunner.dll","Library/ScriptAssemblies/UnityEngine.UI.dll","Packages/com.unity.ext.nunit/net40/unity-custom/nunit.framework.dll","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator/ReportGeneratorMerged.dll","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll"],"SearchPaths":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0","Library/ScriptAssemblies","Packages/com.unity.ext.nunit/net40/unity-custom","Packages/com.unity.testtools.codecoverage/lib/ReportGenerator","Packages/com.unity.visualscripting/Runtime/VisualScripting.Flow/Dependencies/NCalc"]}} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag new file mode 100644 index 00000000..448a66b8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag.json b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag.json new file mode 100644 index 00000000..33892185 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag.json @@ -0,0 +1,39561 @@ +{ + "Nodes": [ + { + "Annotation": "all_tundra_nodes", + "DisplayName": null, + "Inputs": [], + "InputFlags": [], + "Outputs": [], + "OutputFlags": [], + "ToBuildDependencies": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378 + ], + "DebugActionIndex": 0 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.UnityAdditionalFile.txt", + "DisplayName": "Writing UnityEngine.TestRunner.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 107, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 1 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp", + "DisplayName": "Writing UnityEngine.TestRunner.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 227, + "PayloadLength": 45556, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 2 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp2", + "DisplayName": "Writing UnityEngine.TestRunner.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 45877, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 3 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll (+2 others)", + "DisplayName": "Compiling C# (UnityEngine.TestRunner)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/AssemblyInfo.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/AllocatingGCMemoryConstraint.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/InvalidSignatureException.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/Is.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/LogAssert.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/LogScope/LogScope.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/OutOfOrderExpectedLogMessageException.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/ActionDelegator.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/ConditionalIgnoreAttribute.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestMustExpectAllLogsAttribute.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityPlatformAttribute.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTearDownAttribute.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandBase.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRepeatedTestCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRetryTestCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestState.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/IgnoreTest.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/IgnoreTestCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/ImmediateEnumerableCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/OuterUnityTestActionCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/RepeatCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/RetryCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/StrictCheckCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/TaskTestMethodCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/TestCommandPcHelper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/TimeoutCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/UnityTestMethodCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Filters/AssemblyNameFilter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Filters/FullNameFilter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/IAsyncTestAssemblyBuilder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/ITestSuiteModifier.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/OrderedTestSuiteModifier.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/DefaultTestWorkItem.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/FeatureFlags.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/PlaymodeWorkItemFactory.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/TestCommandBuilder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestExecutionContext.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/TestResultExtensions.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/Callbacks/PlayerQuitHandler.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRendererCallback.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/PlaymodeTestsControllerSettings.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/RemoteHelpers/IRemoteTestResultDataFactory.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/RemoteHelpers/PlayerConnectionMessageIds.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultData.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataFactory.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataWithTestData.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/RuntimeTestRunnerFilter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/SynchronousFilter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/TestEnumeratorWrapper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/TestListenerWrapper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/TestPlatform.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/TestTaskWrapper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/UnityTestProtocol/MessageForRetryRepeat.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/UnityTestProtocol/TestFinishMessage.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/UnityTestProtocol/TestStartedMessage.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/UnityTestProtocol/TestState.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyLoadProxy.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AssemblyProvider/IScriptingRuntimeProxy.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AssemblyProvider/PlayerTestAssemblyProvider.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AssemblyProvider/ScriptingRuntimeProxy.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AttributeHelper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/CoroutineRunner.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/IPostBuildCleanup.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/ITestRunCallback.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/MonoBehaviourTest/IMonoBehaviourTest.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/MonoBehaviourTest/MonoBehaviourTest.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/PrebuildSceneSetupAttribute.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/StacktraceFilter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/TestRunCallbackAttribute.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/TestRunCallbackListener.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/Utils.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/Vector2ComparerWithEqualsOperator.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/Vector3ComparerWithEqualsOperator.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/Vector4ComparerWithEqualsOperator.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/Vector4EqualityComparer.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.pdb", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 1, + 2, + 3, + 99 + ], + "ToUseDependencies": [ + 1, + 3 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 4 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 5 + }, + { + "Annotation": "ScriptAssemblies", + "DisplayName": null, + "Inputs": [], + "InputFlags": [], + "Outputs": [], + "OutputFlags": [], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 213, + 220, + 227, + 228, + 229, + 236, + 243, + 250, + 263, + 270, + 271, + 284, + 285, + 298, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376 + ], + "DebugActionIndex": 6 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 7 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 8 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 9 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 10 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 11 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 12 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 13 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 14 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 15 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 16 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 17 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 18 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 19 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 20 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 21 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 22 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 23 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 24 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 25 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 26 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 27 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 28 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 29 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 30 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 31 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 32 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 33 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 34 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 35 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 36 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 37 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 38 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 39 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 40 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 41 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 42 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 43 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 44 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 45 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 46 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 47 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 48 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 49 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 50 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 51 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 52 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 53 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 54 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 55 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 56 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 57 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 58 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 59 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 60 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 61 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 62 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 63 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 64 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 65 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 66 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 67 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 68 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 69 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 70 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 71 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 72 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 73 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 74 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 75 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 76 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 77 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 78 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 79 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 80 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 81 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 82 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 83 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 84 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 85 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 86 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 87 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 88 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 89 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 90 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 91 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 92 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 93 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 94 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 95 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 96 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 97 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp", + "DisplayName": "Writing UnityEngine.TestRunner.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 46020, + "PayloadLength": 7892, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 98 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 99 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt", + "DisplayName": "Writing UnityEngine.UI.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 54017, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 100 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp", + "DisplayName": "Writing UnityEngine.UI.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 54129, + "PayloadLength": 39595, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 101 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp2", + "DisplayName": "Writing UnityEngine.UI.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 93810, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 102 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll (+2 others)", + "DisplayName": "Compiling C# (UnityEngine.UI)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventData/AxisEventData.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventData/BaseEventData.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventData/PointerEventData.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventHandle.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventInterfaces.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventSystem.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventTrigger.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventTriggerType.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/ExecuteEvents.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/BaseInput.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/BaseInputModule.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/PointerInputModule.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/StandaloneInputModule.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/TouchInputModule.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/MoveDirection.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/RaycastResult.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/RaycasterManager.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/Raycasters/BaseRaycaster.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/Raycasters/Physics2DRaycaster.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/Raycasters/PhysicsRaycaster.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/UIBehaviour.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/UIElements/PanelEventHandler.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/UIElements/PanelRaycaster.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/Properties/AssemblyInfo.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Animation/CoroutineTween.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/AnimationTriggers.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Button.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/CanvasUpdateRegistry.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/ColorBlock.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Culling/ClipperRegistry.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Culling/Clipping.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Culling/IClipRegion.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Culling/RectangularVertexClipper.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/DefaultControls.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Dropdown.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/FontData.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/FontUpdateTracker.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Graphic.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/GraphicRaycaster.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/GraphicRebuildTracker.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/GraphicRegistry.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/IGraphicEnabledDisabled.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/IMask.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/IMaskable.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Image.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/InputField.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/AspectRatioFitter.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/CanvasScaler.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/ContentSizeFitter.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/GridLayoutGroup.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/HorizontalLayoutGroup.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/HorizontalOrVerticalLayoutGroup.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/ILayoutElement.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/LayoutElement.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/LayoutGroup.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/LayoutRebuilder.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/LayoutUtility.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/VerticalLayoutGroup.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Mask.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/MaskUtilities.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/MaskableGraphic.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/MaterialModifiers/IMaterialModifier.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Misc.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/MultipleDisplayUtilities.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Navigation.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/RawImage.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/RectMask2D.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/ScrollRect.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Scrollbar.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Selectable.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/SetPropertyUtility.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Slider.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/SpecializedCollections/IndexedSet.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/SpriteState.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/StencilMaterial.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Text.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Toggle.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/ToggleGroup.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Utility/ReflectionMethodsCache.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Utility/VertexHelper.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/BaseMeshEffect.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/IMeshModifier.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/Outline.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/PositionAsUV1.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/Shadow.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.pdb", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 100, + 101, + 102, + 118 + ], + "ToUseDependencies": [ + 100, + 102 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 103 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 104 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 105 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 106 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 107 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 108 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 109 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 110 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm\" \"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll\"", + "Inputs": [ + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 111 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm\" \"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll\"", + "Inputs": [ + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 112 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm\" \"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll\"", + "Inputs": [ + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 113 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm\" \"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll\"", + "Inputs": [ + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 114 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm\" \"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll\"", + "Inputs": [ + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 115 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm\" \"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll\"", + "Inputs": [ + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 116 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp", + "DisplayName": "Writing UnityEngine.UI.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 93945, + "PayloadLength": 9039, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 117 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 118 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.UnityAdditionalFile.txt", + "DisplayName": "Writing UnityEditor.TestRunner.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 103097, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 119 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp", + "DisplayName": "Writing UnityEditor.TestRunner.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 103217, + "PayloadLength": 54464, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 120 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp2", + "DisplayName": "Writing UnityEditor.TestRunner.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 157775, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 121 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll (+2 others)", + "DisplayName": "Compiling C# (UnityEditor.TestRunner)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/Analytics/AnalyticsReporter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/Analytics/AnalyticsTestCallback.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/Analytics/RunFinishedData.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/Analytics/TestTreeData.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/CallbacksDelegator.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/CallbacksDelegatorListener.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/CallbacksHolder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ExecutionSettings.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/Filter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ICallbacks.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ICallbacksDelegator.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ICallbacksHolder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/IErrorCallbacks.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ITestAdaptor.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ITestAdaptorFactory.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ITestResultAdaptor.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ITestRunSettings.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ITestRunnerApi.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ITestTreeRebuildCallbacks.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/IgnoreTest.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/RunState.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/TestAdaptor.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/TestAdaptorFactory.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/TestMode.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/TestResultAdaptor.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/TestRunProgress.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/TestRunnerApi.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/TestStatus.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/AssemblyInfo.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineParser/CommandLineOption.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineParser/CommandLineOptionSet.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/Executer.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/ExecutionSettings.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/IExecuter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/IRunData.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/ISettingsBuilder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/LogSavingCallbacks.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/LogWriter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/ResultsSavingCallbacks.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/ResultsWriter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/RunData.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/RunSettings.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/RunStateCallbacks.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/SettingsBuilder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/SetupException.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/TestStarter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/TestState.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/AssetsDatabaseHelper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/GuiHelper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/IAssetsDatabaseHelper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/IGuiHelper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListBuilder/RenderingOptions.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListBuilder/ResultSummarizer.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListBuilder/TestFilterSettings.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListBuilder/TestTreeViewBuilder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListGuiHelper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListTreeView/Icons.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewDataSource.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewGUI.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListTreeView/TestTreeViewItem.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestRunnerResult.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestRunnerUIFilter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/UITestRunnerFilter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/Views/EditModeTestListGUI.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/Views/PlayModeTestListGUI.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/Views/TestListGUIBase.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/NUnitExtension/Attributes/AssetPipelineIgnore.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/NUnitExtension/Attributes/ITestPlayerBuildModifier.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/NUnitExtension/Attributes/TestPlayerBuildModifierAttribute.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/NUnitExtension/TestRunnerStateSerializer.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/RequireApiProfileAttribute.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/RequirePlatformSupportAttribute.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestBuildAssemblyFilter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/EditModeLauncherContextSettings.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/Helpers/AttributeFinderBase.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/Helpers/DelayedCallback.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/Helpers/FilePathMetaInfo.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/Helpers/PlayerLauncherBuildOptions.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/Helpers/PostbuildCleanupAttributeFinder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/Helpers/PrebuildSetupAttributeFinder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/AndroidPlatformSetup.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/ApplePlatformSetup.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/IPlatformSetup.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/LuminPlatformSetup.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/PlatformSpecificSetup.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/StadiaPlatformSetup.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/SwitchPlatformSetup.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/UwpPlatformSetup.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/XboxOnePlatformSetup.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlayerLauncher.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherContextSettings.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherTestRunSettings.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlaymodeLauncher.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/RemotePlayerLogController.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/RemotePlayerTestController.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/RuntimeTestLauncherBase.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/TestLauncherBase.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestResultSerializer.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Data/RunProgress.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Data/TaskInfo.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Data/TaskMode.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Data/TestJobData.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Data/TestProgress.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/ITestJobDataHolder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/ITestJobRunner.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/RequiredTestRunDataMissingException.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/TaskList.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/BuildActionTaskBase.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/BuildTestTreeTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/CleanUpContext.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/CleanupConstructDelegatorTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/CleanupVerificationTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/EditModeRunTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/EnableTestOutLoggerTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Events/CreateEventsTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Events/RegisterCallbackDelegatorEventsTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Events/RegisterTestRunCallbackEventsTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Events/RunFinishedInvocationEvent.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Events/RunStartedInvocationEvent.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Events/UpdateTestProgressTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/FileCleanupVerifierTaskBase.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/GenerateContextTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/InitializeTestProgressTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayModeRunTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayerRunTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/PerformUndoTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/PostbuildCleanupTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/PrebuildSetupTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/RegisterFilesForCleanupVerificationTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/SaveUndoIndexTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/CreateNewSceneTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/ISceneWrapper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/ReloadModifiedScenesTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/RemoveAdditionalUntitledSceneTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/RestoreSceneSetupTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/SaveModifiedSceneTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/SaveSceneSetupTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/SceneWrapper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/SetupConstructDelegatorTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/TestTaskBase.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/UnlockReloadAssembliesTask.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/TestJobDataHolder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/TestJobRunner.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/TestRunCanceledException.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Callbacks/TestRunnerCallback.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdater.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdaterDataHolder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/EditModePCHelper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/EditModeRunner.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/EditmodeWorkItemFactory.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/EditorEnumeratorTestWorkItem.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/EnumeratorStepHelper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Messages/EnterPlayMode.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Messages/ExitPlayMode.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Messages/RecompileScripts.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Messages/WaitForDomainReload.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/CachingTestListProvider.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/EditorAssembliesProxy.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/EditorAssemblyWrapper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/EditorCompilationInterfaceProxy.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/EditorLoadedTestAssemblyProvider.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/IEditorAssembliesProxy.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/IEditorCompilationInterfaceProxy.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/IEditorLoadedTestAssemblyProvider.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/ITestListCache.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/ITestListProvider.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/TestListCache.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/TestListCacheData.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/TestListJob.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/TestListProvider.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunnerWindow.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunnerWindowSettings.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestSettings/ITestSettings.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestSettings/ITestSettingsDeserializer.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestSettings/TestSettings.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestSettings/TestSettingsDeserializer.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/ITestRunnerApiMapper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/IUtpLogger.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/Message.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/TesRunDataHolder.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/TestFinishedMessage.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/TestRunData.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/TestRunnerApiMapper.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/TestStartedMessage.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/TestState.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolListener.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolStarter.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/UtpDebuglogger.cs", + "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/UtpMessageReporter.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.pdb", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 119, + 120, + 121, + 127 + ], + "ToUseDependencies": [ + 119, + 121 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 122 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 4 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 123 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 124 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 125 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp", + "DisplayName": "Writing UnityEditor.TestRunner.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 157918, + "PayloadLength": 8748, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 126 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 123, + 124, + 125, + 126 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 127 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt", + "DisplayName": "Writing UnityEditor.UI.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 166771, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 128 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp", + "DisplayName": "Writing UnityEditor.UI.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 166883, + "PayloadLength": 36820, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 129 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp2", + "DisplayName": "Writing UnityEditor.UI.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 203789, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 130 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll (+2 others)", + "DisplayName": "Compiling C# (UnityEditor.UI)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/EventSystem/EventSystemEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/EventSystem/EventTriggerEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/EventSystem/Physics2DRaycasterEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/EventSystem/PhysicsRaycasterEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/Properties/AssemblyInfo.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/AspectRatioFitterEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ButtonEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/CanvasScalerEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ContentSizeFitterEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/DropdownEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/GraphicEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/GridLayoutGroupEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/HorizontalOrVerticalLayoutGroupEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ImageEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/InputFieldEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/InterceptedEventsPreview.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/LayoutElementEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/LayoutPropertiesPreview.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/MaskEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/MenuOptions.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PrefabLayoutRebuilder.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/AnimationTriggersDrawer.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/ColorBlockDrawer.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/DropdownOptionListDrawer.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/FontDataDrawer.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/NavigationDrawer.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/SpriteStateDrawer.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/RawImageEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/RectMask2DEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ScrollRectEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ScrollbarEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/SelectableEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/SelfControllerEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/SliderEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/SpriteDrawUtility.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/TextEditor.cs", + "Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ToggleEditor.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.pdb", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 128, + 129, + 130, + 135 + ], + "ToUseDependencies": [ + 128, + 130 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 131 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 122 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 132 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 103 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 133 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp", + "DisplayName": "Writing UnityEditor.UI.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 203924, + "PayloadLength": 9438, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 134 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 134 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 135 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.EditorCoroutines.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 213482, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 136 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp", + "DisplayName": "Writing Unity.EditorCoroutines.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 213609, + "PayloadLength": 34274, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 137 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp2", + "DisplayName": "Writing Unity.EditorCoroutines.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 247984, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 138 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.EditorCoroutines.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.editorcoroutines@1.0.0/Editor/EditorCoroutine.cs", + "Library/PackageCache/com.unity.editorcoroutines@1.0.0/Editor/EditorCoroutineUtility.cs", + "Library/PackageCache/com.unity.editorcoroutines@1.0.0/Editor/EditorWaitForSeconds.cs", + "Library/PackageCache/com.unity.editorcoroutines@1.0.0/Editor/EditorWindowCoroutineExtension.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 136, + 137, + 138, + 142 + ], + "ToUseDependencies": [ + 136, + 138 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 139 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 131 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 140 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.EditorCoroutines.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 248134, + "PayloadLength": 9513, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 141 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 141 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 142 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.Performance.Profile-Analyzer.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 257779, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 143 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp", + "DisplayName": "Writing Unity.Performance.Profile-Analyzer.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 257918, + "PayloadLength": 37018, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 144 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp2", + "DisplayName": "Writing Unity.Performance.Profile-Analyzer.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 295049, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 145 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.Performance.Profile-Analyzer.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/Analytics.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/AssemblyInfo.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/BoxAndWhiskerPlot.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/Columns.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ComparisonTable.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/DepthSliceDropdown.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/DepthSliceUI.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/Draw2D.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/FrameSummary.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/FrameTime.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/FrameTimeGraph.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/Histogram.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/MarkerColumnFilter.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/MarkerData.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/MarkerPairing.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfileAnalysis.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfileAnalyzer.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfileAnalyzerExportWindow.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfileAnalyzerWindow.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfileData.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfileDataView.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfileTable.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfilerWindowInterface.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProgressBarDisplay.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ThreadData.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ThreadFrameTime.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ThreadIdentifier.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ThreadSelection.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ThreadSelectionWindow.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/TimingOptions.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/TopMarkerList.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/TopMarkers.cs", + "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/Units.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 143, + 144, + 145, + 148 + ], + "ToUseDependencies": [ + 143, + 145 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 146 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 295211, + "PayloadLength": 9513, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 147 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 147 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 148 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.PlasticSCM.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 304838, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 149 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp", + "DisplayName": "Writing Unity.PlasticSCM.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 304959, + "PayloadLength": 63874, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 150 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp2", + "DisplayName": "Writing Unity.PlasticSCM.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 368928, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 151 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.PlasticSCM.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/ApplicationDataPath.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssemblyInfo.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetFilesFilterPatternsMenuBuilder.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuItems.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuOperations.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetOperations.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetsSelection.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialogOperations.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/ProjectViewAssetSelection.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/AssetStatus.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/AssetStatusCache.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/BuildPathDictionary.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LocalStatusCache.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LockStatusCache.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/RemoteStatusCache.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/SearchLocks.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/DrawAssetOverlay.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/AssetsPath.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/GetSelectedPaths.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/LoadAsset.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetModificationProcessor.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetPostprocessor.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetsProcessor.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/PlasticAssetsProcessor.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/WorkspaceOperationsMonitor.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/ProjectPath.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RefreshAsset.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RepaintInspector.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/SaveAssets.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AutoRefresh.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CheckWorkspaceTreeNodeStatus.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CloudProjectDownloader.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CommandLineArguments.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/DownloadRepositoryOperation.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/ParseArguments.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrateCollabProject.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationProgressRender.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabPlugin.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/AutoConfig.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/ChannelCertificateUiImpl.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/AutoLogin.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/CloudEditionWelcomeWindow.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/OrganizationPanel.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/SignInPanel.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/SignInWithEmailPanel.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/WaitingSignInPanel.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/ConfigurePartialWorkspace.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CredentialsDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CredentialsUIImpl.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/EncryptionConfigurationDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/MissingEncryptionPasswordPromptHandler.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/SSOCredentialsDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/TeamEdition/TeamEditionConfigurationWindow.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/ToolConfig.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/WriteLogConfiguration.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/CheckinProgress.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/GenericProgress.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/IncomingChangesNotifier.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/ProgressOperationHandler.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/UpdateProgress.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportLineListViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportListHeaderState.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportListView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/DrawGuiModeSwitcher.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/EnumExtensions.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/FindWorkspace.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/GetRelativePath.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/CheckinProgress.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/IncomingChangesNotifier.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/ProgressOperationHandler.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/UpdateProgress.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/UpdateReport/ErrorListViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/UpdateReport/UpdateReportDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/UpdateReport/UpdateReportListHeaderState.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/UpdateReport/UpdateReportListView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/BuildFormattedHelp.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/DrawHelpPanel.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/HelpData.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/HelpFormat.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/HelpLink.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/HelpLinkData.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/HelpPanel.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/TestingHelpData.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Inspector/DrawInspectorOperations.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Inspector/InspectorAssetSelection.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/MetaPath.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/NewIncomingChanges.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/ParentWindow.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticApp.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticConnectionMonitor.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticMenuItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticNotification.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticPlugin.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticPluginIsEnabledPreference.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticProjectSettingsProvider.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticWindow.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/ProjectWindow.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/QueryVisualElementsExtensions.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/SceneView/DrawSceneOperations.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/SetupCloudProjectId.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/SwitchModeConfirmationDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Tool/BringWindowToFront.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Tool/FindTool.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Tool/IsExeAvailable.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Tool/LaunchInstaller.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Tool/LaunchTool.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Tool/ToolConstants.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Avatar/ApplyCircleMask.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Avatar/AvatarImages.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Avatar/GetAvatar.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/BoolSetting.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/CloseWindowIfOpened.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/CooldownWindowDelayer.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DockEditorWindow.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DrawActionButton.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DrawActionHelpBox.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DrawActionToolbar.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DrawSearchField.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DrawSplitter.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DrawTextBlockWithEndLink.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DrawUserIcon.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DropDownTextField.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/EditorDispatcher.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/EditorProgressBar.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/EditorProgressControls.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/EditorVersion.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/EditorWindowFocus.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/EnumPopupSetting.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/FindEditorWindow.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/GUIActionRunner.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/GUISpace.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/GetPlasticShortcut.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/GuiEnabled.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/HandleMenuItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Images.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/MeasureMaxWidth.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Message/DrawDialogIcon.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Message/PlasticQuestionAlert.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/OverlayRect.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/PlasticDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/PlasticSplitterGUILayout.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/DrawProgressForDialogs.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/DrawProgressForMigration.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/DrawProgressForOperations.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/DrawProgressForViews.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/OperationProgressData.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/ProgressControlsForDialogs.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/ProgressControlsForMigration.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/ProgressControlsForViews.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/ResponseType.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/RunModal.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/ScreenResolution.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/ShowWindow.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/SortOrderComparer.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/StatusBar/IncomingChangesNotification.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/StatusBar/NotificationBar.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/StatusBar/StatusBar.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/TabButton.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/DrawTreeViewEmptyState.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/DrawTreeViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/GetChangesOverlayIcon.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/ListViewItemIds.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/TableViewOperations.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/TreeHeaderColumns.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/TreeHeaderSettings.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/TreeViewItemIds.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UIElements/LoadingSpinner.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UIElements/ProgressControlsForDialogs.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UIElements/UIElementsExtensions.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UnityConstants.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UnityEvents.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UnityMenuItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UnityPlasticGuiMessage.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UnityPlasticTimer.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UnityStyles.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UnityThreadWaiter.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UnityConfigurationChecker.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/VCSPlugin.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/ViewSwitcher.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/BranchListViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/BranchesListHeaderState.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/BranchesListView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/BranchesSelection.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/BranchesTab.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/BranchesViewMenu.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/CreateBranchDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/Dialogs/RenameBranchDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/ChangesetListViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/ChangesetsListHeaderState.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/ChangesetsListView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/ChangesetsSelection.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/ChangesetsTab.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/ChangesetsTab_Operations.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/ChangesetsViewMenu.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/DateFilter.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/LaunchDiffOperations.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/ConfirmContinueWithPendingChangesDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/CreateWorkspaceView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/CreateWorkspaceViewState.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/CreateRepositoryDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoriesListHeaderState.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoriesListView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoryExplorerDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoryListViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/DrawCreateWorkspaceView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/ValidRepositoryName.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/ChangeCategoryTreeViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/ClientDiffTreeViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/Dialogs/GetRestorePathDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/DiffPanel.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/DiffSelection.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/DiffTreeView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/DiffTreeViewMenu.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/GetClientDiffInfos.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/MergeCategoryTreeViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/UnityDiffTree.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/DownloadPlasticExeWindow.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/FileSystemOperation.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/History/HistoryListHeaderState.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/History/HistoryListView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/History/HistoryListViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/History/HistoryListViewMenu.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/History/HistorySelection.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/History/HistoryTab.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/History/SaveAction.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/ChangeCategoryTreeViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/ChangeTreeViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/DirectoryConflicts/ConflictResolutionState.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/DirectoryConflicts/DrawDirectoryResolutionPanel.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesSelection.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesTab.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesTreeHeaderState.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesTreeView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesViewMenu.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/IsCurrent.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/IsResolved.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/UnityIncomingChangesTree.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/DrawIncomingChangesOverview.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/ChangeCategoryTreeViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/ChangeTreeViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/Errors/ErrorListViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/Errors/ErrorsListHeaderState.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/Errors/ErrorsListView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesSelection.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesTab.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesTreeHeaderState.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesTreeView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesViewMenu.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/UnityIncomingChangesTree.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/IIncomingChangesTab.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/ChangeCategoryTreeViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/ChangeTreeViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/ChangelistTreeViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Changelists/ChangelistMenu.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Changelists/MoveToChangelistMenuBuilder.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/CheckinConflictsDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/CreateChangelistDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/DependenciesDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/EmptyCheckinMessageDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/FilterRulesConfirmationDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/LaunchCheckinConflictsDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/LaunchDependenciesDialog.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/DrawCommentTextArea.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/FilesFilterPatternsMenuBuilder.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesMultiColumnHeader.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesSelection.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTab.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTab_Operations.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTreeHeaderState.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTreeView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesViewMenu.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesViewPendingChangeMenu.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingMergeLinks/MergeLinkListViewItem.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingMergeLinks/MergeLinksListView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/UnityPendingChangesTree.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Welcome/DownloadAndInstallOperation.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Welcome/GetInstallerTmpFileName.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Welcome/MacOSConfigWorkaround.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Welcome/WelcomeView.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/VisualElementExtensions.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WebApi/ChangesetFromCollabCommitResponse.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WebApi/CredentialsResponse.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WebApi/CurrentUserAdminCheckResponse.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WebApi/IsCollabProjectMigratedResponse.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WebApi/OrganizationCredentials.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WebApi/TokenExchangeResponse.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WebApi/WebRestApiClient.cs", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WorkspaceWindow.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 149, + 150, + 151, + 154 + ], + "ToUseDependencies": [ + 149, + 151 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 152 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.PlasticSCM.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 369072, + "PayloadLength": 9067, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 153 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 112, + 123, + 124, + 125, + 132, + 133, + 140, + 153 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 154 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.Rider.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 378248, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 155 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp", + "DisplayName": "Writing Unity.Rider.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 378364, + "PayloadLength": 36352, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 156 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp2", + "DisplayName": "Writing Unity.Rider.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 414806, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 157 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.Rider.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Discovery.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/EditorPluginInterop.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/LoggingLevel.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/PluginSettings.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/PostProcessors/RiderAssetPostprocessor.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/AssemblyNameProvider.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/FileIOProvider.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/GUIDProvider.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/IAssemblyNameProvider.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/IFileIO.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/IGUIDGenerator.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/IGenerator.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/LastWriteTracker.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/PackageManagerTracker.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/ProjectGeneration.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/ProjectGenerationFlag.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/ProjectPart.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/SolutionGuidGenerator.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Properties/AssemblyInfo.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/RiderInitializer.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/RiderScriptEditor.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/RiderScriptEditorData.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/RiderScriptEditorDataPersisted.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/RiderStyles.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/StartUpMethodExecutor.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/UnitTesting/CallbackData.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/UnitTesting/CallbackInitializer.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/UnitTesting/RiderTestRunner.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/UnitTesting/SyncTestRunCallback.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/UnitTesting/SyncTestRunEventsHandler.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/UnitTesting/TestEvent.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/UnitTesting/TestsCallback.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Util/CommandLineParser.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Util/FileSystemUtil.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Util/LibcNativeInterop.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Util/RiderMenu.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Util/RiderPathUtil.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Util/SerializableVersion.cs", + "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Util/StringUtils.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 155, + 156, + 157, + 160 + ], + "ToUseDependencies": [ + 155, + 157 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 158 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.Rider.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 414945, + "PayloadLength": 8981, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 159 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 123, + 124, + 125, + 132, + 133, + 140, + 159 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 160 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.Settings.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 424038, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 161 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp", + "DisplayName": "Writing Unity.Settings.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 424157, + "PayloadLength": 34981, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 162 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp2", + "DisplayName": "Writing Unity.Settings.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 459231, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 163 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.Settings.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/Attributes.cs", + "Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/FileSettingsRepository.cs", + "Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/ISettingsRepository.cs", + "Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/PackageSettingsRepository.cs", + "Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/ProjectUserSettings.cs", + "Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/Settings.cs", + "Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/SettingsDictionary.cs", + "Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/SettingsGUILayout.cs", + "Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/UserSetting.cs", + "Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/UserSettings.cs", + "Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/UserSettingsProvider.cs", + "Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/UserSettingsRepository.cs", + "Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/ValueWrapper.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 161, + 162, + 163, + 166 + ], + "ToUseDependencies": [ + 161, + 163 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 164 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.Settings.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 459373, + "PayloadLength": 9513, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 165 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 165 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 166 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.SysrootPackage.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 469004, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 167 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp", + "DisplayName": "Writing Unity.SysrootPackage.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 469129, + "PayloadLength": 34125, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 168 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp2", + "DisplayName": "Writing Unity.SysrootPackage.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 503353, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 169 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.SysrootPackage.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.sysroot@2.0.7/Editor/AssemblyInfo.cs", + "Library/PackageCache/com.unity.sysroot@2.0.7/Editor/NiceIO.cs", + "Library/PackageCache/com.unity.sysroot@2.0.7/Editor/Unity.SysrootPackage.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 167, + 168, + 169, + 172 + ], + "ToUseDependencies": [ + 167, + 169 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 170 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.SysrootPackage.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 503501, + "PayloadLength": 9513, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 171 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 171 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 172 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 513156, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 173 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp", + "DisplayName": "Writing Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 513305, + "PayloadLength": 35740, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 174 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp2", + "DisplayName": "Writing Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 549168, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 175 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.TestTools.CodeCoverage.Editor.OpenCover.Model)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/BranchPoint.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/Class.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/CoverageSession.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/File.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/HelperExtensions.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/IDocumentReference.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/InstrumentationPoint.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/Method.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/Module.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/SequencePoint.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/SkippedEntity.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/SkippedMethod.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/Summary.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/SummarySkippedEntity.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/TrackedMethod.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 173, + 174, + 175, + 178 + ], + "ToUseDependencies": [ + 173, + 175 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 176 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 549340, + "PayloadLength": 9513, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 177 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 177 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 178 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 559005, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 179 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp", + "DisplayName": "Writing Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 559164, + "PayloadLength": 34524, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 180 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp2", + "DisplayName": "Writing Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 593821, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 181 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Mono.Reflection/ByteBuffer.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Mono.Reflection/Disassembler.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Mono.Reflection/Instruction.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Mono.Reflection/MethodBodyReader.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 179, + 180, + 181, + 184 + ], + "ToUseDependencies": [ + 179, + 181 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 182 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 594003, + "PayloadLength": 9513, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 183 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 183 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 184 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.TextMeshPro.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 603624, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 185 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp", + "DisplayName": "Writing Unity.TextMeshPro.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 603739, + "PayloadLength": 37712, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 186 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp2", + "DisplayName": "Writing Unity.TextMeshPro.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 641540, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 187 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.TextMeshPro)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/AssemblyInfo.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/FastAction.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/ITextPreProcessor.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/MaterialReferenceManager.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Asset.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Character.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_CharacterInfo.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ColorGradient.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Compatibility.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_CoroutineTween.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_DefaultControls.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Dropdown.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_EditorResourceManager.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontAsset.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontAssetCommon.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontAssetUtilities.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontFeatureTable.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontFeaturesCommon.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_InputField.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_InputValidator.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_LineInfo.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ListPool.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_MaterialManager.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_MeshInfo.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ObjectPool.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_PackageResourceImporter.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ResourcesManager.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_RichTextTagsCommon.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ScrollbarEventHandler.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SelectionCaret.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Settings.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ShaderUtilities.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Sprite.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteAnimator.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteAsset.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteAssetImportFormats.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteCharacter.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteGlyph.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Style.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_StyleSheet.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SubMesh.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SubMeshUI.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Text.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextElement.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextElement_Legacy.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextInfo.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextParsingUtilities.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextProcessingStack.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextUtilities.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_UpdateManager.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_UpdateRegistery.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_EventManager.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_ExtensionMethods.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_MeshUtilities.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_Private.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_UGUI_Private.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TextContainer.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TextMeshPro.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TextMeshProUGUI.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 103, + 131, + 185, + 186, + 187, + 190 + ], + "ToUseDependencies": [ + 185, + 187 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 188 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.TextMeshPro.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 641678, + "PayloadLength": 9189, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 189 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 133, + 140, + 189 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 190 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.Timeline.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 650972, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 191 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp", + "DisplayName": "Writing Unity.Timeline.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 651084, + "PayloadLength": 38781, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 192 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp2", + "DisplayName": "Writing Unity.Timeline.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 689951, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 193 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.Timeline)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Activation/ActivationMixerPlayable.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Activation/ActivationPlayableAsset.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Activation/ActivationTrack.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Animation/AnimationOutputWeightProcessor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Animation/AnimationPlayableAsset.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Animation/AnimationPreviewUpdateCallback.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Animation/AnimationTrack.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Animation/ICurvesOwner.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/AssetUpgrade/AnimationPlayableAssetUpgrade.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/AssetUpgrade/AnimationTrackUpgrade.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/AssetUpgrade/ClipUpgrade.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/AssetUpgrade/TimelineUpgrade.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/AssetUpgrade/TrackUpgrade.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Attributes/TimelineHelpURLAttribute.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Attributes/TrackColorAttribute.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Audio/AudioClipProperties.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Audio/AudioMixerProperties.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Audio/AudioPlayableAsset.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Audio/AudioTrack.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/ClipCaps.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Control/ControlPlayableAsset.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Control/ControlTrack.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/DiscreteTime.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Evaluation/InfiniteRuntimeClip.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Evaluation/IntervalTree.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Evaluation/RuntimeClip.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Evaluation/RuntimeClipBase.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Evaluation/RuntimeElement.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Evaluation/ScheduleRuntimeClip.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/IMarker.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/INotificationOptionProvider.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/Marker.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/MarkerList.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/MarkerTrack.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/SignalTrack.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/Signals/CustomSignalEventDrawer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/Signals/SignalAsset.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/Signals/SignalEmitter.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/Signals/SignalReceiver.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Extensions/TrackExtensions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/GroupTrack.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/ILayerable.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/ActivationControlPlayable.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/BasicScriptPlayable.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/DirectorControlPlayable.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/ITimeControl.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/NotificationFlags.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/ParticleControlPlayable.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/PrefabControlPlayable.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/TimeControlPlayable.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/TimeNotificationBehaviour.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Properties/AssemblyInfo.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Scripting/PlayableTrack.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Timeline.deprecated.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/TimelineAsset.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/TimelineAsset_CreateRemove.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/TimelineAttributes.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/TimelineClip.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/TimelinePlayable.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/TrackAsset.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/AnimationPreviewUtilities.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/AnimatorBindingCache.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/Extrapolation.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/FrameRate.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/HashUtility.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/IPropertyCollector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/IPropertyPreview.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/NotificationUtilities.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/TimeUtility.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/TimelineClipExtensions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/TimelineCreateUtilities.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/TimelineUndo.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/WeightUtility.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 103, + 131, + 191, + 192, + 193, + 196 + ], + "ToUseDependencies": [ + 191, + 193 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 194 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.Timeline.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 690086, + "PayloadLength": 9189, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 195 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 133, + 140, + 195 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 196 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.VisualScripting.Core.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 699392, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 197 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp", + "DisplayName": "Writing Unity.VisualScripting.Core.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 699516, + "PayloadLength": 86028, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 198 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp2", + "DisplayName": "Writing Unity.VisualScripting.Core.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 785642, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 199 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.VisualScripting.Core)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/AnimationCurveCloner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/ArrayCloner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/DictionaryCloner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/EnumerableCloner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/FakeSerializationCloner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/FieldsCloner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/ListCloner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/ReflectedCloner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloning.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/CloningContext.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/ICloner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/ISpecifiesCloner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/AotDictionary.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/AotList.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/DebugDictionary.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/FlexibleDictionary.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/GuidCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/IKeyedCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/IMergedCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/INotifiedCollectionItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/INotifyCollectionChanged.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/IProxyableNotifyCollectionChanged.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/ISet.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/MergedCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/MergedKeyedCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/MergedList.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/NoAllocEnumerator.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/NonNullableCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/NonNullableDictionary.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/NonNullableHashSet.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/NonNullableList.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/VariantCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/VariantList.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/WatchedList.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Connections/ConnectionCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Connections/ConnectionCollectionBase.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Connections/GraphConnectionCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Connections/IConnection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Connections/IConnectionCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Connections/InvalidConnectionException.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Decorators/IDecoratorAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Decorators/ValueAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/AssemblyQualifiedNameParser/ParsedAssemblyQualifiedName.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/AnimationCurve_DirectConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/Bounds_DirectConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/GUIStyleState_DirectConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/GUIStyle_DirectConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/Gradient_DirectConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/InputAction_DirectConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/Keyframe_DirectConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/LayerMask_DirectConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/RectOffset_DirectConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/Rect_DirectConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/UnityEvent_Converter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsArrayConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsDateConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsDictionaryConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsEnumConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsForwardConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsGuidConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsIEnumerableConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsKeyValuePairConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsNullableConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsPrimitiveConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsReflectedConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsTypeConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsWeakReferenceConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsCyclicReferenceManager.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsPortableReflection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsTypeExtensions.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsVersionManager.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsVersionedType.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Reflection/fsMetaProperty.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Reflection/fsMetaType.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Reflection/fsReflectionUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Reflection/fsTypeCache.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsAotCompilationManager.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsBaseConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsConfig.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsContext.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsConverterRegistrar.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsDirectConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsExceptions.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsISerializationCallbacks.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsIgnoreAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsJsonParser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsJsonPrinter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsMemberSerialization.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsObjectAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsObjectProcessor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsPropertyAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsResult.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsSerializer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/AllowsNullAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/DisableAnnotationAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/EditorBindingUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/EditorTimeBinding.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/ExpectedTypeAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/IInspectableAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/IncludeInSettingsAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/InspectableAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/InspectableIfAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectViaImplementationsAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorActionDirectionAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorAdaptiveWidthAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorDelayedAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorExpandTooltipAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorLabelAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorRangeAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorTextAreaAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorToggleLeftAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorWideAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/NullMeansSelfAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/PredictableAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/TypeIconAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/TypeIconPriorityAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/TypeSetAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Typeset.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/WarnBeforeEditingAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/WarnBeforeRemovingAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/Ensure.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Booleans.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Collections.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Comparables.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Guids.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.NullableValueTypes.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Objects.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Reflection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Strings.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Types.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.ValueTypes.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/ExceptionMessages.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/Extensions/XComparable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/Extensions/XString.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/EmptyEventArgs.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/EventBus.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/EventHook.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/EventHookComparer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/EventHooks.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/EventMachine.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/FrameDelayedCallback.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/IEventGraph.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/IEventMachine.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/IGraphEventHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Exceptions/DebugUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Exceptions/InvalidConversionException.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Exceptions/InvalidImplementationException.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Exceptions/UnexpectedEnumValueException.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/Graph.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphDebugData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphElement.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphElementCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphInstances.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphNest.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphPointer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphPointerException.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphReference.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphSource.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphStack.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphsExceptionUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraph.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphDebugData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphElement.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphElementCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphElementData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphElementDebugData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphElementWithData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphElementWithDebugData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphNest.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphNester.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphNesterElement.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphParent.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphParentElement.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphRoot.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/MergedGraphElementCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Groups/GraphGroup.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Input/MouseButton.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Input/PressState.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/AnimatorMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/GlobalMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/IGraphEventListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/IGraphEventListenerData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnBecameInvisibleMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnBecameVisibleMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionEnter2DMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionEnterMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionExit2DMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionExitMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionStay2DMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionStayMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnControllerColliderHitMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnJointBreak2DMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnJointBreakMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseDownMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseDragMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseEnterMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseExitMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseOverMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseUpAsButtonMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseUpMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnParticleCollisionMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTransformChildrenChangedMListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTransformParentChangedMListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerEnter2DMListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerEnterMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerExit2DMListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerExitMListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerStay2DMListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerStayMListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnButtonClickMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnDropdownValueChangedMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnInputFieldEndEditMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnInputFieldValueChangedMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnScrollRectValueChangedMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnScrollbarValueChangedMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnSliderValueChangedMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnToggleValueChangedMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnBeginDragMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnCancelMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnDeselectMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnDragMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnDropMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnEndDragMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnMoveMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerClickMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerDownMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerEnterMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerExitMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerUpMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnScrollMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnSelectMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnSubmitMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UnityMessageListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Machines/IMachine.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Machines/Machine.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Macros/IMacro.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Macros/Macro.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Platforms/AotIncompatibleAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Platforms/IAotStubbable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Platforms/PlatformUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Pooling/ArrayPool.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Pooling/DictionaryPool.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Pooling/GenericPool.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Pooling/HashSetPool.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Pooling/IPoolable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Pooling/ListPool.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Pooling/ManualPool.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Profiling/ProfiledSegment.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Profiling/ProfiledSegmentCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Profiling/ProfilingScope.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Profiling/ProfilingUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Properties/AssemblyInfo.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/ActionDirection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/AttributeUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/ConversionUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/GenericClosingException.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/IAttributeProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/IPrewarmable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/LooseAssemblyName.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Member.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/MemberFilter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/MemberInfoComparer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/MemberUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Namespace.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/AdditionHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/AmbiguousOperatorException.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/AndHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/BinaryOperator.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/BinaryOperatorHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/DecrementHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/DivisionHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/EqualityHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/ExclusiveOrHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/GreaterThanHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/GreaterThanOrEqualHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/IncrementHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/InequalityHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/InvalidOperatorException.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/LeftShiftHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/LessThanHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/LessThanOrEqualHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/LogicalNegationHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/ModuloHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/MultiplicationHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/NumericNegationHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/OperatorException.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/OperatorHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/OperatorUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/OrHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/PlusHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/RightShiftHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/SubtractionHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/UnaryOperator.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/UnaryOperatorHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/Action_5.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/Action_6.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/Func_5.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/Func_6.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/IOptimizedAccessor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/IOptimizedInvoker.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvokerBase.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_5.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFieldAccessor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvokerBase.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_5.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceInvokerBase.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstancePropertyAccessor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InvokerBase.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/OptimizedReflection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/ReflectionFieldAccessor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/ReflectionInvoker.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/ReflectionPropertyAccessor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvokerBase.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_5.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFieldAccessor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvokerBase.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_5.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticInvokerBase.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticPropertyAccessor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/RenamedAssemblyAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/RenamedFromAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/RenamedNamespaceAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/RuntimeCodebase.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/TypeFilter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/TypeName.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/TypeNameDetail.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/TypeQualifier.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/TypeUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/TypesMatching.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/Converters/LooseAssemblyNameConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/Converters/NamespaceConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/Converters/Ray2DConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/Converters/RayConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/Converters/UnityObjectConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/DictionaryAsset.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/DoNotSerializeAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/ISerializationDependency.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/ISerializationDepender.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/SerializableType.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/Serialization.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/SerializationData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/SerializationOperation.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/SerializationVersionAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/SerializeAsAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/SerializeAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/SerializedProperties/ISerializedPropertyProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/SerializedProperties/SerializedPropertyProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/SerializedProperties/SerializedPropertyProviderAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/StickyNote/StickyNote.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/IGizmoDrawer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/ISingleton.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/IUnityObjectOwnable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/LudiqBehaviour.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/LudiqScriptableObject.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/MacroScriptableObject.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/RequiresUnityAPIAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/SceneSingleton.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/Singleton.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/SingletonAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/UnityObjectOwnershipUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/UnityThread.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/CSharpNameUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/ComponentHolderProtocol.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/CoroutineRunner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/Empty.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/EnumUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/ExceptionUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/HashUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/IAnalyticsIdentifiable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/IGettable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/IIdentifiable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/IInitializable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/LinqUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/OverrideStack.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/Recursion.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/ReferenceCollector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/ReferenceEqualityComparer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/RuntimeVSUsageUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/StringUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/UnityObjectUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/XColor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/ApplicationVariables.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/IGraphDataWithVariables.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/IGraphWithVariables.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/InspectorVariableNameAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/ObjectVariables.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/SavedVariables.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/SceneVariables.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariableDeclaration.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariableDeclarationCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariableDeclarations.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariableDeclarationsCloner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariableKind.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariableKindAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/Variables.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariablesAsset.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariablesSaver.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 103, + 131, + 197, + 198, + 199, + 202 + ], + "ToUseDependencies": [ + 197, + 199 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 200 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.VisualScripting.Core.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 785789, + "PayloadLength": 9189, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 201 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 133, + 140, + 201 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 202 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.VisualStudio.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 795094, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 203 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp", + "DisplayName": "Writing Unity.VisualStudio.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 795217, + "PayloadLength": 36229, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 204 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp2", + "DisplayName": "Writing Unity.VisualStudio.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 831543, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 205 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.VisualStudio.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/AssemblyInfo.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/AsyncOperation.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Cli.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Discovery.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/FileUtility.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Image.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/KnownAssemblies.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/Deserializer.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/ExceptionEventArgs.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/Message.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/MessageEventArgs.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/MessageType.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/Messenger.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/Serializer.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/TcpClient.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/TcpListener.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/UdpSocket.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/ProcessRunner.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/ProjectGeneration/AssemblyNameProvider.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/ProjectGeneration/FileIOProvider.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/ProjectGeneration/GUIDProvider.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/ProjectGeneration/ProjectGeneration.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/ProjectGeneration/ProjectGenerationFlag.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/ProjectGeneration/ProjectProperties.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Solution.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/SolutionParser.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/SolutionProjectEntry.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/SolutionProperties.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Symbols.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Testing/TestAdaptor.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Testing/TestResultAdaptor.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Testing/TestRunnerApiListener.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Testing/TestRunnerCallbacks.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Testing/TestStatusAdaptor.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/UnityInstallation.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/UsageUtility.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/VersionPair.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/VisualStudioEditor.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/VisualStudioInstallation.cs", + "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/VisualStudioIntegration.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 203, + 204, + 205, + 208 + ], + "ToUseDependencies": [ + 203, + 205 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 206 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.VisualStudio.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 831689, + "PayloadLength": 8981, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 207 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 123, + 124, + 125, + 132, + 133, + 140, + 207 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 208 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.CollabProxy.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 840785, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 209 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp", + "DisplayName": "Writing Unity.CollabProxy.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 840907, + "PayloadLength": 34071, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 210 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp2", + "DisplayName": "Writing Unity.CollabProxy.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 875074, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 211 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.CollabProxy.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Toolbar/ToolbarButton.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 152, + 209, + 210, + 211, + 215 + ], + "ToUseDependencies": [ + 209, + 211 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 212 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_F0D9BA1F3F167740.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_F0D9BA1F3F167740.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_F0D9BA1F3F167740.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 152 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 213 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.CollabProxy.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 875219, + "PayloadLength": 9597, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 214 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_F0D9BA1F3F167740.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 213, + 214 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 215 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.Sysroot.Linux_x86_64.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 884933, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 216 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp", + "DisplayName": "Writing Unity.Sysroot.Linux_x86_64.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 885057, + "PayloadLength": 34070, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 217 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp2", + "DisplayName": "Writing Unity.Sysroot.Linux_x86_64.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 919225, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 218 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.Sysroot.Linux_x86_64)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.sysroot.linux-x86_64@2.0.6/Editor/Unity.Sysroot.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 170, + 216, + 217, + 218, + 222 + ], + "ToUseDependencies": [ + 216, + 218 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 219 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 170 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 220 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.Sysroot.Linux_x86_64.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 919372, + "PayloadLength": 9601, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 221 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 220, + 221 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 222 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.TestTools.CodeCoverage.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 929099, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 223 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp", + "DisplayName": "Writing Unity.TestTools.CodeCoverage.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 929232, + "PayloadLength": 38219, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 224 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp2", + "DisplayName": "Writing Unity.TestTools.CodeCoverage.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 967558, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 225 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.TestTools.CodeCoverage.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Analytics/CoverageAnalytics.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Analytics/CoverageAnalyticsEnums.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Analytics/CoverageAnalyticsEvent.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/AssemblyInfo.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CodeCoverage.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CommandLineManager.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CommandLineParser/CommandLineOption.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CommandLineParser/CommandLineOptionSet.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CommandLineParser/ICommandLineOption.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/CoverageFormat.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/CyclomaticComplexity.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/OpenCoverReporter.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/OpenCoverReporterFilter.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/OpenCoverReporterStyles.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/OpenCoverResultWriter.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoveragePreferences.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageReportType.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageReporterListener.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageReporterManager.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageResultWriterBase.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageRunData.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageSettings.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageStats/CoverageStats.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageStats/ICoverageStatsProvider.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/CodeCoverageWindow.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/FolderDropDownMenu.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/FolderType.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/IncludedAssembliesPopupWindow.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/IncludedAssembliesTreeView.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/PathFilterType.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/PathToAddDropDownMenu.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/PathToAddHandler.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Events/CoverageEventData.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Events/Events.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Events/SessionEventInfo.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Events/SessionMode.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Filtering/AssemblyFiltering.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Filtering/JsonFileFilterSchema.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Filtering/PathFiltering.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/ICoverageReporter.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/ICoverageReporterFilter.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Icons/EditorIcons.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Logging/LogVerbosityLevel.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Logging/ResultsLogger.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Replacing/PathReplacing.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/ReportGenerator/CoverageReportGenerator.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/ReportGenerator/ReportGeneratorStyles.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Utils/CoverageUtils.cs", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Utils/JsonUtils.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 164, + 176, + 182, + 223, + 224, + 225, + 231 + ], + "ToUseDependencies": [ + 223, + 225 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 226 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Settings.Editor.ref.dll_C5D459AC3FA0C65A.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.Settings.Editor.ref.dll_C5D459AC3FA0C65A.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.Settings.Editor.ref.dll_C5D459AC3FA0C65A.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 164 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 227 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll_74E155EA2BEE38FD.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll_74E155EA2BEE38FD.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll_74E155EA2BEE38FD.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 176 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 228 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll_3B45F137F1F80EEA.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll_3B45F137F1F80EEA.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll_3B45F137F1F80EEA.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 182 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 229 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.TestTools.CodeCoverage.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 967714, + "PayloadLength": 9297, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 230 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.Settings.Editor.ref.dll_C5D459AC3FA0C65A.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll_74E155EA2BEE38FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll_3B45F137F1F80EEA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 123, + 124, + 125, + 132, + 133, + 140, + 227, + 228, + 229, + 230 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 231 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.TextMeshPro.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 977126, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 232 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp", + "DisplayName": "Writing Unity.TextMeshPro.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 977248, + "PayloadLength": 38388, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 233 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp2", + "DisplayName": "Writing Unity.TextMeshPro.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 1015732, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 234 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.TextMeshPro.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/DropdownOptionListDrawer.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/GlyphInfoDrawer.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/GlyphMetricsPropertyDrawer.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/GlyphRectPropertyDrawer.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_BaseEditorPanel.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_BaseShaderGUI.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_BitmapShaderGUI.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_CharacterPropertyDrawer.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_ColorGradientAssetMenu.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_ColorGradientEditor.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_DropdownEditor.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_EditorCoroutine.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_EditorPanel.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_EditorPanelUI.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_EditorUtility.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_FontAssetEditor.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_FontAsset_CreationMenu.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_GlyphPairAdjustmentRecordPropertyDrawer.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_GlyphPropertyDrawer.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_InputFieldEditor.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_MeshRendererEditor.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_PackageUtilities.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_PostBuildProcessHandler.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_PreBuildProcessor.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_ProjectTextSettings.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_ResourcesLoader.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SDFShaderGUI.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SerializedPropertyHolder.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SettingsEditor.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteAssetEditor.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteAssetImporter.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteAssetMenu.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteCharacterPropertyDrawer.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteGlyphPropertyDrawer.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_StyleAssetMenu.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_StyleSheetEditor.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SubMeshUI_Editor.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SubMesh_Editor.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_TextAlignmentDrawer.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_UIStyleManager.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_ContextMenus.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_CreateObjectMenu.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_EditorShaderUtilities.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_FontAssetCreatorWindow.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_FontPlugin.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_SortingLayerHelper.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_TextContainerEditor.cs", + "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_TexturePostProcessor.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 188, + 232, + 233, + 234, + 238 + ], + "ToUseDependencies": [ + 232, + 234 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 235 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_8DB7A3E3632A4E05.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_8DB7A3E3632A4E05.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_8DB7A3E3632A4E05.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 188 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 236 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.TextMeshPro.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1015877, + "PayloadLength": 9591, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 237 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_8DB7A3E3632A4E05.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 236, + 237 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 238 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.Timeline.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 1025580, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 239 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp", + "DisplayName": "Writing Unity.Timeline.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1025699, + "PayloadLength": 57917, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 240 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp2", + "DisplayName": "Writing Unity.Timeline.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 1083709, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 241 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.Timeline.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/ActionContext.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/ActionManager.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/ClipAction.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/ClipsActions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/IAction.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/IMenuChecked.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/IMenuName.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/Invoker.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/MarkerAction.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/MarkerActions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/Menus/MenuItemActionBase.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/Menus/TimelineContextMenu.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/TimelineAction.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/TimelineActions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/TrackAction.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/TrackActions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Activation/ActivationTrackEditor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Activation/ActivationTrackInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Analytics/TimelineAnalytics.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/AnimationClipActions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/AnimationClipCurveCache.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/AnimationClipExtensions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/AnimationOffsetMenu.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/AnimationPlayableAssetEditor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/AnimationTrackActions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/BindingSelector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/BindingTreeViewDataSource.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/BindingTreeViewDataSourceGUI.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/ClipCurveEditor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/CurveDataSource.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/CurveTreeViewNode.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/CurvesProxy.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/TimelineAnimationUtilities.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Attributes/ActiveInModeAttribute.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Attributes/MenuEntryAttribute.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Attributes/ShortcutAttribute.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Attributes/TimelineShortcutAttribute.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Audio/AudioClipPropertiesDrawer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Audio/AudioPlayableAssetEditor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Audio/AudioPlayableAssetInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Audio/AudioTrackInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/ControlTrack/ControlPlayableAssetEditor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/CurveEditUtility.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/CustomEditors/ClipEditor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/CustomEditors/CustomTimelineEditorCache.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/CustomEditors/MarkerEditor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/CustomEditors/MarkerTrackEditor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/CustomEditors/TrackEditor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/DirectorNamedColor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/DirectorStyles.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Extensions/AnimatedParameterExtensions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Extensions/AnimationTrackExtensions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Extensions/TrackExtensions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Items/ClipItem.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Items/ITimelineItem.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Items/ItemsGroup.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Items/ItemsPerTrack.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Items/ItemsUtils.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Items/MarkerItem.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Localization/Localization.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/AddDelete/AddDeleteItemModeMix.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/AddDelete/AddDeleteItemModeReplace.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/AddDelete/AddDeleteItemModeRipple.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/AddDelete/IAddDeleteItemMode.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Cursors/TimelineCursors.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/EditMode.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/EditModeInputHandler.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/HeaderSplitterManipulator.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Move/IMoveItemMode.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Move/MoveItemHandler.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Move/MoveItemModeMix.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Move/MoveItemModeReplace.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Move/MoveItemModeRipple.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Move/MovingItems.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/EaseClip.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/Jog.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/MarkerHeaderTrackManipulator.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/RectangleSelect.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/RectangleTool.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/RectangleZoom.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/SelectAndMoveItem.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/TrackZoom.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/TrimClip.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/TimeAreaAutoPanner.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/TimeIndicator.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/TimelineClipGroup.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Trim/ITrimItemMode.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Trim/TrimItemModeMix.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Trim/TrimItemModeReplace.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Trim/TrimItemModeRipple.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/EditModeGUIUtils.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/EditModeMixUtils.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/EditModeReplaceUtils.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/EditModeRippleUtils.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/EditModeUtils.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/ManipulatorsUtils.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/PlacementValidity.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/MenuPriority.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Playables/ControlPlayableInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Properties/AssemblyInfo.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Recording/AnimationTrackRecorder.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Recording/TimelineRecording.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Recording/TimelineRecordingContextualResponder.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Recording/TimelineRecording_Monobehaviour.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Recording/TimelineRecording_PlayableAsset.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Recording/TrackAssetRecordingExtensions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Shortcuts.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalAssetInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalEmitterEditor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalEmitterInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalEventDrawer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalManager.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalReceiverHeader.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalReceiverInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalUtility.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/Styles.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/TreeView/SignalListFactory.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/TreeView/SignalReceiverItem.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/TreeView/SignalReceiverTreeView.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/State/ISequenceState.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/State/PlayRange.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/State/SequenceHierarchy.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/State/SequencePath.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/State/SequenceState.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/State/WindowState.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/TimelineEditor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/TimelineHelpers.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/TimelineSelection.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/TimelineUtility.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Tooltip.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Trackhead.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Undo/ApplyDefaultUndoAttribute.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Undo/UndoExtensions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Undo/UndoScope.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/UnityEditorInternals.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/AnimatedParameterCache.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/AnimatedParameterUtility.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/AnimatedPropertyUtility.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/BindingUtility.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/BreadcrumbDrawer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/ClipModifier.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Clipboard.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/ControlPlayableUtility.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/CustomTrackDrawerAttribute.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/DisplayNameHelper.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/FileUtility.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/FrameRateDisplayUtility.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Graphics.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/KeyTraverser.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/MarkerModifier.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/ObjectExtension.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/ObjectReferenceField.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/PropertyCollector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Range.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/GUIColorOverride.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/GUIGroupScope.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/GUIMixedValueScope.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/GUIViewportScope.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/HorizontalScope.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/IndentLevelScope.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/LabelWidthScope.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/PropertyScope.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/SequenceSelectorNameFormater.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/SpacePartitioner.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/StyleManager.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/StyleNormalColorOverride.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/TimeFormat.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/TimeReferenceUtility.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/TimelineKeyboardNavigation.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/TrackModifier.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/TrackResourceCache.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/TypeUtility.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/Modes/TimeReferenceMode.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/Modes/TimelineActiveMode.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/Modes/TimelineAssetEditionMode.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/Modes/TimelineDisabledMode.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/Modes/TimelineInactiveMode.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/Modes/TimelineMode.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/Modes/TimelineReadOnlyMode.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/OverlayDrawer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/PlaybackScroller.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/SequenceContext.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineEditorWindow.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineMarkerHeaderGUI.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineNavigator.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelinePlaybackControls.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindowAnalytics.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindowTimeControl.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_ActiveTimeline.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_Breadcrumbs.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_Duration.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_EditorCallbacks.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_Gui.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_HeaderGui.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_Manipulators.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_Navigator.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_PlayRange.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_PlayableLookup.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_PlaybackControls.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_PreviewPlayMode.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_Selection.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_StateChange.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_TimeArea.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_TimeCursor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_TrackGui.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/ViewModel/ScriptableObjectViewPrefs.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/ViewModel/TimelineAssetViewModel.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/ViewModel/TimelineAssetViewModel_versions.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/ViewModel/TimelineWindowViewPrefs.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/WindowConstants.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/AnimationPlayableAssetInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/AnimationTrackInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/BasicAssetInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/BuiltInCurvePresets.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/ClipInspector/ClipInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/ClipInspector/ClipInspectorCurveEditor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/ClipInspector/ClipInspectorSelectionInfo.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/CurvesOwner/CurvesOwnerInspectorHelper.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/CurvesOwner/ICurvesOwnerInspectorWrapper.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/DirectorNamedColorInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/EditorClip.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/EditorClipFactory.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/FrameRateDrawer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/GroupTrackInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/IInspectorChangeHandler.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/MarkerInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/TimeFieldDrawer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/TimelineAssetInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/TimelineInspectorUtility.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/TimelinePreferences.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/TimelineProjectSettings.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/TrackAssetInspector.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/AnimationTrackKeyDataSource.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Control.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/AnimationTrackDrawer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/ClipDrawer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/InfiniteTrackDrawer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/Layers/ClipsLayer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/Layers/ItemsLayer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/Layers/MarkersLayer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/TrackDrawer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/TrackItemsDrawer.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/IPropertyKeyDataSource.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/IRowGUI.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ItemGui/ISelectable.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ItemGui/TimelineClipGUI.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ItemGui/TimelineItemGUI.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ItemGui/TimelineMarkerClusterGUI.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ItemGui/TimelineMarkerGUI.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ManipulationsClips.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ManipulationsTimeline.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ManipulationsTracks.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Manipulator.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/PickerUtils.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Snapping/IAttractable.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Snapping/ISnappable.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Snapping/SnapEngine.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TimelineClipHandle.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TimelineClipUnion.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TimelineDataSource.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TimelineDragging.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TimelineTreeView.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TimelineTreeViewGUI.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TrackGui/InlineCurveEditor.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TrackGui/TimelineGroupGUI.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TrackGui/TimelineTrackBaseGUI.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TrackGui/TimelineTrackErrorGUI.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TrackGui/TimelineTrackGUI.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TrackGui/TrackResizeHandle.cs", + "Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TrackPropertyCurvesDataSource.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 194, + 239, + 240, + 241, + 245 + ], + "ToUseDependencies": [ + 239, + 241 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 242 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_5AB3C2EE9968C745.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_5AB3C2EE9968C745.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_5AB3C2EE9968C745.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 194 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 243 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.Timeline.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1083851, + "PayloadLength": 9588, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 244 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_5AB3C2EE9968C745.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 243, + 244 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 245 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.VisualScripting.Core.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 1093563, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 246 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp", + "DisplayName": "Writing Unity.VisualScripting.Core.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1093694, + "PayloadLength": 90471, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 247 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp2", + "DisplayName": "Writing Unity.VisualScripting.Core.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 1184270, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 248 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.VisualScripting.Core.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/Analyser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/AnalyserAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/AnalyserProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/Analysis.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/GraphElementAnalysis.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/IAnalyser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/IAnalysis.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/IGraphElementAnalysis.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analytics/Analytics.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analytics/AnalyticsUtilities.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analytics/HotkeyUsageAnalytics.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analytics/MigrationAnalytics.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analytics/NodeUsageAnalytics.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analytics/OnPreprocessBuildAnalytics.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analytics/OnPreprocessBuildAnalyticsEventHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/AssetBundleCreator.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Assignment/Assigner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Assignment/Assignment.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Assignment/AssignsAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Assignment/IAssigner.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/BoltGUI.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/BoltProduct.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/BoltStyles.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/AlignOperation.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/CanvasAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/CanvasControlScheme.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/CanvasProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/DistributeOperation.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/ICanvas.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/IGraphContextExtension.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/VisualScriptingCanvas.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/WidgetList.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphClipboard.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphContext.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphContextAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphContextExtension.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphContextExtensionAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphContextExtensionProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphContextMenuItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphContextProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphSelection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/IGraphContext.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Debugging/GraphDebugDataProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Decorators/MultiDecoratorProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Decorators/SingleDecoratorProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/ElementAdderMenuBuilder.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/ElementAdderMenuCommandAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/ElementAdderMeta.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/GenericElementAdderMenu.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/GenericElementAdderMenuBuilder.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/IElementAdder.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/IElementAdderMenu.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/IElementAdderMenuBuilder.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/IElementAdderMenuCommand.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/GenericListAdaptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/IReorderableListAdaptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/IReorderableListDropTarget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/Internal/GUIHelper.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/Internal/ReorderableListResources.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/Internal/SerializedPropertyUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListControl.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListEvents.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListFlags.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListGUI.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListStyles.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/SerializedPropertyAdaptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/SQLite/SQLite.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/GraphDescription.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/GraphDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/GraphElementDescription.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/GraphItemDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/GraphNesterDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/IGraphDescription.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/IGraphElementDescription.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/IMachineDescription.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/IMacroDescription.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/MachineDescription.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/MachineDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/MacroDescription.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/MacroDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Descriptors/Description.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Descriptors/Descriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Descriptors/DescriptorAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Descriptors/DescriptorProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Descriptors/IDescription.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Descriptors/IDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Documentation/DocumentationGenerator.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Documentation/XmlDocumentation.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Documentation/XmlDocumentationTags.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Exceptions/EditorDebugUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Exceptions/UnityEditorInternalException.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Graph/GraphGUI.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Graph/GraphPointerData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Graph/LudiqGraphsEditorUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/DraggedListItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/EditorAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/EditorProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/EventMachineEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/GraphEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/GraphElementEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/GraphInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/GraphNestEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/ImplementationInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/IndividualEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/IndividualPropertyDrawer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Inspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/InspectorAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/InspectorBlock.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/InspectorImplementationOrderAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/InspectorProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/InspectorUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/MachineEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/MacroEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/MetadataCollectionAdaptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/MetadataDictionaryAdaptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/MetadataListAdaptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/OptimizedEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/OptimizedPropertyDrawer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Other/DictionaryAssetEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Other/SemanticVersionInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/BoolInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/ByteInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/CharInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/ContinuousNumberDrawer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/DecimalInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/DiscreteNumberInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/DoubleInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/FloatInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/GuidInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/IntInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/LongInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/SbyteInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/ShortInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/StringInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/UintInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/UlongInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/UshortInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Reflection/LooseAssemblyNameInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Reflection/MemberInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Reflection/NamespaceInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Reflection/TypeInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Root/LudiqBehaviourEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Root/LudiqRootObjectEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Root/LudiqScriptableObjectEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/AutomaticReflectedInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/CustomPropertyDrawerInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/DictionaryInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/EnumInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/KeyValuePairInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/ListInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/NullableInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/ReflectedInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/SystemObjectInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/TypeHandleInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/UnknownEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/UnknownInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/AnimationCurveInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/BoundsInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/ColorInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/LayerMaskInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/QuaternionInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/Ray2DInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/RayInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/RectInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/UnityObjectInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/Vector2Inspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/Vector3Inspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/Vector4Inspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/VectorInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Annotations/AnnotationDisabler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Colors/ColorPalette.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Colors/ColorUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Colors/SkinnedColor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/DragAndDrop/DragAndDropUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/DragAndDrop/IDragAndDropHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Dropdowns/DropdownOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Dropdowns/DropdownSeparator.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Dropdowns/IDropdownOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Edge.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/EditorTexture.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/EventWrapper.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fonts/FontCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fonts/FontVariant.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fonts/FontWeight.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/ExtensibleFuzzyOptionTree.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyGroup.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyGroupOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionNode.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionTree.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionTreeExtensionAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionTreeExtensionProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyWindow.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/IFuzzyOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/IFuzzyOptionTree.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/NullOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Icons/IconSize.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Icons/Icons.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Icons/LanguageIconSet.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Licenses/License.CCA3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Licenses/License.Iconmonstr.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Licenses/License.MIT.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Licenses/License.MSPL.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/ListOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/LudiqGUI.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/LudiqGUIUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/LudiqStyles.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/SharedEditorTextureDictionary.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/TextureResolution.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/CastMetadata.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/DictionaryIndexMetadata.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/DictionaryKeyAtIndexMetadata.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/DictionaryValueAtIndexMetadata.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/EditorPrefMetadata.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/IndexMetadata.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/IndexerMetadata.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/MemberMetadata.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/Metadata.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/ObjectMetadata.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/PluginConfigurationItemMetadata.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/ProjectSettingMetadata.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/ProxyMetadata.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/RootMetadata.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/PackageEventListener.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/AccessorInfoStubWriter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/AotPreBuilder.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/AotStubWriter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/AotStubWriterAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/AotStubWriterProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/ConstructorInfoStubWriter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/EditorPlatformUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/FieldInfoStubWriter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/MemberInfoStubWriter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/MethodBaseStubWriter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/MethodInfoStubWriter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/PropertyInfoStubWriter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_AqnParser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_DeepCopy.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_DotNetZip.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_FatcowIcons.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_FullSerializer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_Iconmonstr.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_MD4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_ReorderableList.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_SQLite.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_YamlDotNet.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/BoltCore.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/BoltCoreConfiguration.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/BoltCoreManifest.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/BoltCoreMigration.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/BoltCorePaths.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/BoltCoreResources.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_0_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_3_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_13.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_5.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_5.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_6.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_3_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_3_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_11.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_12.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_13.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_5.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_6.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_7.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_8.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_9.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_0_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_0_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_0_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_0_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_1_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_1_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_1_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_1_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_2_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_2_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_2_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_2_4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_3_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_5.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_6.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_7.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_0_5_to_1_0_6.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_2_2_to_1_2_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_2_4_to_1_3_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_4_0_f5_to_1_4_0_f6.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_4_5_to_1_4_6.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_5_1_to_1_5_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_6_to_1_7.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_Asset_to_Package.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/NamingSchemePage.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/EditorPrefAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/IPluginLinked.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/IPluginModule.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/InitializeAfterPluginsAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/Plugin.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginAcknowledgement.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginChangelog.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginConfiguration.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginConfigurationItemAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginContainer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginDependencyAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginManifest.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginMigration.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginModuleAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginModuleDependencyAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginResources.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginRuntimeAssemblyAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginSavedVersionMigration.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/ProjectSettingAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Product/LudiqProduct.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Products/Product.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Products/ProductAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Products/ProductContainer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Properties/AssemblyInfo.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/Codebase.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/CodebaseSubset.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/DocumentedOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/EnumOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/EnumOptionTree.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/LooseAssemblyNameOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/LooseAssemblyNameOptionTree.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/MemberOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/MemberOptionTree.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/NamespaceOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/ParameterStringMode.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/TypeOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/TypeOptionTree.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/ResourceProviders/AssemblyResourceProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/ResourceProviders/AssetBundleResourceProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/ResourceProviders/CreateTextureOptions.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/ResourceProviders/EditorAssetResourceProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/ResourceProviders/EmbeddedResourceProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/ResourceProviders/IResourceProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/SemanticLabel.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/SemanticVersion.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Serialization/MovedFromAttributeExtensions.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Serialization/SerializableTypeExtensions.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Serialization/TypeExtensions.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Serialization/TypeSerializer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/SerializedProperties/SerializedPropertyProviderProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/SerializedProperties/SerializedPropertyUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Threading/BackgroundWorker.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Threading/BackgroundWorkerAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Threading/ThreadableAssetWrapper.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/AnnotationUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/AssetBundleUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/AssetUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/BackupUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/Clipboard.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/ConsoleProfiler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/DefineUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/EditorApplicationUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/EditorFilteringUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/EditorLinqUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/EditorSerializationUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/EditorTimeUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/EditorTypeUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/EditorUnityObjectUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/FrameLimiterUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/IconExportUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/LudiqEditorUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/MD4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/MathfEx.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/NameUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/NativeUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/PackageVersionUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/PathUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/Paths.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/PluginPaths.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/ProgressUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/ReloadAssets.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/ScriptReference.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/ScriptReferenceReplacement.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/ScriptReferenceResolver.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/ScriptUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/SearchResult.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/SearchUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/UndoUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/UnityAPI.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/VSBackupUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/VSMigrationUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/VSUsageUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/VersionControlUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/Warning.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/WarningLevel.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/EditorVariablesUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/InspectorVariableFieldAttributeInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/VariableDeclarationInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/VariableDeclarationsInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/VariableNameInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/VariablesAssetEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/VariablesEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/VariablesPanel.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/GraphElementWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Groups/GraphGroupEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Groups/GraphGroupInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Groups/GraphGroupWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/IGraphElementWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/IWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Nodes/INodeWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Nodes/NodeColor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Nodes/NodeColorMix.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Nodes/NodeShape.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Nodes/NodeWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/StickyNote/StickyNoteEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/StickyNote/StickyNoteInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/StickyNote/StickyNoteOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/StickyNote/StickyNoteWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Widget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/WidgetAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/WidgetProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/AboutWindow/AboutPluginsPage.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/AboutWindow/AboutablePage.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/AboutWindow/AcknowledgementPage.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/AboutWindow/ChangelogPage.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/AboutWindow/IAboutable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/BackupWindow/BackupPage.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/ConfigurationPanel/ConfigurationPanel.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/EditorWindowWrapper.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/GenerateDocumentationWindow/GenerateDocumentationPage.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/GeneratePropertyProvidersWindow/GeneratePropertyProvidersPage.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/GraphInspectorPanel.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/GraphWindow.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/ICanvasWindow.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/ListPage.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/LudiqEditorWindow.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Page.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Sidebars/ISidebarPanelContent.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Sidebars/Sidebar.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Sidebars/SidebarAnchor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Sidebars/SidebarPanel.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Sidebars/SidebarPanelWindow.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Sidebars/Sidebars.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/SinglePageWindow.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/TabbedPage.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/UpdateWizard/UpdateBackupPage.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/WebView.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/WebWindow.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/WindowClose.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Wizard.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/WrappedEditorWindow.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 200, + 246, + 247, + 248, + 252 + ], + "ToUseDependencies": [ + 246, + 248 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 249 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 200 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 250 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.VisualScripting.Core.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1184424, + "PayloadLength": 9600, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 251 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 250, + 251 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 252 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.VisualScripting.Flow.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 1194141, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 253 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp", + "DisplayName": "Writing Unity.VisualScripting.Flow.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1194265, + "PayloadLength": 81579, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 254 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp2", + "DisplayName": "Writing Unity.VisualScripting.Flow.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 1275942, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 255 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.VisualScripting.Flow)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/ControlConnection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/IUnitConnection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/IUnitConnectionDebugData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/IUnitRelation.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/InvalidConnection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/UnitConnection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/UnitConnectionDebugData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/UnitRelation.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/ValueConnection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/BinaryExpression.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluateFunctionHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluateParameterHandler.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluationException.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluationOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluationVisitor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Expression.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/FunctionArgs.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/FunctionExpression.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/IdentifierExpression.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/LogicalExpression.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/LogicalExpressionVisitor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/NCalcLexer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/NCalcParser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/ParameterArgs.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/SerializationVisitor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/TernaryExpression.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/UnaryExpression.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/ValueExpression.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/PortKeyAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/PortLabelAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/PortLabelHiddenAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/SpecialUnitAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/UnitFooterPortsAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/UnitHeaderInspectableAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/UnitOrderAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/UnitShortTitleAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/UnitSubtitleAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/UnitSurtitleAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/UnitTitleAttribute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Flow.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/FlowGraph.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/FlowGraphData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Codebase/CreateStruct.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Codebase/Expose.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Codebase/GetMember.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Codebase/InvokeMember.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Codebase/MemberUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Codebase/SetMember.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/CountItems.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/AddDictionaryItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/ClearDictionary.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/CreateDictionary.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/DictionaryContainsKey.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/GetDictionaryItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/MergeDictionaries.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/RemoveDictionaryItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/SetDictionaryItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/FirstItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/LastItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/AddListItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/ClearList.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/CreateList.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/GetListItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/InsertListItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/ListContainsItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/MergeLists.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/RemoveListItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/RemoveListItemAt.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/SetListItem.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/Break.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/Cache.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/For.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/ForEach.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/IBranchUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/ISelectUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/If.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/LoopUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/Once.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SelectOnEnum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SelectOnFlow.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SelectOnInteger.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SelectOnString.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SelectUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SelectUnit_T.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/Sequence.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SwitchOnEnum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SwitchOnInteger.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SwitchOnString.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SwitchUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/Throw.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/ToggleFlow.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/ToggleValue.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/TryCatch.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/While.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Animation/BoltAnimationEvent.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Animation/BoltNamedAnimationEvent.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Animation/OnAnimatorIK.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Animation/OnAnimatorMove.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationFocus.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationLostFocus.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationPause.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationQuit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationResume.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/BoltUnityEvent.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/CustomEvent.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/CustomEventArgs.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Editor/OnDrawGizmos.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Editor/OnDrawGizmosSelected.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/EventUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/GenericGuiEventUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnBeginDrag.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnButtonClick.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnCancel.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnDeselect.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnDrag.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnDrop.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnDropdownValueChanged.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnEndDrag.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnGUI.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnInputFieldEndEdit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnInputFieldValueChanged.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnMove.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerClick.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerDown.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerEnter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerExit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerUp.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnScroll.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnScrollRectValueChanged.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnScrollbarValueChanged.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnSelect.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnSliderValueChanged.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnSubmit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnToggleValueChanged.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/PointerEventUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GameObjectEventUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GlobalEventUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Hierarchy/OnTransformChildrenChanged.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Hierarchy/OnTransformParentChanged.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/IEventUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/IMouseEventUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/InputSystem/OnInputSystemEvent.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnButtonInput.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnKeyboardInput.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseDown.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseDrag.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseEnter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseExit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseInput.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseOver.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseUp.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseUpAsButton.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/FixedUpdate.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/LateUpdate.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/OnDestroy.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/OnDisable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/OnEnable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/Start.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/Update.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/MachineEventUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/ManualEventUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Navigation/OnDestinationReached.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/CollisionEventUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnCollisionEnter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnCollisionExit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnCollisionStay.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnControllerColliderHit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnJointBreak.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnParticleCollision.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnTriggerEnter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnTriggerExit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnTriggerStay.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/TriggerEventUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/CollisionEvent2DUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnCollisionEnter2D.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnCollisionExit2D.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnCollisionStay2D.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnJointBreak2D.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnTriggerEnter2D.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnTriggerExit2D.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnTriggerStay2D.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/TriggerEvent2DUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Rendering/OnBecameInvisible.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Rendering/OnBecameVisible.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Time/OnTimerElapsed.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/TriggerCustomEvent.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Formula.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/GetGraph.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/GetGraphs.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/GetScriptGraph.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/GetScriptGraphs.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/HasGraph.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/HasScriptGraph.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/ScriptGraphContainerType.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/SetGraph.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/SetScriptGraph.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Literal.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/And.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/ApproximatelyEqual.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/BinaryComparisonUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/Comparison.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/Equal.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/EqualityComparison.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/ExclusiveOr.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/Greater.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/GreaterOrEqual.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/Less.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/LessOrEqual.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/Negate.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/NotApproximatelyEqual.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/NotEqual.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/NumericComparison.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/Or.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Absolute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Add.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Angle.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Average.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/CrossProduct.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Distance.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Divide.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/DotProduct.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Generic/DeprecatedGenericAdd.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericDivide.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericModulo.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericMultiply.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericSubtract.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericSum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Lerp.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Maximum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Minimum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Modulo.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/MoveTowards.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Multiply.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Normalize.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/PerSecond.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Project.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Round.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/DeprecatedScalarAdd.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarAbsolute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarAverage.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarDivide.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarExponentiate.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarLerp.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarMaximum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarMinimum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarModulo.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarMoveTowards.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarMultiply.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarNormalize.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarPerSecond.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarRoot.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarRound.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarSubtract.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarSum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Subtract.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Sum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/DeprecatedVector2Add.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Absolute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Angle.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Average.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Distance.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Divide.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2DotProduct.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Lerp.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Maximum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Minimum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Modulo.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2MoveTowards.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Multiply.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Normalize.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2PerSecond.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Project.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Round.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Subtract.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Sum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/DeprecatedVector3Add.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Absolute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Angle.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Average.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3CrossProduct.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Distance.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Divide.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3DotProduct.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Lerp.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Maximum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Minimum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Modulo.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3MoveTowards.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Multiply.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Normalize.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3PerSecond.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Project.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Round.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Subtract.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Sum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/DeprecatedVector4Add.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Absolute.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Average.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Distance.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Divide.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4DotProduct.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Lerp.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Maximum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Minimum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Modulo.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4MoveTowards.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Multiply.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Normalize.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4PerSecond.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Round.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Subtract.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Sum.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/MissingType.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Nesting/GraphInput.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Nesting/GraphOutput.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Nulls/Null.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Nulls/NullCheck.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Nulls/NullCoalesce.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/This.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/Cooldown.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/Timer.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/WaitForEndOfFrameUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/WaitForFlow.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/WaitForNextFrameUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/WaitForSecondsUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/WaitUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/WaitUntilUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/WaitWhileUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/GetVariable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/IUnifiedVariableUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/IsVariableDefined.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetApplicationVariable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetGraphVariable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetObjectVariable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetSavedVariable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetSceneVariable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetVariableUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IApplicationVariableUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IGraphVariableUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IObjectVariableUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/ISavedVariableUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/ISceneVariableUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IVariableUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsApplicationVariableDefined.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsGraphVariableDefined.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsObjectVariableDefined.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsSavedVariableDefined.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsSceneVariableDefined.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsVariableDefinedUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetApplicationVariable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetGraphVariable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetObjectVariable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetSavedVariable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetSceneVariable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetVariableUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/VariableUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/SaveVariables.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/SetVariable.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/UnifiedVariableUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/IDefaultValue.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/INesterUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/IUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/IUnitDebugData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/MultiInputUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/NesterUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ControlInput.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ControlInputDefinition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ControlOutput.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ControlOutputDefinition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ControlPortDefinition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitControlPort.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitControlPortDefinition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitInputPort.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitInputPortDefinition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitInvalidPort.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitOutputPort.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitOutputPortDefinition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitPort.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitPortCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitPortDefinition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitValuePort.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitValuePortDefinition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/InvalidInput.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/InvalidOutput.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/MissingValuePortInputException.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/UnitPort.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/UnitPortCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/UnitPortDefinition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ValueInput.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ValueInputDefinition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ValueOutput.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ValueOutputDefinition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ValuePortDefinition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Properties/AssemblyInfo.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/ScriptGraphAsset.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/ScriptMachine.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/SubgraphUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Unit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/UnitCategory.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/UnitCategoryConverter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/UnitPortDefinitionCollection.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/UnitPreservation.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 103, + 131, + 200, + 253, + 254, + 255, + 258 + ], + "ToUseDependencies": [ + 253, + 255 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 256 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.VisualScripting.Flow.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1276089, + "PayloadLength": 9276, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 257 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 133, + 140, + 250, + 257 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 258 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.Toolchain.Linux-x86_64.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 1285484, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 259 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp", + "DisplayName": "Writing Unity.Toolchain.Linux-x86_64.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1285610, + "PayloadLength": 34155, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 260 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp2", + "DisplayName": "Writing Unity.Toolchain.Linux-x86_64.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 1319865, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 261 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.Toolchain.Linux-x86_64)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.toolchain.linux-x86_64@2.0.6/Editor/Unity.Toolchain.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 170, + 219, + 259, + 260, + 261, + 265 + ], + "ToUseDependencies": [ + 259, + 261 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 262 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Sysroot.Linux_x86_64.ref.dll_47C0B0C1257E42B5.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.Sysroot.Linux_x86_64.ref.dll_47C0B0C1257E42B5.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.Sysroot.Linux_x86_64.ref.dll_47C0B0C1257E42B5.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 219 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 263 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.Toolchain.Linux-x86_64.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1320014, + "PayloadLength": 9688, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 264 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.Sysroot.Linux_x86_64.ref.dll_47C0B0C1257E42B5.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 220, + 263, + 264 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 265 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.VisualScripting.Flow.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 1329826, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 266 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp", + "DisplayName": "Writing Unity.VisualScripting.Flow.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1329957, + "PayloadLength": 54222, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 267 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp2", + "DisplayName": "Writing Unity.VisualScripting.Flow.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 1384284, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 268 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.VisualScripting.Flow.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Acknowledgements/Acknowledgement_NCalc.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Analytics/FlowMacroSavedEvent.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/BoltFlowNameUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Connections/ControlConnectionWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Connections/IUnitConnectionWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Connections/InvalidConnectionWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Connections/UnitConnectionStyles.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Connections/UnitConnectionWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Connections/ValueConnectionWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/FlowGraphDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/FlowMachineDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/FlowMacroDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/IUnitDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/UnitAnalyser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/UnitAnalysis.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/UnitDescription.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/UnitDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/UnitPortDescription.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/UnitPortDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Events/CustomEventDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Events/EventUnitDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Events/EventUnitWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Events/GlobalMessageListenerEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Events/MessageListenerEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Events/TriggerCustomEventDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/FlowCanvas.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/FlowDragAndDropUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/FlowEditorBindings.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/FlowGraphContext.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/FlowGraphEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/FlowGraphUnitUISample.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/FlowMachineEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/CreateStructDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/CreateStructOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/ExposeDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/ExposeOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/GetMemberDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/GetMemberOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/InvokeMemberDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/InvokeMemberOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/LiteralDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/LiteralInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/LiteralOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/LiteralWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/MemberUnitAnalyser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/MemberUnitDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/MemberUnitOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/OnInputSystemEventAnalyser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/SetMemberDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/SetMemberOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/ForAnalyser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/ForEachDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SelectOnEnumDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SelectOnFlowDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SelectOnIntegerDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SelectOnStringDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SelectUnitDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SequenceDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SwitchOnEnumDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SwitchOnIntegerDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SwitchOnStringDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SwitchUnitDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/InputActionInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/InputSystemWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/MultiInputUnitAlphabeticDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/MultiInputUnitNumericDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphInputAnalyser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphInputDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphInputInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphInputWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphOutputAnalyser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphOutputDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphOutputInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphOutputWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/NesterUnitAnalyser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/NesterUnitDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/NesterUnitEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/NesterUnitOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/NestrerUnitWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/SuperUnitDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/SuperUnitEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/SuperUnitWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/UnitPortDefinitionUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Time/WaitForFlowDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/GetVariableOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/IsVariableDefinedOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/GetVariableUnitOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/IsVariableDefinedUnitOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/SetVariableUnitOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/VariableUnitDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/VariableUnitOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/VariableUnitWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/SetVariableOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/UnifiedVariableUnitDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/UnifiedVariableUnitOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/UnifiedVariableUnitWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/VariableKindOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Invocations/InvocationInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Invocations/MemberInvocationInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/IUnitOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitBase.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitCategoryOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitOption.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitOptionFilter.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitOptionProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitOptionRow.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitOptionTree.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitOptionUtility.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/BoltFlow.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/BoltFlowConfiguration.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/BoltFlowManifest.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/BoltFlowPaths.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/BoltFlowResources.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_1_0..cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_1_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_1_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_1_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_2_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_2_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_2_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_2_4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_3_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_10.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_5.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_6.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_7.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_8.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_0_2_to_1_0_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_1_1_to_1_1_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_1_2_to_1_1_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_1_3_to_1_2_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_2_0_to_1_2_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_2_4_to_1_3_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_3_0_to_1_4_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_5_1_to_1_5_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_6_to_1_7.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_Asset_to_Package.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/ControlInputWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/ControlOutputWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/IUnitPortWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/InvalidInputWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/InvalidOutputWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/UnitInputPortWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/UnitOutputPortWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/UnitPortDefinitionInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/UnitPortWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/ValueInputDefinitionInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/ValueInputWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/ValueOutputWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/ValuePortDefinitionInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Properties/AssemblyInfo.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/RuntimeGraphBase.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Units/IUnitWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Units/MissingTypeUnitWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Units/UnitEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Units/UnitInspector.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Units/UnitWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/XFlowGraph.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 200, + 249, + 256, + 266, + 267, + 268, + 273 + ], + "ToUseDependencies": [ + 266, + 268 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 269 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 249 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 270 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 256 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 271 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1384438, + "PayloadLength": 9781, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 272 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 250, + 270, + 271, + 272 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 273 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.VisualScripting.State.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 1394337, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 274 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp", + "DisplayName": "Writing Unity.VisualScripting.State.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1394462, + "PayloadLength": 35958, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 275 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp2", + "DisplayName": "Writing Unity.VisualScripting.State.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 1430519, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 276 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.VisualScripting.State)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/AnyState.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/FlowState.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/FlowStateTransition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/Framework/Graph/HasStateGraph.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/INesterState.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/INesterStateTransition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/IState.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/IStateDebugData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/IStateTransition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/IStateTransitionDebugData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/NesterState.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/NesterStateTransition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/OnEnterState.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/OnExitState.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/Properties/AssemblyInfo.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/State.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateEnterReason.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateEventHooks.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateExitReason.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateGraph.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateGraphAsset.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateGraphData.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateMachine.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateTransition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateUnit.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/SuperState.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/TriggerStateTransition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/Units/GetStateGraph.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/Units/GetStateGraphs.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/Units/SetStateGraph.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/Units/StateGraphContainerType.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 103, + 131, + 200, + 256, + 274, + 275, + 276, + 279 + ], + "ToUseDependencies": [ + 274, + 276 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 277 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.VisualScripting.State.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1430667, + "PayloadLength": 9363, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 278 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 133, + 140, + 250, + 271, + 278 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 279 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.VisualScripting.SettingsProvider.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 1440166, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 280 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp", + "DisplayName": "Writing Unity.VisualScripting.SettingsProvider.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1440309, + "PayloadLength": 35405, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 281 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp2", + "DisplayName": "Writing Unity.VisualScripting.SettingsProvider.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 1475831, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 282 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.VisualScripting.SettingsProvider.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/EditorPreferencesProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/EditorPreferencesProviderView.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/ProjectSettings/AssemblyOptionsSettings.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/ProjectSettings/BackupSettings.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/ProjectSettings/CustomPropertyProviderSettings.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/ProjectSettings/ScriptReferenceResolverSettings.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/ProjectSettings/TypeOptionsSettings.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/ProjectSettingsProvider.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/ProjectSettingsProviderView.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 200, + 249, + 256, + 269, + 277, + 280, + 281, + 282, + 287 + ], + "ToUseDependencies": [ + 280, + 282 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 283 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 269 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 284 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 277 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 285 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1475997, + "PayloadLength": 9963, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 286 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 250, + 270, + 271, + 284, + 285, + 286 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 287 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.VisualScripting.State.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 1486085, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 288 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp", + "DisplayName": "Writing Unity.VisualScripting.State.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1486217, + "PayloadLength": 42303, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 289 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp2", + "DisplayName": "Writing Unity.VisualScripting.State.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 1528626, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 290 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.VisualScripting.State.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Analytics/StateMacroSavedEvent.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Description/StateGraphDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Description/StateMachineDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Description/StateMacroDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Flow/FlowGraphContextStateExtension.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Flow/StateUnitDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Flow/StateUnitEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Flow/StateUnitWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Flow/UnitBaseStateExtensions.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Graph/StateCanvas.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Graph/StateGraphContext.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/BoltState.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/BoltStateConfiguration.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/BoltStateManifest.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/BoltStateResources.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_0_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_0_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_0_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_1_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_1_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_1_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_2_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_2_3.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_2_4.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_3_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_4_0.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_4_1.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Migrations/Migration_1_5_1_to_1_5_2.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Migrations/Migration_1_6_to_1_7.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Migrations/Migration_Asset_to_Package.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Properties/AssemblyInfo.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/StateGraphEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/StateRevealCondition.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/AnyStateDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/AnyStateWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/FlowStateDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/FlowStateEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/FlowStateWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/IStateWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/NesterStateAnalyser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/NesterStateDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/NesterStateEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/NesterStateWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/StateAnalyser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/StateAnalysis.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/StateDescription.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/StateDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/StateEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/StateTransitionAnalysis.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/StateWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/SuperStateDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/SuperStateEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/SuperStateWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/FlowStateTransitionAnalyser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/FlowStateTransitionDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/FlowStateTransitionEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/FlowStateTransitionWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/IStateTransitionWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/NesterStateTransitionAnalyser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/NesterStateTransitionDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/NesterStateTransitionEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/NesterStateTransitionWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/StateTransitionAnalyser.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/StateTransitionDescription.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/StateTransitionDescriptor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/StateTransitionEditor.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/StateTransitionWidget.cs", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/TriggerStateTransitionWidget.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 200, + 249, + 256, + 269, + 277, + 288, + 289, + 290, + 293 + ], + "ToUseDependencies": [ + 288, + 290 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 291 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.VisualScripting.State.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1528781, + "PayloadLength": 9963, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 292 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 250, + 270, + 271, + 284, + 285, + 292 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 293 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.UnityAdditionalFile.txt", + "DisplayName": "Writing Unity.VisualScripting.Shared.Editor.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 1538870, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 294 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp", + "DisplayName": "Writing Unity.VisualScripting.Shared.Editor.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1539003, + "PayloadLength": 34515, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 295 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp2", + "DisplayName": "Writing Unity.VisualScripting.Shared.Editor.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 1573625, + "PayloadLength": 40, + "PayloadDebugContentSnippet": "/pathmap:\"/home/andrew/My proj", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 296 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)", + "DisplayName": "Compiling C# (Unity.VisualScripting.Shared.Editor)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll", + "Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Shared/EmptyGraphWindow.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 4, + 103, + 122, + 131, + 200, + 249, + 256, + 269, + 277, + 291, + 294, + 295, + 296, + 300 + ], + "ToUseDependencies": [ + 294, + 296 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "CachingMode": "ByDirectInputs", + "DebugActionIndex": 297 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E3BEEDFEAAF21AA5.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E3BEEDFEAAF21AA5.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E3BEEDFEAAF21AA5.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 291 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 298 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm.rsp", + "DisplayName": "Writing Unity.VisualScripting.Shared.Editor.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1573781, + "PayloadLength": 10058, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 299 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E3BEEDFEAAF21AA5.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 123, + 124, + 125, + 132, + 133, + 140, + 250, + 270, + 271, + 284, + 285, + 298, + 299 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 300 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.UnityAdditionalFile.txt", + "DisplayName": "Writing Assembly-CSharp.UnityAdditionalFile.txt", + "ActionType": "WriteFile", + "PayloadOffset": 1583945, + "PayloadLength": 27, + "PayloadDebugContentSnippet": "/home/andrew/My project (1)", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.UnityAdditionalFile.txt" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 301 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp", + "DisplayName": "Writing Assembly-CSharp.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1584058, + "PayloadLength": 32688, + "PayloadDebugContentSnippet": "-target:library\n-out:\"Library/", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 302 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp2", + "DisplayName": "Writing Assembly-CSharp.rsp2", + "ActionType": "WriteFile", + "PayloadOffset": 1616833, + "PayloadLength": 0, + "PayloadDebugContentSnippet": "", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp2" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 303 + }, + { + "Annotation": "Csc Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll (+2 others)", + "DisplayName": "Compiling C# (Assembly-CSharp)", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp2\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll", + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll", + "Assets/AsteroidScript.cs", + "Assets/GameManagerScript.cs", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll", + "Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 8 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll", + "Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.pdb", + "Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.ref.dll" + ], + "OutputFlags": [ + 0, + 0, + 0 + ], + "ToBuildDependencies": [ + 103, + 131, + 139, + 146, + 152, + 158, + 170, + 176, + 182, + 188, + 194, + 200, + 206, + 219, + 226, + 235, + 242, + 249, + 256, + 262, + 269, + 277, + 283, + 291, + 297, + 301, + 302, + 303, + 316 + ], + "ToUseDependencies": [ + 301, + 303 + ], + "AllowUnexpectedOutput": true, + "Env": [ + { + "Key": "DOTNET_MULTILEVEL_LOOKUP", + "Value": "0" + } + ], + "DebugActionIndex": 304 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_24F40B351B9ACD85.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_24F40B351B9ACD85.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_24F40B351B9ACD85.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 139 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 305 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Performance.Profile-Analyzer.Editor.ref.dll_FC7FE7C2525DF555.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.Performance.Profile-Analyzer.Editor.ref.dll_FC7FE7C2525DF555.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.Performance.Profile-Analyzer.Editor.ref.dll_FC7FE7C2525DF555.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 146 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 306 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9145F68A59D35CE5.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9145F68A59D35CE5.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9145F68A59D35CE5.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 158 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 307 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.ref.dll_4F7EA18A8F1A3B43.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.ref.dll_4F7EA18A8F1A3B43.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.ref.dll_4F7EA18A8F1A3B43.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 226 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 308 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_B8A961BBD8ABE0FC.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_B8A961BBD8ABE0FC.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_B8A961BBD8ABE0FC.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 235 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 309 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_53B6806BAD4EBBBC.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_53B6806BAD4EBBBC.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_53B6806BAD4EBBBC.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 242 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 310 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Toolchain.Linux-x86_64.ref.dll_1D7A0D228D2803C9.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.Toolchain.Linux-x86_64.ref.dll_1D7A0D228D2803C9.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.Toolchain.Linux-x86_64.ref.dll_1D7A0D228D2803C9.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 262 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 311 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_B8324D455948C852.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_B8324D455948C852.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_B8324D455948C852.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 283 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 312 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_F54BA3F421A71E21.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_F54BA3F421A71E21.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_F54BA3F421A71E21.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 297 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 313 + }, + { + "Annotation": "MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_45A2A186C05004D7.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_45A2A186C05004D7.mvfrm\" \"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.ref.dll\"", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.ref.dll", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll" + ], + "InputFlags": [ + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_45A2A186C05004D7.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 206 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 314 + }, + { + "Annotation": "WriteText Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp", + "DisplayName": "Writing Assembly-CSharp.dll.mvfrm.rsp", + "ActionType": "WriteFile", + "PayloadOffset": 1616929, + "PayloadLength": 10237, + "PayloadDebugContentSnippet": "Library/Bee/artifacts/mvdfrm/U", + "Inputs": [], + "InputFlags": [], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp" + ], + "OutputFlags": [ + 2 + ], + "DebugActionIndex": 315 + }, + { + "Annotation": "MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm", + "DisplayName": "Checking for moved APIs", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll\" \"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm\" \"@Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp\"", + "Inputs": [ + "Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_24F40B351B9ACD85.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Performance.Profile-Analyzer.Editor.ref.dll_FC7FE7C2525DF555.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_F0D9BA1F3F167740.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9145F68A59D35CE5.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Sysroot.Linux_x86_64.ref.dll_47C0B0C1257E42B5.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll_74E155EA2BEE38FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll_3B45F137F1F80EEA.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.ref.dll_4F7EA18A8F1A3B43.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_B8A961BBD8ABE0FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_8DB7A3E3632A4E05.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_53B6806BAD4EBBBC.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_5AB3C2EE9968C745.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Toolchain.Linux-x86_64.ref.dll_1D7A0D228D2803C9.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_B8324D455948C852.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_F54BA3F421A71E21.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E3BEEDFEAAF21AA5.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_45A2A186C05004D7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm", + "Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm", + "Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Compilation/ApiUpdater/ApiUpdater.MovedFromExtractor.dll", + "Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 5, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 116, + 133, + 140, + 213, + 220, + 228, + 229, + 236, + 243, + 250, + 263, + 270, + 271, + 284, + 285, + 298, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 316 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/UnityEngine.TestRunner.dll", + "DisplayName": "Copying UnityEngine.TestRunner.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/UnityEngine.TestRunner.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 4 + ], + "DebugActionIndex": 317 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/UnityEngine.TestRunner.pdb", + "DisplayName": "Copying UnityEngine.TestRunner.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/UnityEngine.TestRunner.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 4 + ], + "DebugActionIndex": 318 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/UnityEditor.TestRunner.dll", + "DisplayName": "Copying UnityEditor.TestRunner.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/UnityEditor.TestRunner.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 122 + ], + "DebugActionIndex": 319 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/UnityEditor.TestRunner.pdb", + "DisplayName": "Copying UnityEditor.TestRunner.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/UnityEditor.TestRunner.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 122 + ], + "DebugActionIndex": 320 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.Rider.Editor.dll", + "DisplayName": "Copying Unity.Rider.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.Rider.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 158 + ], + "DebugActionIndex": 321 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.Rider.Editor.pdb", + "DisplayName": "Copying Unity.Rider.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.Rider.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 158 + ], + "DebugActionIndex": 322 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll", + "DisplayName": "Copying Unity.VisualStudio.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 206 + ], + "DebugActionIndex": 323 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb", + "DisplayName": "Copying Unity.VisualStudio.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 206 + ], + "DebugActionIndex": 324 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll", + "DisplayName": "Copying UnityEngine.UI.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/UnityEngine.UI.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 103 + ], + "DebugActionIndex": 325 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/UnityEngine.UI.pdb", + "DisplayName": "Copying UnityEngine.UI.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/UnityEngine.UI.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 103 + ], + "DebugActionIndex": 326 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/UnityEditor.UI.dll", + "DisplayName": "Copying UnityEditor.UI.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/UnityEditor.UI.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 131 + ], + "DebugActionIndex": 327 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/UnityEditor.UI.pdb", + "DisplayName": "Copying UnityEditor.UI.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/UnityEditor.UI.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 131 + ], + "DebugActionIndex": 328 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll", + "DisplayName": "Copying Unity.EditorCoroutines.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 139 + ], + "DebugActionIndex": 329 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.pdb", + "DisplayName": "Copying Unity.EditorCoroutines.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 139 + ], + "DebugActionIndex": 330 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.Performance.Profile-Analyzer.Editor.dll", + "DisplayName": "Copying Unity.Performance.Profile-Analyzer.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.Performance.Profile-Analyzer.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 146 + ], + "DebugActionIndex": 331 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.Performance.Profile-Analyzer.Editor.pdb", + "DisplayName": "Copying Unity.Performance.Profile-Analyzer.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.Performance.Profile-Analyzer.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 146 + ], + "DebugActionIndex": 332 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll", + "DisplayName": "Copying Unity.PlasticSCM.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 152 + ], + "DebugActionIndex": 333 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb", + "DisplayName": "Copying Unity.PlasticSCM.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 152 + ], + "DebugActionIndex": 334 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.Settings.Editor.dll", + "DisplayName": "Copying Unity.Settings.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.Settings.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 164 + ], + "DebugActionIndex": 335 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.Settings.Editor.pdb", + "DisplayName": "Copying Unity.Settings.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.Settings.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 164 + ], + "DebugActionIndex": 336 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll", + "DisplayName": "Copying Unity.SysrootPackage.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 170 + ], + "DebugActionIndex": 337 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb", + "DisplayName": "Copying Unity.SysrootPackage.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 170 + ], + "DebugActionIndex": 338 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll", + "DisplayName": "Copying Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 176 + ], + "DebugActionIndex": 339 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.pdb", + "DisplayName": "Copying Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 176 + ], + "DebugActionIndex": 340 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll", + "DisplayName": "Copying Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 182 + ], + "DebugActionIndex": 341 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.pdb", + "DisplayName": "Copying Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 182 + ], + "DebugActionIndex": 342 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.dll", + "DisplayName": "Copying Unity.TextMeshPro.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.TextMeshPro.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 188 + ], + "DebugActionIndex": 343 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.pdb", + "DisplayName": "Copying Unity.TextMeshPro.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.TextMeshPro.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 188 + ], + "DebugActionIndex": 344 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.Timeline.dll", + "DisplayName": "Copying Unity.Timeline.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.Timeline.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 194 + ], + "DebugActionIndex": 345 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.Timeline.pdb", + "DisplayName": "Copying Unity.Timeline.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.Timeline.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 194 + ], + "DebugActionIndex": 346 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.dll", + "DisplayName": "Copying Unity.VisualScripting.Core.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.Core.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 200 + ], + "DebugActionIndex": 347 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.pdb", + "DisplayName": "Copying Unity.VisualScripting.Core.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.Core.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 200 + ], + "DebugActionIndex": 348 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll", + "DisplayName": "Copying Unity.CollabProxy.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 212 + ], + "DebugActionIndex": 349 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb", + "DisplayName": "Copying Unity.CollabProxy.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 212 + ], + "DebugActionIndex": 350 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll", + "DisplayName": "Copying Unity.Sysroot.Linux_x86_64.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 219 + ], + "DebugActionIndex": 351 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb", + "DisplayName": "Copying Unity.Sysroot.Linux_x86_64.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 219 + ], + "DebugActionIndex": 352 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.dll", + "DisplayName": "Copying Unity.TestTools.CodeCoverage.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 226 + ], + "DebugActionIndex": 353 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.pdb", + "DisplayName": "Copying Unity.TestTools.CodeCoverage.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 226 + ], + "DebugActionIndex": 354 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll", + "DisplayName": "Copying Unity.TextMeshPro.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 235 + ], + "DebugActionIndex": 355 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb", + "DisplayName": "Copying Unity.TextMeshPro.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 235 + ], + "DebugActionIndex": 356 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.dll", + "DisplayName": "Copying Unity.Timeline.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.Timeline.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 242 + ], + "DebugActionIndex": 357 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.pdb", + "DisplayName": "Copying Unity.Timeline.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.Timeline.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 242 + ], + "DebugActionIndex": 358 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.dll", + "DisplayName": "Copying Unity.VisualScripting.Core.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 249 + ], + "DebugActionIndex": 359 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.pdb", + "DisplayName": "Copying Unity.VisualScripting.Core.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 249 + ], + "DebugActionIndex": 360 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll", + "DisplayName": "Copying Unity.VisualScripting.Flow.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 256 + ], + "DebugActionIndex": 361 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.pdb", + "DisplayName": "Copying Unity.VisualScripting.Flow.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.Flow.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 256 + ], + "DebugActionIndex": 362 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll", + "DisplayName": "Copying Unity.Toolchain.Linux-x86_64.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 262 + ], + "DebugActionIndex": 363 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.pdb", + "DisplayName": "Copying Unity.Toolchain.Linux-x86_64.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 262 + ], + "DebugActionIndex": 364 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.dll", + "DisplayName": "Copying Unity.VisualScripting.Flow.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 269 + ], + "DebugActionIndex": 365 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.pdb", + "DisplayName": "Copying Unity.VisualScripting.Flow.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 269 + ], + "DebugActionIndex": 366 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.dll", + "DisplayName": "Copying Unity.VisualScripting.State.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.State.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 277 + ], + "DebugActionIndex": 367 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.pdb", + "DisplayName": "Copying Unity.VisualScripting.State.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.State.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 277 + ], + "DebugActionIndex": 368 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.dll", + "DisplayName": "Copying Unity.VisualScripting.SettingsProvider.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 283 + ], + "DebugActionIndex": 369 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.pdb", + "DisplayName": "Copying Unity.VisualScripting.SettingsProvider.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 283 + ], + "DebugActionIndex": 370 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.dll", + "DisplayName": "Copying Unity.VisualScripting.State.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 291 + ], + "DebugActionIndex": 371 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.pdb", + "DisplayName": "Copying Unity.VisualScripting.State.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 291 + ], + "DebugActionIndex": 372 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.dll", + "DisplayName": "Copying Unity.VisualScripting.Shared.Editor.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 297 + ], + "DebugActionIndex": 373 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.pdb", + "DisplayName": "Copying Unity.VisualScripting.Shared.Editor.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 297 + ], + "DebugActionIndex": 374 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll", + "DisplayName": "Copying Assembly-CSharp.dll", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Assembly-CSharp.dll" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 304 + ], + "DebugActionIndex": 375 + }, + { + "Annotation": "CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb", + "DisplayName": "Copying Assembly-CSharp.pdb", + "ActionType": "CopyFiles", + "Inputs": [ + "Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.pdb" + ], + "InputFlags": [ + 0 + ], + "Outputs": [ + "Library/ScriptAssemblies/Assembly-CSharp.pdb" + ], + "OutputFlags": [ + 2 + ], + "ToBuildDependencies": [ + 304 + ], + "DebugActionIndex": 376 + }, + { + "Annotation": "BuildPlayerDataGenerator Library/BuildPlayerData/Editor/TypeDb-All.json", + "DisplayName": "Extracting script serialization layouts", + "Action": "\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun\" \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPlayerDataGenerator/BuildPlayerDataGenerator.exe\" -a=\"/home/andrew/My project (1)/Library/ScriptAssemblies/Assembly-CSharp.dll\" -a=\"/home/andrew/My project (1)/Library/ScriptAssemblies/Unity.TextMeshPro.dll\" -a=\"/home/andrew/My project (1)/Library/ScriptAssemblies/Unity.Timeline.dll\" -a=\"/home/andrew/My project (1)/Library/ScriptAssemblies/Unity.VisualScripting.Core.dll\" -a=\"/home/andrew/My project (1)/Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll\" -a=\"/home/andrew/My project (1)/Library/ScriptAssemblies/Unity.VisualScripting.State.dll\" -a=\"/home/andrew/My project (1)/Library/ScriptAssemblies/UnityEngine.TestRunner.dll\" -a=\"/home/andrew/My project (1)/Library/ScriptAssemblies/UnityEngine.UI.dll\" -a=\"/home/andrew/My project (1)/Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll\" -a=\"/home/andrew/My project (1)/Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll\" -a=\"/home/andrew/My project (1)/Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll\" -s=\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine\" -s=\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx\" -s=\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard\" -s=\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/EditorExtensions\" -s=\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0\" -s=\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0\" -s=\"/home/andrew/My project (1)/Library/ScriptAssemblies\" -s=\"/home/andrew/My project (1)/Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom\" -s=\"/home/andrew/My project (1)/Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator\" -s=\"/home/andrew/My project (1)/Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc\" -o=\"Library/BuildPlayerData/Editor\" -rn=\"\" -tn=\"TypeDb-All.json\"", + "Inputs": [ + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/netcorerun/netcorerun", + "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPlayerDataGenerator/BuildPlayerDataGenerator.exe", + "Library/ScriptAssemblies/Assembly-CSharp.dll", + "Library/ScriptAssemblies/Unity.TextMeshPro.dll", + "Library/ScriptAssemblies/Unity.Timeline.dll", + "Library/ScriptAssemblies/Unity.VisualScripting.Core.dll", + "Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll", + "Library/ScriptAssemblies/Unity.VisualScripting.State.dll", + "Library/ScriptAssemblies/UnityEngine.TestRunner.dll", + "Library/ScriptAssemblies/UnityEngine.UI.dll", + "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll", + "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll", + "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" + ], + "InputFlags": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "Outputs": [ + "Library/BuildPlayerData/Editor/TypeDb-All.json" + ], + "OutputFlags": [ + 0 + ], + "ToBuildDependencies": [ + 317, + 325, + 343, + 345, + 347, + 361, + 367, + 375 + ], + "AllowUnexpectedOutput": true, + "Env": [], + "DebugActionIndex": 377 + }, + { + "Annotation": "ScriptAssembliesAndTypeDB", + "DisplayName": null, + "Inputs": [], + "InputFlags": [], + "Outputs": [], + "OutputFlags": [], + "ToBuildDependencies": [ + 6, + 377 + ], + "DebugActionIndex": 378 + } + ], + "FileSignatures": [ + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Bee.BuildTools.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Bee.CSharpSupport.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Bee.Core.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Bee.DotNet.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Bee.NativeProgramSupport.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Bee.Stevedore.Program.exe" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Bee.TinyProfiler2.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Bee.Toolchain.GNU.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Bee.Toolchain.LLVM.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Bee.Toolchain.VisualStudio.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Bee.Toolchain.Xcode.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Bee.Tools.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Bee.TundraBackend.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Bee.VisualStudioSolution.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/BeeBuildProgramCommon.Data.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/BeeBuildProgramCommon.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Newtonsoft.Json.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/NiceIO.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/PlayerBuildProgramLibrary.Data.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/PlayerBuildProgramLibrary.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/ScriptCompilationBuildProgram.Data.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/ScriptCompilationBuildProgram.exe" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/SharpYaml.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Unity.Api.Attributes.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Unity.Cecil.Mdb.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Unity.Cecil.Pdb.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Unity.Cecil.Rocks.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Unity.Cecil.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Unity.IL2CPP.Api.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Unity.IL2CPP.Bee.BuildLogic.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Unity.Linker.Api.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/Unity.Options.dll" + }, + { + "File": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline/UnityEditor.iOS.Extensions.Xcode.dll" + }, + { + "File": "Library/Bee/2400b0aE-inputdata.json" + } + ], + "StatSignatures": [ + { + "File": "Assets/csc.rsp" + }, + { + "File": "Assets/mcs.rsp" + }, + { + "File": "Library/Bee/2400b0aE-inputdata.json" + }, + { + "File": "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Toolbar/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.editorcoroutines@1.0.0/Editor/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" + }, + { + "File": "Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.sysroot.linux-x86_64@2.0.6/Editor/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.sysroot@2.0.7/Editor/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Mono.Reflection/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" + }, + { + "File": "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.timeline@1.8.2/Editor/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.timeline@1.8.2/Runtime/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.toolchain.linux-x86_64@2.0.6/Editor/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.ugui@1.0.0/Editor/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.ugui@1.0.0/Runtime/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Shared/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" + }, + { + "File": "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/csc.rsp" + }, + { + "File": "Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/csc.rsp" + } + ], + "GlobSignatures": [ + { + "Path": "/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/BuildPipeline" + } + ], + "ContentDigestExtensions": [ + ".rsp", + ".dll", + ".exe", + ".pdb" + ], + "StructuredLogFileName": "Library/Bee/tundra.log.json", + "StateFileName": "Library/Bee/TundraBuildState.state", + "StateFileNameTmp": "Library/Bee/TundraBuildState.state.tmp", + "StateFileNameMapped": "Library/Bee/TundraBuildState.state.map", + "ScanCacheFileName": "Library/Bee/tundra.scancache", + "ScanCacheFileNameTmp": "Library/Bee/tundra.scancache.tmp", + "DigestCacheFileName": "Library/Bee/tundra.digestcache", + "DigestCacheFileNameTmp": "Library/Bee/tundra.digestcache.tmp", + "CachedNodeOutputDirectoryName": "Library/Bee/CachedNodeOutput", + "EmitDataForBeeWhy": 0, + "NamedNodes": { + "all_tundra_nodes": 0, + "ScriptAssemblies": 6, + "ScriptAssembliesAndTypeDB": 378 + } +, "DefaultNodes": [ + 0 + ], + "SharedResources": [], + "Scanners": [], + "Identifier": "Library/Bee/2400b0aE.dag.json", + "PayloadsFile": "/home/andrew/My project (1)/Library/Bee/2400b0aE.dag.payloads", + "RelativePathToRoot": "../.." +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag.outputdata b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag.outputdata new file mode 100644 index 00000000..165f85c6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag.outputdata @@ -0,0 +1 @@ +{"ScriptCompilationBuildProgram.Data.ScriptCompilationData_Out":{"Assemblies":[{"Path":"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm"},{"Path":"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll","ScriptUpdaterRsp":"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp","MovedFromExtractorFile":"/home/andrew/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm"}]}} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag.payloads b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag.payloads new file mode 100644 index 00000000..1089e9f5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag.payloads differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag_derived b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag_derived new file mode 100644 index 00000000..3bbcf4a4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag_derived differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag_fsmtime b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag_fsmtime new file mode 100644 index 00000000..1b1cb4d4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/2400b0aE.dag_fsmtime differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/00abe124bf6e3d674b8b973fdc30d5e1_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/00abe124bf6e3d674b8b973fdc30d5e1_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/0e19fafb01f08f1e16c557723d1c7079_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/0e19fafb01f08f1e16c557723d1c7079_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/1996cfe99df48a464a6c4ee2d3913684_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/1996cfe99df48a464a6c4ee2d3913684_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/1e5cf685763b811745ddb445697a7986_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/1e5cf685763b811745ddb445697a7986_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/22f0a551a286cf7dd173c87fe58fea70_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/22f0a551a286cf7dd173c87fe58fea70_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/3292ae9c4cf4cd5d9d0428c48ec41cf6_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/3292ae9c4cf4cd5d9d0428c48ec41cf6_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/3383c5ca0a56c03bb4ad95daddcdebf2_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/3383c5ca0a56c03bb4ad95daddcdebf2_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/3658ae636ddfb58301b7e67404e04a98_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/3658ae636ddfb58301b7e67404e04a98_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/59d09b75a2c3a722d12861665f1c7a4d_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/59d09b75a2c3a722d12861665f1c7a4d_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/627181d9ab83c078a642fc136c51b1fe_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/627181d9ab83c078a642fc136c51b1fe_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/65877b268f349cc524ad6fdbc0c27a42_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/65877b268f349cc524ad6fdbc0c27a42_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/65dff86ed610da1076e41ca6fbc31b57_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/65dff86ed610da1076e41ca6fbc31b57_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/6761286e579385af1ede3e8fea5a73b9_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/6761286e579385af1ede3e8fea5a73b9_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/749b3f953b422c99eac259321eb32592_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/749b3f953b422c99eac259321eb32592_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/773397987028caa2c473385be568e57a_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/773397987028caa2c473385be568e57a_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/77983030e0d3745457149a97d36f1b5f_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/77983030e0d3745457149a97d36f1b5f_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/78e36ea64a0e7f3f96d9ccb02d8660f9_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/78e36ea64a0e7f3f96d9ccb02d8660f9_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/83bc1e0109064105056fd06e33792fd7_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/83bc1e0109064105056fd06e33792fd7_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/8b5259dcc7cabfc4b9a4c8cc1ecfb5e9_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/8b5259dcc7cabfc4b9a4c8cc1ecfb5e9_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/9b8dba1011db6288ae0513b5e76c81ff_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/9b8dba1011db6288ae0513b5e76c81ff_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/9bbc6dbdfee61318a43d2c485700763e_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/9bbc6dbdfee61318a43d2c485700763e_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/a340cb34d7d9ccd380b5c804b6a379f1_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/a340cb34d7d9ccd380b5c804b6a379f1_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/c095a2bd3d51307b44971a2383273b42_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/c095a2bd3d51307b44971a2383273b42_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/d823fa2bba9443072306957ca06e6777_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/d823fa2bba9443072306957ca06e6777_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/ea888af80f4f2a90a5d52df88e82b165_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/ea888af80f4f2a90a5d52df88e82b165_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/ec32a760fb41bbfc08bed75b5a642bc8_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/ec32a760fb41bbfc08bed75b5a642bc8_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/f6b5d9a940b4d50e26a0225a2561e485_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/f6b5d9a940b4d50e26a0225a2561e485_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/f8c154c7f8d4bcd818e9bf3902f98168_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/f8c154c7f8d4bcd818e9bf3902f98168_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/f95fab4f8267d2e7e682462696d49092_out b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/CachedNodeOutput/f95fab4f8267d2e7e682462696d49092_out new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/TundraBuildState.state b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/TundraBuildState.state new file mode 100644 index 00000000..94b281a6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/TundraBuildState.state differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/TundraBuildState.state.map b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/TundraBuildState.state.map new file mode 100644 index 00000000..496e19f0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/TundraBuildState.state.map differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll new file mode 100644 index 00000000..a1e7e8b8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp new file mode 100644 index 00000000..189d18cb --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp @@ -0,0 +1,118 @@ +Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_24F40B351B9ACD85.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Performance.Profile-Analyzer.Editor.ref.dll_FC7FE7C2525DF555.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_F0D9BA1F3F167740.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9145F68A59D35CE5.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Sysroot.Linux_x86_64.ref.dll_47C0B0C1257E42B5.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll_74E155EA2BEE38FD.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll_3B45F137F1F80EEA.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.ref.dll_4F7EA18A8F1A3B43.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_B8A961BBD8ABE0FC.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_8DB7A3E3632A4E05.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_53B6806BAD4EBBBC.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_5AB3C2EE9968C745.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Toolchain.Linux-x86_64.ref.dll_1D7A0D228D2803C9.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_B8324D455948C852.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_F54BA3F421A71E21.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E3BEEDFEAAF21AA5.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_45A2A186C05004D7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.pdb new file mode 100644 index 00000000..0c600b4b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.ref.dll new file mode 100644 index 00000000..428abf34 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp new file mode 100644 index 00000000..b8625b75 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp @@ -0,0 +1,386 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_STANDARD_2_0 +-define:NET_STANDARD +-define:NET_STANDARD_2_1 +-define:NETSTANDARD +-define:NETSTANDARD2_1 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Assets/AsteroidScript.cs" +"Assets/GameManagerScript.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + + + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp2 new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll new file mode 100644 index 00000000..24ffd851 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..e1a4f12b --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm.rsp @@ -0,0 +1,112 @@ +Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_F0D9BA1F3F167740.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.pdb new file mode 100644 index 00000000..e88f6fb4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.ref.dll new file mode 100644 index 00000000..f2db8aa5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp new file mode 100644 index 00000000..b7acf2a9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp @@ -0,0 +1,383 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Toolbar/ToolbarButton.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll new file mode 100644 index 00000000..6bd3da70 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..1caf5bbc --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm.rsp @@ -0,0 +1,111 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.pdb new file mode 100644 index 00000000..98fd7f1f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.ref.dll new file mode 100644 index 00000000..e6ee06fc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp new file mode 100644 index 00000000..63c2b84c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp @@ -0,0 +1,385 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.editorcoroutines@1.0.0/Editor/EditorCoroutine.cs" +"Library/PackageCache/com.unity.editorcoroutines@1.0.0/Editor/EditorCoroutineUtility.cs" +"Library/PackageCache/com.unity.editorcoroutines@1.0.0/Editor/EditorWaitForSeconds.cs" +"Library/PackageCache/com.unity.editorcoroutines@1.0.0/Editor/EditorWindowCoroutineExtension.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll new file mode 100644 index 00000000..de8f6802 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..1caf5bbc --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm.rsp @@ -0,0 +1,111 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.pdb new file mode 100644 index 00000000..4f66f6cc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.ref.dll new file mode 100644 index 00000000..4be1038b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp new file mode 100644 index 00000000..526363f8 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp @@ -0,0 +1,414 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/Analytics.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/AssemblyInfo.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/BoxAndWhiskerPlot.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/Columns.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ComparisonTable.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/DepthSliceDropdown.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/DepthSliceUI.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/Draw2D.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/FrameSummary.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/FrameTime.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/FrameTimeGraph.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/Histogram.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/MarkerColumnFilter.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/MarkerData.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/MarkerPairing.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfileAnalysis.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfileAnalyzer.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfileAnalyzerExportWindow.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfileAnalyzerWindow.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfileData.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfileDataView.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfileTable.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProfilerWindowInterface.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ProgressBarDisplay.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ThreadData.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ThreadFrameTime.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ThreadIdentifier.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ThreadSelection.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/ThreadSelectionWindow.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/TimingOptions.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/TopMarkerList.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/TopMarkers.cs" +"Library/PackageCache/com.unity.performance.profile-analyzer@1.2.2/Editor/Units.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll new file mode 100644 index 00000000..d3025485 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..934664ee --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp @@ -0,0 +1,106 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.pdb new file mode 100644 index 00000000..96af2d2f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.ref.dll new file mode 100644 index 00000000..62ab9453 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp new file mode 100644 index 00000000..b4b7fae6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp @@ -0,0 +1,664 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/ApplicationDataPath.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssemblyInfo.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetFilesFilterPatternsMenuBuilder.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuItems.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuOperations.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetOperations.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetsSelection.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialogOperations.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/ProjectViewAssetSelection.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/AssetStatus.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/AssetStatusCache.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/BuildPathDictionary.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LocalStatusCache.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LockStatusCache.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/RemoteStatusCache.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/SearchLocks.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/DrawAssetOverlay.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/AssetsPath.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/GetSelectedPaths.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/LoadAsset.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetModificationProcessor.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetPostprocessor.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetsProcessor.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/PlasticAssetsProcessor.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/WorkspaceOperationsMonitor.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/ProjectPath.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RefreshAsset.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RepaintInspector.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/SaveAssets.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AutoRefresh.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CheckWorkspaceTreeNodeStatus.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CloudProjectDownloader.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CommandLineArguments.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/DownloadRepositoryOperation.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/ParseArguments.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrateCollabProject.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationProgressRender.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabPlugin.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/AutoConfig.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/ChannelCertificateUiImpl.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/AutoLogin.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/CloudEditionWelcomeWindow.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/OrganizationPanel.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/SignInPanel.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/SignInWithEmailPanel.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/WaitingSignInPanel.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/ConfigurePartialWorkspace.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CredentialsDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CredentialsUIImpl.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/EncryptionConfigurationDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/MissingEncryptionPasswordPromptHandler.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/SSOCredentialsDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/TeamEdition/TeamEditionConfigurationWindow.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/ToolConfig.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/WriteLogConfiguration.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/CheckinProgress.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/GenericProgress.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/IncomingChangesNotifier.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/ProgressOperationHandler.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/UpdateProgress.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportLineListViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportListHeaderState.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Developer/UpdateReport/UpdateReportListView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/DrawGuiModeSwitcher.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/EnumExtensions.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/FindWorkspace.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/GetRelativePath.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/CheckinProgress.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/IncomingChangesNotifier.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/ProgressOperationHandler.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/UpdateProgress.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/UpdateReport/ErrorListViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/UpdateReport/UpdateReportDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/UpdateReport/UpdateReportListHeaderState.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Gluon/UpdateReport/UpdateReportListView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/BuildFormattedHelp.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/DrawHelpPanel.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/HelpData.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/HelpFormat.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/HelpLink.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/HelpLinkData.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/HelpPanel.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Help/TestingHelpData.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Inspector/DrawInspectorOperations.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Inspector/InspectorAssetSelection.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/MetaPath.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/NewIncomingChanges.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/ParentWindow.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticApp.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticConnectionMonitor.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticMenuItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticNotification.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticPlugin.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticPluginIsEnabledPreference.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticProjectSettingsProvider.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/PlasticWindow.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/ProjectWindow.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/QueryVisualElementsExtensions.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/SceneView/DrawSceneOperations.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/SetupCloudProjectId.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/SwitchModeConfirmationDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Tool/BringWindowToFront.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Tool/FindTool.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Tool/IsExeAvailable.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Tool/LaunchInstaller.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Tool/LaunchTool.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Tool/ToolConstants.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Avatar/ApplyCircleMask.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Avatar/AvatarImages.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Avatar/GetAvatar.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/BoolSetting.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/CloseWindowIfOpened.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/CooldownWindowDelayer.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DockEditorWindow.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DrawActionButton.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DrawActionHelpBox.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DrawActionToolbar.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DrawSearchField.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DrawSplitter.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DrawTextBlockWithEndLink.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DrawUserIcon.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/DropDownTextField.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/EditorDispatcher.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/EditorProgressBar.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/EditorProgressControls.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/EditorVersion.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/EditorWindowFocus.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/EnumPopupSetting.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/FindEditorWindow.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/GUIActionRunner.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/GUISpace.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/GetPlasticShortcut.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/GuiEnabled.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/HandleMenuItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Images.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/MeasureMaxWidth.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Message/DrawDialogIcon.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Message/PlasticQuestionAlert.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/OverlayRect.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/PlasticDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/PlasticSplitterGUILayout.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/DrawProgressForDialogs.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/DrawProgressForMigration.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/DrawProgressForOperations.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/DrawProgressForViews.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/OperationProgressData.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/ProgressControlsForDialogs.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/ProgressControlsForMigration.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Progress/ProgressControlsForViews.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/ResponseType.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/RunModal.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/ScreenResolution.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/ShowWindow.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/SortOrderComparer.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/StatusBar/IncomingChangesNotification.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/StatusBar/NotificationBar.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/StatusBar/StatusBar.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/TabButton.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/DrawTreeViewEmptyState.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/DrawTreeViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/GetChangesOverlayIcon.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/ListViewItemIds.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/TableViewOperations.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/TreeHeaderColumns.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/TreeHeaderSettings.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/Tree/TreeViewItemIds.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UIElements/LoadingSpinner.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UIElements/ProgressControlsForDialogs.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UIElements/UIElementsExtensions.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UnityConstants.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UnityEvents.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UnityMenuItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UnityPlasticGuiMessage.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UnityPlasticTimer.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UnityStyles.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UI/UnityThreadWaiter.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/UnityConfigurationChecker.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/VCSPlugin.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/ViewSwitcher.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/BranchListViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/BranchesListHeaderState.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/BranchesListView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/BranchesSelection.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/BranchesTab.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/BranchesViewMenu.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/CreateBranchDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Branch/Dialogs/RenameBranchDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/ChangesetListViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/ChangesetsListHeaderState.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/ChangesetsListView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/ChangesetsSelection.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/ChangesetsTab.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/ChangesetsTab_Operations.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/ChangesetsViewMenu.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/DateFilter.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Changesets/LaunchDiffOperations.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/ConfirmContinueWithPendingChangesDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/CreateWorkspaceView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/CreateWorkspaceViewState.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/CreateRepositoryDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoriesListHeaderState.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoriesListView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoryExplorerDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/Dialogs/RepositoryListViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/DrawCreateWorkspaceView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/CreateWorkspace/ValidRepositoryName.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/ChangeCategoryTreeViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/ClientDiffTreeViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/Dialogs/GetRestorePathDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/DiffPanel.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/DiffSelection.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/DiffTreeView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/DiffTreeViewMenu.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/GetClientDiffInfos.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/MergeCategoryTreeViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Diff/UnityDiffTree.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/DownloadPlasticExeWindow.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/FileSystemOperation.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/History/HistoryListHeaderState.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/History/HistoryListView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/History/HistoryListViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/History/HistoryListViewMenu.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/History/HistorySelection.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/History/HistoryTab.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/History/SaveAction.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/ChangeCategoryTreeViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/ChangeTreeViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/DirectoryConflicts/ConflictResolutionState.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/DirectoryConflicts/DrawDirectoryResolutionPanel.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesSelection.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesTab.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesTreeHeaderState.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesTreeView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/IncomingChangesViewMenu.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/IsCurrent.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/IsResolved.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Developer/UnityIncomingChangesTree.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/DrawIncomingChangesOverview.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/ChangeCategoryTreeViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/ChangeTreeViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/Errors/ErrorListViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/Errors/ErrorsListHeaderState.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/Errors/ErrorsListView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesSelection.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesTab.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesTreeHeaderState.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesTreeView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/IncomingChangesViewMenu.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/Gluon/UnityIncomingChangesTree.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/IIncomingChangesTab.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/ChangeCategoryTreeViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/ChangeTreeViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/ChangelistTreeViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Changelists/ChangelistMenu.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Changelists/MoveToChangelistMenuBuilder.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/CheckinConflictsDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/CreateChangelistDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/DependenciesDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/EmptyCheckinMessageDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/FilterRulesConfirmationDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/LaunchCheckinConflictsDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/LaunchDependenciesDialog.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/DrawCommentTextArea.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/FilesFilterPatternsMenuBuilder.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesMultiColumnHeader.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesSelection.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTab.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTab_Operations.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTreeHeaderState.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesTreeView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesViewMenu.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingChangesViewPendingChangeMenu.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingMergeLinks/MergeLinkListViewItem.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/PendingMergeLinks/MergeLinksListView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/UnityPendingChangesTree.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Welcome/DownloadAndInstallOperation.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Welcome/GetInstallerTmpFileName.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Welcome/MacOSConfigWorkaround.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/Welcome/WelcomeView.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/VisualElementExtensions.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WebApi/ChangesetFromCollabCommitResponse.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WebApi/CredentialsResponse.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WebApi/CurrentUserAdminCheckResponse.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WebApi/IsCollabProjectMigratedResponse.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WebApi/OrganizationCredentials.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WebApi/TokenExchangeResponse.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WebApi/WebRestApiClient.cs" +"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/WorkspaceWindow.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll new file mode 100644 index 00000000..97a79a07 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..698f1135 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp @@ -0,0 +1,105 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.pdb new file mode 100644 index 00000000..87cf63c8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.ref.dll new file mode 100644 index 00000000..17b9d4db Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp new file mode 100644 index 00000000..a13a99c6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp @@ -0,0 +1,412 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:TEST_FRAMEWORK +-define:ROSLYN_ANALYZER_FIX +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Discovery.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/EditorPluginInterop.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/LoggingLevel.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/PluginSettings.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/PostProcessors/RiderAssetPostprocessor.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/AssemblyNameProvider.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/FileIOProvider.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/GUIDProvider.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/IAssemblyNameProvider.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/IFileIO.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/IGUIDGenerator.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/IGenerator.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/LastWriteTracker.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/PackageManagerTracker.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/ProjectGeneration.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/ProjectGenerationFlag.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/ProjectPart.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/ProjectGeneration/SolutionGuidGenerator.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Properties/AssemblyInfo.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/RiderInitializer.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/RiderScriptEditor.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/RiderScriptEditorData.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/RiderScriptEditorDataPersisted.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/RiderStyles.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/StartUpMethodExecutor.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/UnitTesting/CallbackData.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/UnitTesting/CallbackInitializer.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/UnitTesting/RiderTestRunner.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/UnitTesting/SyncTestRunCallback.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/UnitTesting/SyncTestRunEventsHandler.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/UnitTesting/TestEvent.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/UnitTesting/TestsCallback.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Util/CommandLineParser.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Util/FileSystemUtil.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Util/LibcNativeInterop.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Util/RiderMenu.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Util/RiderPathUtil.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Util/SerializableVersion.cs" +"Library/PackageCache/com.unity.ide.rider@3.0.24/Rider/Editor/Util/StringUtils.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll new file mode 100644 index 00000000..04aa0f1b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..1caf5bbc --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp @@ -0,0 +1,111 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.pdb new file mode 100644 index 00000000..d1b3b0dd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.ref.dll new file mode 100644 index 00000000..47baabe6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp new file mode 100644 index 00000000..6138fe9f --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp @@ -0,0 +1,394 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/Attributes.cs" +"Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/FileSettingsRepository.cs" +"Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/ISettingsRepository.cs" +"Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/PackageSettingsRepository.cs" +"Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/ProjectUserSettings.cs" +"Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/Settings.cs" +"Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/SettingsDictionary.cs" +"Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/SettingsGUILayout.cs" +"Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/UserSetting.cs" +"Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/UserSettings.cs" +"Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/UserSettingsProvider.cs" +"Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/UserSettingsRepository.cs" +"Library/PackageCache/com.unity.settings-manager@2.0.1/Editor/ValueWrapper.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll new file mode 100644 index 00000000..32f7985e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm.rsp new file mode 100644 index 00000000..670becc3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm.rsp @@ -0,0 +1,112 @@ +Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.pdb new file mode 100644 index 00000000..1e0b7eec Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.ref.dll new file mode 100644 index 00000000..97023ae9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp new file mode 100644 index 00000000..01440863 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp @@ -0,0 +1,383 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.sysroot.linux-x86_64@2.0.6/Editor/Unity.Sysroot.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll new file mode 100644 index 00000000..621f754d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..1caf5bbc --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm.rsp @@ -0,0 +1,111 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.pdb new file mode 100644 index 00000000..1b8e940a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.ref.dll new file mode 100644 index 00000000..3cd4a572 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp new file mode 100644 index 00000000..712e8bb5 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp @@ -0,0 +1,384 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.sysroot@2.0.7/Editor/AssemblyInfo.cs" +"Library/PackageCache/com.unity.sysroot@2.0.7/Editor/NiceIO.cs" +"Library/PackageCache/com.unity.sysroot@2.0.7/Editor/Unity.SysrootPackage.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll new file mode 100644 index 00000000..942807f4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm.rsp new file mode 100644 index 00000000..1caf5bbc --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm.rsp @@ -0,0 +1,111 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.pdb new file mode 100644 index 00000000..17eb2b22 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll new file mode 100644 index 00000000..1957e13e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp new file mode 100644 index 00000000..c91ee874 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp @@ -0,0 +1,396 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/BranchPoint.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/Class.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/CoverageSession.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/File.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/HelperExtensions.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/IDocumentReference.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/InstrumentationPoint.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/Method.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/Module.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/SequencePoint.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/SkippedEntity.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/SkippedMethod.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/Summary.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/SummarySkippedEntity.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Model/TrackedMethod.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll new file mode 100644 index 00000000..b95a759a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm.rsp new file mode 100644 index 00000000..1caf5bbc --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm.rsp @@ -0,0 +1,111 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.pdb new file mode 100644 index 00000000..2c866a9f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll new file mode 100644 index 00000000..85a626b1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp new file mode 100644 index 00000000..8dcc9b9c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp @@ -0,0 +1,385 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Mono.Reflection/ByteBuffer.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Mono.Reflection/Disassembler.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Mono.Reflection/Instruction.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/Mono.Reflection/MethodBodyReader.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll new file mode 100644 index 00000000..d221fc6b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..6deee847 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm.rsp @@ -0,0 +1,108 @@ +Library/Bee/artifacts/mvdfrm/Unity.Settings.Editor.ref.dll_C5D459AC3FA0C65A.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll_74E155EA2BEE38FD.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll_3B45F137F1F80EEA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.pdb new file mode 100644 index 00000000..11c51a1d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.ref.dll new file mode 100644 index 00000000..30816ded Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp new file mode 100644 index 00000000..46a3ab06 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp @@ -0,0 +1,428 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CONDITIONAL_IGNORE_SUPPORTED +-define:TEST_FRAMEWORK_1_1_18_OR_NEWER +-define:NO_COV_EDITORPREF +-define:TEST_FRAMEWORK_1_3_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Analytics/CoverageAnalytics.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Analytics/CoverageAnalyticsEnums.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Analytics/CoverageAnalyticsEvent.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/AssemblyInfo.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CodeCoverage.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CommandLineManager.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CommandLineParser/CommandLineOption.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CommandLineParser/CommandLineOptionSet.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CommandLineParser/ICommandLineOption.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/CoverageFormat.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/CyclomaticComplexity.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/OpenCoverReporter.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/OpenCoverReporterFilter.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/OpenCoverReporterStyles.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageFormats/OpenCover/OpenCoverResultWriter.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoveragePreferences.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageReportType.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageReporterListener.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageReporterManager.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageResultWriterBase.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageRunData.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageSettings.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageStats/CoverageStats.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageStats/ICoverageStatsProvider.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/CodeCoverageWindow.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/FolderDropDownMenu.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/FolderType.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/IncludedAssembliesPopupWindow.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/IncludedAssembliesTreeView.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/PathFilterType.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/PathToAddDropDownMenu.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/CoverageWindow/PathToAddHandler.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Events/CoverageEventData.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Events/Events.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Events/SessionEventInfo.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Events/SessionMode.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Filtering/AssemblyFiltering.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Filtering/JsonFileFilterSchema.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Filtering/PathFiltering.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/ICoverageReporter.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/ICoverageReporterFilter.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Icons/EditorIcons.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Logging/LogVerbosityLevel.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Logging/ResultsLogger.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Replacing/PathReplacing.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/ReportGenerator/CoverageReportGenerator.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/ReportGenerator/ReportGeneratorStyles.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Utils/CoverageUtils.cs" +"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/Editor/Utils/JsonUtils.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll new file mode 100644 index 00000000..e394430c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..31673a86 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp @@ -0,0 +1,112 @@ +Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_8DB7A3E3632A4E05.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.pdb new file mode 100644 index 00000000..46435642 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.ref.dll new file mode 100644 index 00000000..5e1f545b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp new file mode 100644 index 00000000..011264eb --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp @@ -0,0 +1,430 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/DropdownOptionListDrawer.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/GlyphInfoDrawer.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/GlyphMetricsPropertyDrawer.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/GlyphRectPropertyDrawer.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_BaseEditorPanel.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_BaseShaderGUI.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_BitmapShaderGUI.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_CharacterPropertyDrawer.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_ColorGradientAssetMenu.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_ColorGradientEditor.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_DropdownEditor.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_EditorCoroutine.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_EditorPanel.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_EditorPanelUI.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_EditorUtility.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_FontAssetEditor.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_FontAsset_CreationMenu.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_GlyphPairAdjustmentRecordPropertyDrawer.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_GlyphPropertyDrawer.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_InputFieldEditor.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_MeshRendererEditor.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_PackageUtilities.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_PostBuildProcessHandler.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_PreBuildProcessor.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_ProjectTextSettings.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_ResourcesLoader.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SDFShaderGUI.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SerializedPropertyHolder.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SettingsEditor.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteAssetEditor.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteAssetImporter.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteAssetMenu.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteCharacterPropertyDrawer.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SpriteGlyphPropertyDrawer.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_StyleAssetMenu.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_StyleSheetEditor.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SubMeshUI_Editor.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_SubMesh_Editor.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_TextAlignmentDrawer.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMP_UIStyleManager.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_ContextMenus.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_CreateObjectMenu.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_EditorShaderUtilities.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_FontAssetCreatorWindow.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_FontPlugin.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_SortingLayerHelper.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_TextContainerEditor.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_TexturePostProcessor.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll new file mode 100644 index 00000000..0a871907 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp new file mode 100644 index 00000000..b6aa24dc --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp @@ -0,0 +1,107 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.pdb new file mode 100644 index 00000000..cb9a8484 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.ref.dll new file mode 100644 index 00000000..6fca2a57 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp new file mode 100644 index 00000000..6e89bd83 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp @@ -0,0 +1,434 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_STANDARD_2_0 +-define:NET_STANDARD +-define:NET_STANDARD_2_1 +-define:NETSTANDARD +-define:NETSTANDARD2_1 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/AssemblyInfo.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/FastAction.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/ITextPreProcessor.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/MaterialReferenceManager.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Asset.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Character.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_CharacterInfo.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ColorGradient.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Compatibility.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_CoroutineTween.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_DefaultControls.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Dropdown.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_EditorResourceManager.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontAsset.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontAssetCommon.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontAssetUtilities.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontFeatureTable.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_FontFeaturesCommon.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_InputField.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_InputValidator.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_LineInfo.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ListPool.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_MaterialManager.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_MeshInfo.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ObjectPool.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_PackageResourceImporter.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ResourcesManager.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_RichTextTagsCommon.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ScrollbarEventHandler.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SelectionCaret.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Settings.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_ShaderUtilities.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Sprite.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteAnimator.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteAsset.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteAssetImportFormats.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteCharacter.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SpriteGlyph.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Style.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_StyleSheet.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SubMesh.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SubMeshUI.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Text.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextElement.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextElement_Legacy.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextInfo.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextParsingUtilities.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextProcessingStack.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextUtilities.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_UpdateManager.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_UpdateRegistery.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_EventManager.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_ExtensionMethods.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_MeshUtilities.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_Private.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMPro_UGUI_Private.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TextContainer.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TextMeshPro.cs" +"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TextMeshProUGUI.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll new file mode 100644 index 00000000..f1bfc6b0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..854a33d0 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp @@ -0,0 +1,112 @@ +Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_5AB3C2EE9968C745.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.pdb new file mode 100644 index 00000000..44a71552 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.ref.dll new file mode 100644 index 00000000..15850a94 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp new file mode 100644 index 00000000..3a3b157c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp @@ -0,0 +1,654 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:TIMELINE_FRAMEACCURATE +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/ActionContext.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/ActionManager.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/ClipAction.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/ClipsActions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/IAction.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/IMenuChecked.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/IMenuName.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/Invoker.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/MarkerAction.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/MarkerActions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/Menus/MenuItemActionBase.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/Menus/TimelineContextMenu.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/TimelineAction.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/TimelineActions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/TrackAction.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Actions/TrackActions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Activation/ActivationTrackEditor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Activation/ActivationTrackInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Analytics/TimelineAnalytics.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/AnimationClipActions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/AnimationClipCurveCache.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/AnimationClipExtensions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/AnimationOffsetMenu.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/AnimationPlayableAssetEditor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/AnimationTrackActions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/BindingSelector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/BindingTreeViewDataSource.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/BindingTreeViewDataSourceGUI.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/ClipCurveEditor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/CurveDataSource.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/CurveTreeViewNode.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/CurvesProxy.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Animation/TimelineAnimationUtilities.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Attributes/ActiveInModeAttribute.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Attributes/MenuEntryAttribute.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Attributes/ShortcutAttribute.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Attributes/TimelineShortcutAttribute.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Audio/AudioClipPropertiesDrawer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Audio/AudioPlayableAssetEditor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Audio/AudioPlayableAssetInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Audio/AudioTrackInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/ControlTrack/ControlPlayableAssetEditor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/CurveEditUtility.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/CustomEditors/ClipEditor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/CustomEditors/CustomTimelineEditorCache.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/CustomEditors/MarkerEditor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/CustomEditors/MarkerTrackEditor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/CustomEditors/TrackEditor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/DirectorNamedColor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/DirectorStyles.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Extensions/AnimatedParameterExtensions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Extensions/AnimationTrackExtensions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Extensions/TrackExtensions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Items/ClipItem.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Items/ITimelineItem.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Items/ItemsGroup.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Items/ItemsPerTrack.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Items/ItemsUtils.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Items/MarkerItem.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Localization/Localization.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/AddDelete/AddDeleteItemModeMix.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/AddDelete/AddDeleteItemModeReplace.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/AddDelete/AddDeleteItemModeRipple.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/AddDelete/IAddDeleteItemMode.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Cursors/TimelineCursors.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/EditMode.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/EditModeInputHandler.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/HeaderSplitterManipulator.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Move/IMoveItemMode.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Move/MoveItemHandler.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Move/MoveItemModeMix.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Move/MoveItemModeReplace.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Move/MoveItemModeRipple.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Move/MovingItems.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/EaseClip.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/Jog.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/MarkerHeaderTrackManipulator.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/RectangleSelect.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/RectangleTool.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/RectangleZoom.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/SelectAndMoveItem.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/TrackZoom.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/TrimClip.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/TimeAreaAutoPanner.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/TimeIndicator.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/TimelineClipGroup.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Trim/ITrimItemMode.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Trim/TrimItemModeMix.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Trim/TrimItemModeReplace.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Trim/TrimItemModeRipple.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/EditModeGUIUtils.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/EditModeMixUtils.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/EditModeReplaceUtils.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/EditModeRippleUtils.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/EditModeUtils.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/ManipulatorsUtils.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/PlacementValidity.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/MenuPriority.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Playables/ControlPlayableInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Properties/AssemblyInfo.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Recording/AnimationTrackRecorder.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Recording/TimelineRecording.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Recording/TimelineRecordingContextualResponder.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Recording/TimelineRecording_Monobehaviour.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Recording/TimelineRecording_PlayableAsset.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Recording/TrackAssetRecordingExtensions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Shortcuts.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalAssetInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalEmitterEditor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalEmitterInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalEventDrawer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalManager.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalReceiverHeader.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalReceiverInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/SignalUtility.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/Styles.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/TreeView/SignalListFactory.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/TreeView/SignalReceiverItem.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/TreeView/SignalReceiverTreeView.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/State/ISequenceState.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/State/PlayRange.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/State/SequenceHierarchy.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/State/SequencePath.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/State/SequenceState.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/State/WindowState.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/TimelineEditor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/TimelineHelpers.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/TimelineSelection.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/TimelineUtility.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Tooltip.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Trackhead.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Undo/ApplyDefaultUndoAttribute.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Undo/UndoExtensions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Undo/UndoScope.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/UnityEditorInternals.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/AnimatedParameterCache.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/AnimatedParameterUtility.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/AnimatedPropertyUtility.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/BindingUtility.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/BreadcrumbDrawer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/ClipModifier.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Clipboard.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/ControlPlayableUtility.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/CustomTrackDrawerAttribute.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/DisplayNameHelper.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/FileUtility.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/FrameRateDisplayUtility.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Graphics.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/KeyTraverser.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/MarkerModifier.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/ObjectExtension.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/ObjectReferenceField.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/PropertyCollector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Range.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/GUIColorOverride.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/GUIGroupScope.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/GUIMixedValueScope.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/GUIViewportScope.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/HorizontalScope.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/IndentLevelScope.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/LabelWidthScope.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/PropertyScope.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/SequenceSelectorNameFormater.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/SpacePartitioner.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/StyleManager.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/StyleNormalColorOverride.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/TimeFormat.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/TimeReferenceUtility.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/TimelineKeyboardNavigation.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/TrackModifier.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/TrackResourceCache.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/TypeUtility.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/Modes/TimeReferenceMode.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/Modes/TimelineActiveMode.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/Modes/TimelineAssetEditionMode.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/Modes/TimelineDisabledMode.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/Modes/TimelineInactiveMode.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/Modes/TimelineMode.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/Modes/TimelineReadOnlyMode.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/OverlayDrawer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/PlaybackScroller.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/SequenceContext.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineEditorWindow.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineMarkerHeaderGUI.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineNavigator.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelinePlaybackControls.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindowAnalytics.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindowTimeControl.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_ActiveTimeline.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_Breadcrumbs.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_Duration.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_EditorCallbacks.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_Gui.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_HeaderGui.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_Manipulators.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_Navigator.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_PlayRange.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_PlayableLookup.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_PlaybackControls.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_PreviewPlayMode.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_Selection.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_StateChange.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_TimeArea.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_TimeCursor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/TimelineWindow_TrackGui.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/ViewModel/ScriptableObjectViewPrefs.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/ViewModel/TimelineAssetViewModel.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/ViewModel/TimelineAssetViewModel_versions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/ViewModel/TimelineWindowViewPrefs.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Window/WindowConstants.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/AnimationPlayableAssetInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/AnimationTrackInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/BasicAssetInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/BuiltInCurvePresets.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/ClipInspector/ClipInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/ClipInspector/ClipInspectorCurveEditor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/ClipInspector/ClipInspectorSelectionInfo.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/CurvesOwner/CurvesOwnerInspectorHelper.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/CurvesOwner/ICurvesOwnerInspectorWrapper.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/DirectorNamedColorInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/EditorClip.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/EditorClipFactory.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/FrameRateDrawer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/GroupTrackInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/IInspectorChangeHandler.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/MarkerInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/TimeFieldDrawer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/TimelineAssetInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/TimelineInspectorUtility.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/TimelinePreferences.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/TimelineProjectSettings.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/inspectors/TrackAssetInspector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/AnimationTrackKeyDataSource.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Control.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/AnimationTrackDrawer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/ClipDrawer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/InfiniteTrackDrawer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/Layers/ClipsLayer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/Layers/ItemsLayer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/Layers/MarkersLayer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/TrackDrawer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Drawers/TrackItemsDrawer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/IPropertyKeyDataSource.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/IRowGUI.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ItemGui/ISelectable.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ItemGui/TimelineClipGUI.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ItemGui/TimelineItemGUI.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ItemGui/TimelineMarkerClusterGUI.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ItemGui/TimelineMarkerGUI.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ManipulationsClips.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ManipulationsTimeline.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/ManipulationsTracks.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Manipulator.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/PickerUtils.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Snapping/IAttractable.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Snapping/ISnappable.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/Snapping/SnapEngine.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TimelineClipHandle.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TimelineClipUnion.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TimelineDataSource.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TimelineDragging.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TimelineTreeView.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TimelineTreeViewGUI.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TrackGui/InlineCurveEditor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TrackGui/TimelineGroupGUI.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TrackGui/TimelineTrackBaseGUI.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TrackGui/TimelineTrackErrorGUI.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TrackGui/TimelineTrackGUI.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TrackGui/TrackResizeHandle.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Editor/treeview/TrackPropertyCurvesDataSource.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll new file mode 100644 index 00000000..54aa59db Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm.rsp new file mode 100644 index 00000000..b6aa24dc --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm.rsp @@ -0,0 +1,107 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.pdb new file mode 100644 index 00000000..bd35168f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.ref.dll new file mode 100644 index 00000000..745b5bd4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp new file mode 100644 index 00000000..bcb586c6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp @@ -0,0 +1,449 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_STANDARD_2_0 +-define:NET_STANDARD +-define:NET_STANDARD_2_1 +-define:NETSTANDARD +-define:NETSTANDARD2_1 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:TIMELINE_FRAMEACCURATE +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Activation/ActivationMixerPlayable.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Activation/ActivationPlayableAsset.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Activation/ActivationTrack.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Animation/AnimationOutputWeightProcessor.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Animation/AnimationPlayableAsset.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Animation/AnimationPreviewUpdateCallback.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Animation/AnimationTrack.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Animation/ICurvesOwner.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/AssetUpgrade/AnimationPlayableAssetUpgrade.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/AssetUpgrade/AnimationTrackUpgrade.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/AssetUpgrade/ClipUpgrade.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/AssetUpgrade/TimelineUpgrade.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/AssetUpgrade/TrackUpgrade.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Attributes/TimelineHelpURLAttribute.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Attributes/TrackColorAttribute.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Audio/AudioClipProperties.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Audio/AudioMixerProperties.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Audio/AudioPlayableAsset.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Audio/AudioTrack.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/ClipCaps.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Control/ControlPlayableAsset.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Control/ControlTrack.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/DiscreteTime.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Evaluation/InfiniteRuntimeClip.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Evaluation/IntervalTree.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Evaluation/RuntimeClip.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Evaluation/RuntimeClipBase.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Evaluation/RuntimeElement.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Evaluation/ScheduleRuntimeClip.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/IMarker.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/INotificationOptionProvider.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/Marker.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/MarkerList.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/MarkerTrack.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/SignalTrack.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/Signals/CustomSignalEventDrawer.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/Signals/SignalAsset.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/Signals/SignalEmitter.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Events/Signals/SignalReceiver.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Extensions/TrackExtensions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/GroupTrack.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/ILayerable.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/ActivationControlPlayable.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/BasicScriptPlayable.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/DirectorControlPlayable.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/ITimeControl.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/NotificationFlags.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/ParticleControlPlayable.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/PrefabControlPlayable.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/TimeControlPlayable.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Playables/TimeNotificationBehaviour.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Properties/AssemblyInfo.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Scripting/PlayableTrack.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Timeline.deprecated.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/TimelineAsset.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/TimelineAsset_CreateRemove.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/TimelineAttributes.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/TimelineClip.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/TimelinePlayable.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/TrackAsset.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/AnimationPreviewUtilities.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/AnimatorBindingCache.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/Extrapolation.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/FrameRate.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/HashUtility.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/IPropertyCollector.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/IPropertyPreview.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/NotificationUtilities.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/TimeUtility.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/TimelineClipExtensions.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/TimelineCreateUtilities.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/TimelineUndo.cs" +"Library/PackageCache/com.unity.timeline@1.8.2/Runtime/Utilities/WeightUtility.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll new file mode 100644 index 00000000..c4aa0a78 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm.rsp new file mode 100644 index 00000000..bbef8192 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm.rsp @@ -0,0 +1,113 @@ +Library/Bee/artifacts/mvdfrm/Unity.Sysroot.Linux_x86_64.ref.dll_47C0B0C1257E42B5.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.pdb new file mode 100644 index 00000000..1202883d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.ref.dll new file mode 100644 index 00000000..4c6967c5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp new file mode 100644 index 00000000..e89d51a2 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp @@ -0,0 +1,384 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.toolchain.linux-x86_64@2.0.6/Editor/Unity.Toolchain.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll new file mode 100644 index 00000000..dd655927 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..3889b26e --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm.rsp @@ -0,0 +1,112 @@ +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.pdb new file mode 100644 index 00000000..4a222bec Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll new file mode 100644 index 00000000..333063d8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp new file mode 100644 index 00000000..316a7e89 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp @@ -0,0 +1,852 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/Analyser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/AnalyserAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/AnalyserProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/Analysis.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/GraphElementAnalysis.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/IAnalyser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/IAnalysis.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analysis/IGraphElementAnalysis.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analytics/Analytics.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analytics/AnalyticsUtilities.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analytics/HotkeyUsageAnalytics.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analytics/MigrationAnalytics.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analytics/NodeUsageAnalytics.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analytics/OnPreprocessBuildAnalytics.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Analytics/OnPreprocessBuildAnalyticsEventHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/AssetBundleCreator.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Assignment/Assigner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Assignment/Assignment.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Assignment/AssignsAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Assignment/IAssigner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/BoltGUI.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/BoltProduct.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/BoltStyles.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/AlignOperation.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/CanvasAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/CanvasControlScheme.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/CanvasProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/DistributeOperation.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/ICanvas.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/IGraphContextExtension.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/VisualScriptingCanvas.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Canvases/WidgetList.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphClipboard.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphContext.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphContextAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphContextExtension.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphContextExtensionAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphContextExtensionProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphContextMenuItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphContextProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/GraphSelection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Context/IGraphContext.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Debugging/GraphDebugDataProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Decorators/MultiDecoratorProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Decorators/SingleDecoratorProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/ElementAdderMenuBuilder.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/ElementAdderMenuCommandAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/ElementAdderMeta.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/GenericElementAdderMenu.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/GenericElementAdderMenuBuilder.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/IElementAdder.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/IElementAdderMenu.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/IElementAdderMenuBuilder.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ElementAdderMenu/IElementAdderMenuCommand.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/GenericListAdaptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/IReorderableListAdaptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/IReorderableListDropTarget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/Internal/GUIHelper.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/Internal/ReorderableListResources.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/Internal/SerializedPropertyUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListControl.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListEvents.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListFlags.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListGUI.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/ReorderableListStyles.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/ReorderableList/SerializedPropertyAdaptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/SQLite/SQLite.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/GraphDescription.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/GraphDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/GraphElementDescription.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/GraphItemDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/GraphNesterDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/IGraphDescription.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/IGraphElementDescription.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/IMachineDescription.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/IMacroDescription.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/MachineDescription.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/MachineDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/MacroDescription.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Description/MacroDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Descriptors/Description.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Descriptors/Descriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Descriptors/DescriptorAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Descriptors/DescriptorProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Descriptors/IDescription.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Descriptors/IDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Documentation/DocumentationGenerator.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Documentation/XmlDocumentation.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Documentation/XmlDocumentationTags.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Exceptions/EditorDebugUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Exceptions/UnityEditorInternalException.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Graph/GraphGUI.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Graph/GraphPointerData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Graph/LudiqGraphsEditorUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/DraggedListItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/EditorAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/EditorProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/EventMachineEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/GraphEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/GraphElementEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/GraphInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/GraphNestEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/ImplementationInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/IndividualEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/IndividualPropertyDrawer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Inspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/InspectorAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/InspectorBlock.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/InspectorImplementationOrderAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/InspectorProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/InspectorUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/MachineEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/MacroEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/MetadataCollectionAdaptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/MetadataDictionaryAdaptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/MetadataListAdaptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/OptimizedEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/OptimizedPropertyDrawer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Other/DictionaryAssetEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Other/SemanticVersionInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/BoolInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/ByteInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/CharInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/ContinuousNumberDrawer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/DecimalInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/DiscreteNumberInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/DoubleInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/FloatInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/GuidInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/IntInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/LongInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/SbyteInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/ShortInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/StringInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/UintInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/UlongInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Primitives/UshortInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Reflection/LooseAssemblyNameInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Reflection/MemberInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Reflection/NamespaceInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Reflection/TypeInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Root/LudiqBehaviourEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Root/LudiqRootObjectEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Root/LudiqScriptableObjectEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/AutomaticReflectedInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/CustomPropertyDrawerInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/DictionaryInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/EnumInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/KeyValuePairInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/ListInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/NullableInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/ReflectedInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/SystemObjectInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/TypeHandleInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/UnknownEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Special/UnknownInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/AnimationCurveInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/BoundsInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/ColorInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/LayerMaskInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/QuaternionInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/Ray2DInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/RayInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/RectInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/UnityObjectInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/Vector2Inspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/Vector3Inspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/Vector4Inspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Inspection/Unity/VectorInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Annotations/AnnotationDisabler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Colors/ColorPalette.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Colors/ColorUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Colors/SkinnedColor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/DragAndDrop/DragAndDropUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/DragAndDrop/IDragAndDropHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Dropdowns/DropdownOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Dropdowns/DropdownSeparator.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Dropdowns/IDropdownOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Edge.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/EditorTexture.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/EventWrapper.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fonts/FontCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fonts/FontVariant.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fonts/FontWeight.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/ExtensibleFuzzyOptionTree.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyGroup.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyGroupOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionNode.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionTree.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionTreeExtensionAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyOptionTreeExtensionProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/FuzzyWindow.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/IFuzzyOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/IFuzzyOptionTree.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Fuzzy/NullOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Icons/IconSize.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Icons/Icons.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Icons/LanguageIconSet.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Licenses/License.CCA3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Licenses/License.Iconmonstr.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Licenses/License.MIT.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/Licenses/License.MSPL.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/ListOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/LudiqGUI.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/LudiqGUIUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/LudiqStyles.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/SharedEditorTextureDictionary.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Interface/TextureResolution.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/CastMetadata.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/DictionaryIndexMetadata.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/DictionaryKeyAtIndexMetadata.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/DictionaryValueAtIndexMetadata.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/EditorPrefMetadata.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/IndexMetadata.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/IndexerMetadata.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/MemberMetadata.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/Metadata.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/ObjectMetadata.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/PluginConfigurationItemMetadata.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/ProjectSettingMetadata.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/ProxyMetadata.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Meta/RootMetadata.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/PackageEventListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/AccessorInfoStubWriter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/AotPreBuilder.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/AotStubWriter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/AotStubWriterAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/AotStubWriterProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/ConstructorInfoStubWriter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/EditorPlatformUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/FieldInfoStubWriter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/MemberInfoStubWriter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/MethodBaseStubWriter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/MethodInfoStubWriter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Platforms/PropertyInfoStubWriter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_AqnParser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_DeepCopy.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_DotNetZip.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_FatcowIcons.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_FullSerializer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_Iconmonstr.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_MD4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_ReorderableList.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_SQLite.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Acknowledgements/Acknowledgement_YamlDotNet.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/BoltCore.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/BoltCoreConfiguration.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/BoltCoreManifest.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/BoltCoreMigration.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/BoltCorePaths.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/BoltCoreResources.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_0_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_3_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_13.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/Changelog_1_4_5.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_5.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_0_6.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_2_4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_3_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_3_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_11.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_12.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_13.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_5.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_6.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_7.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_8.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqCore/Changelog_1_4_9.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_0_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_0_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_0_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_0_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_1_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_1_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_1_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_1_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_2_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_2_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_2_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_2_4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_3_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_5.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_6.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Changelogs/LegacyLudiqGraphs/Changelog_1_4_7.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_0_5_to_1_0_6.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_2_2_to_1_2_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_2_4_to_1_3_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_4_0_f5_to_1_4_0_f6.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_4_5_to_1_4_6.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_5_1_to_1_5_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_1_6_to_1_7.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/Migrations/Migration_Asset_to_Package.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugin/NamingSchemePage.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/EditorPrefAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/IPluginLinked.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/IPluginModule.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/InitializeAfterPluginsAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/Plugin.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginAcknowledgement.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginChangelog.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginConfiguration.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginConfigurationItemAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginContainer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginDependencyAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginManifest.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginMigration.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginModuleAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginModuleDependencyAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginResources.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginRuntimeAssemblyAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginSavedVersionMigration.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/PluginUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Plugins/ProjectSettingAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Product/LudiqProduct.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Products/Product.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Products/ProductAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Products/ProductContainer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Properties/AssemblyInfo.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/Codebase.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/CodebaseSubset.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/DocumentedOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/EnumOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/EnumOptionTree.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/LooseAssemblyNameOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/LooseAssemblyNameOptionTree.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/MemberOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/MemberOptionTree.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/NamespaceOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/ParameterStringMode.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/TypeOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Reflection/TypeOptionTree.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/ResourceProviders/AssemblyResourceProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/ResourceProviders/AssetBundleResourceProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/ResourceProviders/CreateTextureOptions.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/ResourceProviders/EditorAssetResourceProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/ResourceProviders/EmbeddedResourceProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/ResourceProviders/IResourceProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/SemanticLabel.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/SemanticVersion.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Serialization/MovedFromAttributeExtensions.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Serialization/SerializableTypeExtensions.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Serialization/TypeExtensions.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Serialization/TypeSerializer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/SerializedProperties/SerializedPropertyProviderProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/SerializedProperties/SerializedPropertyUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Threading/BackgroundWorker.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Threading/BackgroundWorkerAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Threading/ThreadableAssetWrapper.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/AnnotationUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/AssetBundleUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/AssetUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/BackupUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/Clipboard.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/ConsoleProfiler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/DefineUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/EditorApplicationUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/EditorFilteringUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/EditorLinqUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/EditorSerializationUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/EditorTimeUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/EditorTypeUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/EditorUnityObjectUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/FrameLimiterUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/IconExportUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/LudiqEditorUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/MD4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/MathfEx.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/NameUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/NativeUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/PackageVersionUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/PathUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/Paths.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/PluginPaths.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/ProgressUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/ReloadAssets.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/ScriptReference.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/ScriptReferenceReplacement.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/ScriptReferenceResolver.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/ScriptUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/SearchResult.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/SearchUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/UndoUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/UnityAPI.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/VSBackupUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/VSMigrationUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/VSUsageUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/VersionControlUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/Warning.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Utilities/WarningLevel.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/EditorVariablesUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/InspectorVariableFieldAttributeInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/VariableDeclarationInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/VariableDeclarationsInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/VariableNameInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/VariablesAssetEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/VariablesEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Variables/VariablesPanel.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/GraphElementWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Groups/GraphGroupEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Groups/GraphGroupInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Groups/GraphGroupWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/IGraphElementWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/IWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Nodes/INodeWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Nodes/NodeColor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Nodes/NodeColorMix.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Nodes/NodeShape.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Nodes/NodeWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/StickyNote/StickyNoteEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/StickyNote/StickyNoteInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/StickyNote/StickyNoteOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/StickyNote/StickyNoteWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/Widget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/WidgetAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Widgets/WidgetProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/AboutWindow/AboutPluginsPage.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/AboutWindow/AboutablePage.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/AboutWindow/AcknowledgementPage.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/AboutWindow/ChangelogPage.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/AboutWindow/IAboutable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/BackupWindow/BackupPage.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/ConfigurationPanel/ConfigurationPanel.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/EditorWindowWrapper.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/GenerateDocumentationWindow/GenerateDocumentationPage.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/GeneratePropertyProvidersWindow/GeneratePropertyProvidersPage.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/GraphInspectorPanel.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/GraphWindow.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/ICanvasWindow.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/ListPage.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/LudiqEditorWindow.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Page.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Sidebars/ISidebarPanelContent.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Sidebars/Sidebar.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Sidebars/SidebarAnchor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Sidebars/SidebarPanel.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Sidebars/SidebarPanelWindow.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Sidebars/Sidebars.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/SinglePageWindow.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/TabbedPage.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/UpdateWizard/UpdateBackupPage.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/WebView.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/WebWindow.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/WindowClose.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/Wizard.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Windows/WrappedEditorWindow.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll new file mode 100644 index 00000000..d336f4ca Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp new file mode 100644 index 00000000..b6aa24dc --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp @@ -0,0 +1,107 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.pdb new file mode 100644 index 00000000..1d59f219 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll new file mode 100644 index 00000000..33d00347 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp new file mode 100644 index 00000000..bfc82d13 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp @@ -0,0 +1,805 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_STANDARD_2_0 +-define:NET_STANDARD +-define:NET_STANDARD_2_1 +-define:NETSTANDARD +-define:NETSTANDARD2_1 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:MODULE_ANIMATION_EXISTS +-define:MODULE_PHYSICS_EXISTS +-define:MODULE_PHYSICS_2D_EXISTS +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/AnimationCurveCloner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/ArrayCloner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/DictionaryCloner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/EnumerableCloner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/FakeSerializationCloner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/FieldsCloner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/ListCloner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloners/ReflectedCloner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/Cloning.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/CloningContext.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/ICloner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Cloning/ISpecifiesCloner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/AotDictionary.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/AotList.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/DebugDictionary.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/FlexibleDictionary.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/GuidCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/IKeyedCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/IMergedCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/INotifiedCollectionItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/INotifyCollectionChanged.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/IProxyableNotifyCollectionChanged.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/ISet.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/MergedCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/MergedKeyedCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/MergedList.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/NoAllocEnumerator.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/NonNullableCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/NonNullableDictionary.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/NonNullableHashSet.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/NonNullableList.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/VariantCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/VariantKeyedCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/VariantList.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Collections/WatchedList.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Connections/ConnectionCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Connections/ConnectionCollectionBase.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Connections/GraphConnectionCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Connections/IConnection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Connections/IConnectionCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Connections/InvalidConnectionException.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Decorators/IDecoratorAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Decorators/ValueAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/AssemblyQualifiedNameParser/ParsedAssemblyQualifiedName.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/AnimationCurve_DirectConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/Bounds_DirectConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/GUIStyleState_DirectConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/GUIStyle_DirectConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/Gradient_DirectConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/InputAction_DirectConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/Keyframe_DirectConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/LayerMask_DirectConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/RectOffset_DirectConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/Rect_DirectConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/UnityEvent_Converter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsArrayConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsDateConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsDictionaryConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsEnumConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsForwardConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsGuidConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsIEnumerableConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsKeyValuePairConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsNullableConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsPrimitiveConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsReflectedConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsTypeConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsWeakReferenceConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsCyclicReferenceManager.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsPortableReflection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsTypeExtensions.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsVersionManager.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Internal/fsVersionedType.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Reflection/fsMetaProperty.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Reflection/fsMetaType.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Reflection/fsReflectionUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Reflection/fsTypeCache.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsAotCompilationManager.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsBaseConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsConfig.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsContext.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsConverterRegistrar.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsDirectConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsExceptions.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsISerializationCallbacks.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsIgnoreAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsJsonParser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsJsonPrinter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsMemberSerialization.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsObjectAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsObjectProcessor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsPropertyAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsResult.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/fsSerializer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/AllowsNullAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/DisableAnnotationAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/EditorBindingUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/EditorTimeBinding.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/ExpectedTypeAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/IInspectableAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/IncludeInSettingsAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/InspectableAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/InspectableIfAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectViaImplementationsAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorActionDirectionAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorAdaptiveWidthAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorDelayedAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorExpandTooltipAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorLabelAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorRangeAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorTextAreaAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorToggleLeftAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Inspector/InspectorWideAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/NullMeansSelfAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/PredictableAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/TypeIconAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/TypeIconPriorityAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/TypeSetAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Typeset.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/WarnBeforeEditingAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/WarnBeforeRemovingAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/Ensure.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Booleans.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Collections.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Comparables.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Guids.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.NullableValueTypes.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Objects.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Reflection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Strings.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.Types.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.ValueTypes.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/ExceptionMessages.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/Extensions/XComparable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/Extensions/XString.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/EmptyEventArgs.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/EventBus.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/EventHook.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/EventHookComparer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/EventHooks.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/EventMachine.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/FrameDelayedCallback.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/IEventGraph.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/IEventMachine.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Events/IGraphEventHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Exceptions/DebugUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Exceptions/InvalidConversionException.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Exceptions/InvalidImplementationException.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Exceptions/UnexpectedEnumValueException.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/Graph.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphDebugData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphElement.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphElementCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphInstances.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphNest.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphPointer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphPointerException.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphReference.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphSource.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphStack.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphsExceptionUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraph.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphDebugData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphElement.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphElementCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphElementData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphElementDebugData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphElementWithData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphElementWithDebugData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphNest.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphNester.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphNesterElement.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphParent.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphParentElement.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphRoot.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/MergedGraphElementCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Groups/GraphGroup.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Input/MouseButton.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Input/PressState.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/AnimatorMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/GlobalMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/IGraphEventListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/IGraphEventListenerData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnBecameInvisibleMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnBecameVisibleMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionEnter2DMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionEnterMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionExit2DMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionExitMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionStay2DMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnCollisionStayMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnControllerColliderHitMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnJointBreak2DMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnJointBreakMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseDownMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseDragMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseEnterMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseExitMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseOverMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseUpAsButtonMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseUpMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnParticleCollisionMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTransformChildrenChangedMListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTransformParentChangedMListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerEnter2DMListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerEnterMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerExit2DMListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerExitMListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerStay2DMListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnTriggerStayMListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnButtonClickMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnDropdownValueChangedMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnInputFieldEndEditMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnInputFieldValueChangedMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnScrollRectValueChangedMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnScrollbarValueChangedMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnSliderValueChangedMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UI/UnityOnToggleValueChangedMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnBeginDragMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnCancelMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnDeselectMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnDragMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnDropMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnEndDragMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnMoveMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerClickMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerDownMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerEnterMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerExitMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnPointerUpMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnScrollMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnSelectMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UIInterfaces/UnityOnSubmitMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/UnityMessageListener.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Machines/IMachine.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Machines/Machine.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Macros/IMacro.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Macros/Macro.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Platforms/AotIncompatibleAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Platforms/IAotStubbable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Platforms/PlatformUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Pooling/ArrayPool.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Pooling/DictionaryPool.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Pooling/GenericPool.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Pooling/HashSetPool.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Pooling/IPoolable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Pooling/ListPool.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Pooling/ManualPool.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Profiling/ProfiledSegment.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Profiling/ProfiledSegmentCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Profiling/ProfilingScope.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Profiling/ProfilingUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Properties/AssemblyInfo.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/ActionDirection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/AttributeUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/ConversionUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/GenericClosingException.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/IAttributeProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/IPrewarmable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/LooseAssemblyName.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Member.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/MemberFilter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/MemberInfoComparer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/MemberUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Namespace.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/AdditionHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/AmbiguousOperatorException.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/AndHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/BinaryOperator.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/BinaryOperatorHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/DecrementHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/DivisionHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/EqualityHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/ExclusiveOrHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/GreaterThanHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/GreaterThanOrEqualHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/IncrementHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/InequalityHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/InvalidOperatorException.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/LeftShiftHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/LessThanHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/LessThanOrEqualHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/LogicalNegationHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/ModuloHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/MultiplicationHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/NumericNegationHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/OperatorException.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/OperatorHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/OperatorUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/OrHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/PlusHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/RightShiftHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/SubtractionHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/UnaryOperator.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Operators/UnaryOperatorHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/Action_5.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/Action_6.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/Func_5.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/Func_6.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/IOptimizedAccessor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/IOptimizedInvoker.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvokerBase.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceActionInvoker_5.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFieldAccessor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvokerBase.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceFunctionInvoker_5.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstanceInvokerBase.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InstancePropertyAccessor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/InvokerBase.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/OptimizedReflection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/ReflectionFieldAccessor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/ReflectionInvoker.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/ReflectionPropertyAccessor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvokerBase.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticActionInvoker_5.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFieldAccessor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvokerBase.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticFunctionInvoker_5.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticInvokerBase.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/Optimization/StaticPropertyAccessor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/RenamedAssemblyAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/RenamedFromAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/RenamedNamespaceAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/RuntimeCodebase.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/TypeFilter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/TypeName.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/TypeNameDetail.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/TypeQualifier.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/TypeUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Reflection/TypesMatching.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/Converters/LooseAssemblyNameConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/Converters/NamespaceConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/Converters/Ray2DConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/Converters/RayConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/Converters/UnityObjectConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/DictionaryAsset.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/DoNotSerializeAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/ISerializationDependency.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/ISerializationDepender.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/SerializableType.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/Serialization.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/SerializationData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/SerializationOperation.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/SerializationVersionAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/SerializeAsAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Serialization/SerializeAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/SerializedProperties/ISerializedPropertyProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/SerializedProperties/SerializedPropertyProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/SerializedProperties/SerializedPropertyProviderAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/StickyNote/StickyNote.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/IGizmoDrawer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/ISingleton.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/IUnityObjectOwnable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/LudiqBehaviour.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/LudiqScriptableObject.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/MacroScriptableObject.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/RequiresUnityAPIAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/SceneSingleton.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/Singleton.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/SingletonAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/UnityObjectOwnershipUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Unity/UnityThread.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/CSharpNameUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/ComponentHolderProtocol.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/CoroutineRunner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/Empty.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/EnumUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/ExceptionUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/HashUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/IAnalyticsIdentifiable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/IGettable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/IIdentifiable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/IInitializable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/LinqUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/OverrideStack.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/Recursion.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/ReferenceCollector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/ReferenceEqualityComparer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/RuntimeVSUsageUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/StringUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/UnityObjectUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Utilities/XColor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/ApplicationVariables.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/IGraphDataWithVariables.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/IGraphWithVariables.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/InspectorVariableNameAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/ObjectVariables.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/SavedVariables.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/SceneVariables.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariableDeclaration.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariableDeclarationCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariableDeclarations.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariableDeclarationsCloner.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariableKind.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariableKindAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/Variables.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariablesAsset.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Variables/VariablesSaver.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll new file mode 100644 index 00000000..85ffabcf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..19ff1c69 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp @@ -0,0 +1,114 @@ +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.pdb new file mode 100644 index 00000000..be75ea8f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll new file mode 100644 index 00000000..d2a92026 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp new file mode 100644 index 00000000..fa2062a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp @@ -0,0 +1,552 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Acknowledgements/Acknowledgement_NCalc.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Analytics/FlowMacroSavedEvent.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/BoltFlowNameUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Connections/ControlConnectionWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Connections/IUnitConnectionWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Connections/InvalidConnectionWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Connections/UnitConnectionStyles.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Connections/UnitConnectionWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Connections/ValueConnectionWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/FlowGraphDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/FlowMachineDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/FlowMacroDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/IUnitDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/UnitAnalyser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/UnitAnalysis.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/UnitDescription.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/UnitDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/UnitPortDescription.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/UnitPortDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Events/CustomEventDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Events/EventUnitDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Events/EventUnitWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Events/GlobalMessageListenerEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Events/MessageListenerEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Events/TriggerCustomEventDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/FlowCanvas.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/FlowDragAndDropUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/FlowEditorBindings.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/FlowGraphContext.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/FlowGraphEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/FlowGraphUnitUISample.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/FlowMachineEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/CreateStructDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/CreateStructOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/ExposeDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/ExposeOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/GetMemberDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/GetMemberOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/InvokeMemberDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/InvokeMemberOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/LiteralDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/LiteralInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/LiteralOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/LiteralWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/MemberUnitAnalyser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/MemberUnitDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/MemberUnitOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/OnInputSystemEventAnalyser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/SetMemberDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/SetMemberOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/ForAnalyser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/ForEachDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SelectOnEnumDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SelectOnFlowDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SelectOnIntegerDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SelectOnStringDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SelectUnitDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SequenceDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SwitchOnEnumDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SwitchOnIntegerDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SwitchOnStringDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/SwitchUnitDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/InputActionInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/InputSystemWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/MultiInputUnitAlphabeticDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/MultiInputUnitNumericDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphInputAnalyser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphInputDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphInputInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphInputWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphOutputAnalyser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphOutputDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphOutputInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/GraphOutputWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/NesterUnitAnalyser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/NesterUnitDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/NesterUnitEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/NesterUnitOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/NestrerUnitWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/SuperUnitDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/SuperUnitEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/SuperUnitWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Nesting/UnitPortDefinitionUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Time/WaitForFlowDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/GetVariableOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/IsVariableDefinedOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/GetVariableUnitOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/IsVariableDefinedUnitOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/SetVariableUnitOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/VariableUnitDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/VariableUnitOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/Obsolete/VariableUnitWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/SetVariableOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/UnifiedVariableUnitDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/UnifiedVariableUnitOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/UnifiedVariableUnitWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Variables/VariableKindOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Invocations/InvocationInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Invocations/MemberInvocationInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/IUnitOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitBase.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitCategoryOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitOptionFilter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitOptionProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitOptionRow.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitOptionTree.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Options/UnitOptionUtility.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/BoltFlow.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/BoltFlowConfiguration.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/BoltFlowManifest.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/BoltFlowPaths.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/BoltFlowResources.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_0_4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_1_0..cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_1_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_1_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_1_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_2_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_2_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_2_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_2_4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_3_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_10.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_5.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_6.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_7.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Changelogs/Changelog_1_4_8.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_0_2_to_1_0_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_1_1_to_1_1_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_1_2_to_1_1_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_1_3_to_1_2_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_2_0_to_1_2_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_2_4_to_1_3_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_3_0_to_1_4_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_5_1_to_1_5_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_1_6_to_1_7.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/Migrations/Migration_Asset_to_Package.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/ControlInputWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/ControlOutputWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/IUnitPortWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/InvalidInputWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/InvalidOutputWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/UnitInputPortWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/UnitOutputPortWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/UnitPortDefinitionInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/UnitPortWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/ValueInputDefinitionInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/ValueInputWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/ValueOutputWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Ports/ValuePortDefinitionInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Properties/AssemblyInfo.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/RuntimeGraphBase.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Units/IUnitWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Units/MissingTypeUnitWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Units/UnitEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Units/UnitInspector.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Units/UnitWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/XFlowGraph.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll new file mode 100644 index 00000000..8ccfd3ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm.rsp new file mode 100644 index 00000000..eb9e44d4 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm.rsp @@ -0,0 +1,108 @@ +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.pdb new file mode 100644 index 00000000..9fcf2563 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll new file mode 100644 index 00000000..1adc72cd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp new file mode 100644 index 00000000..488e0835 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp @@ -0,0 +1,783 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_STANDARD_2_0 +-define:NET_STANDARD +-define:NET_STANDARD_2_1 +-define:NETSTANDARD +-define:NETSTANDARD2_1 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:MODULE_AI_EXISTS +-define:MODULE_ANIMATION_EXISTS +-define:MODULE_PHYSICS_EXISTS +-define:MODULE_PHYSICS_2D_EXISTS +-define:MODULE_PARTICLE_SYSTEM_EXISTS +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/ControlConnection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/IUnitConnection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/IUnitConnectionDebugData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/IUnitRelation.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/InvalidConnection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/UnitConnection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/UnitConnectionDebugData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/UnitRelation.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Connections/ValueConnection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/BinaryExpression.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluateFunctionHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluateParameterHandler.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluationException.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluationOption.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/EvaluationVisitor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Expression.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/FunctionArgs.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/FunctionExpression.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/IdentifierExpression.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/LogicalExpression.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/LogicalExpressionVisitor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/NCalcLexer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/NCalcParser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/ParameterArgs.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/SerializationVisitor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/TernaryExpression.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/UnaryExpression.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/ValueExpression.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/PortKeyAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/PortLabelAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/PortLabelHiddenAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/SpecialUnitAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/UnitFooterPortsAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/UnitHeaderInspectableAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/UnitOrderAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/UnitShortTitleAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/UnitSubtitleAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/UnitSurtitleAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/EditorBinding/UnitTitleAttribute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Flow.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/FlowGraph.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/FlowGraphData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Codebase/CreateStruct.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Codebase/Expose.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Codebase/GetMember.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Codebase/InvokeMember.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Codebase/MemberUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Codebase/SetMember.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/CountItems.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/AddDictionaryItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/ClearDictionary.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/CreateDictionary.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/DictionaryContainsKey.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/GetDictionaryItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/MergeDictionaries.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/RemoveDictionaryItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Dictionaries/SetDictionaryItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/FirstItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/LastItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/AddListItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/ClearList.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/CreateList.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/GetListItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/InsertListItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/ListContainsItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/MergeLists.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/RemoveListItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/RemoveListItemAt.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Collections/Lists/SetListItem.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/Break.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/Cache.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/For.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/ForEach.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/IBranchUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/ISelectUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/If.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/LoopUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/Once.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SelectOnEnum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SelectOnFlow.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SelectOnInteger.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SelectOnString.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SelectUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SelectUnit_T.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/Sequence.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SwitchOnEnum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SwitchOnInteger.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SwitchOnString.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/SwitchUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/Throw.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/ToggleFlow.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/ToggleValue.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/TryCatch.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Control/While.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Animation/BoltAnimationEvent.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Animation/BoltNamedAnimationEvent.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Animation/OnAnimatorIK.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Animation/OnAnimatorMove.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationFocus.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationLostFocus.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationPause.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationQuit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Application/OnApplicationResume.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/BoltUnityEvent.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/CustomEvent.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/CustomEventArgs.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Editor/OnDrawGizmos.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Editor/OnDrawGizmosSelected.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/EventUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/GenericGuiEventUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnBeginDrag.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnButtonClick.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnCancel.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnDeselect.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnDrag.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnDrop.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnDropdownValueChanged.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnEndDrag.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnGUI.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnInputFieldEndEdit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnInputFieldValueChanged.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnMove.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerClick.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerDown.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerEnter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerExit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnPointerUp.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnScroll.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnScrollRectValueChanged.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnScrollbarValueChanged.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnSelect.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnSliderValueChanged.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnSubmit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/OnToggleValueChanged.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GUI/PointerEventUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GameObjectEventUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/GlobalEventUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Hierarchy/OnTransformChildrenChanged.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Hierarchy/OnTransformParentChanged.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/IEventUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/IMouseEventUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/InputSystem/OnInputSystemEvent.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnButtonInput.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnKeyboardInput.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseDown.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseDrag.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseEnter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseExit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseInput.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseOver.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseUp.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Input/OnMouseUpAsButton.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/FixedUpdate.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/LateUpdate.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/OnDestroy.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/OnDisable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/OnEnable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/Start.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Lifecycle/Update.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/MachineEventUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/ManualEventUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Navigation/OnDestinationReached.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/CollisionEventUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnCollisionEnter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnCollisionExit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnCollisionStay.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnControllerColliderHit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnJointBreak.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnParticleCollision.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnTriggerEnter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnTriggerExit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/OnTriggerStay.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics/TriggerEventUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/CollisionEvent2DUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnCollisionEnter2D.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnCollisionExit2D.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnCollisionStay2D.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnJointBreak2D.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnTriggerEnter2D.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnTriggerExit2D.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/OnTriggerStay2D.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Physics2D/TriggerEvent2DUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Rendering/OnBecameInvisible.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Rendering/OnBecameVisible.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/Time/OnTimerElapsed.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Events/TriggerCustomEvent.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Formula.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/GetGraph.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/GetGraphs.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/GetScriptGraph.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/GetScriptGraphs.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/HasGraph.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/HasScriptGraph.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/ScriptGraphContainerType.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/SetGraph.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Graph/SetScriptGraph.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Literal.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/And.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/ApproximatelyEqual.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/BinaryComparisonUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/Comparison.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/Equal.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/EqualityComparison.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/ExclusiveOr.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/Greater.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/GreaterOrEqual.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/Less.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/LessOrEqual.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/Negate.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/NotApproximatelyEqual.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/NotEqual.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/NumericComparison.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Logic/Or.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Absolute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Add.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Angle.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Average.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/CrossProduct.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Distance.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Divide.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/DotProduct.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Generic/DeprecatedGenericAdd.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericDivide.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericModulo.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericMultiply.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericSubtract.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Generic/GenericSum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Lerp.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Maximum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Minimum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Modulo.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/MoveTowards.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Multiply.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Normalize.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/PerSecond.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Project.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Round.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/DeprecatedScalarAdd.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarAbsolute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarAverage.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarDivide.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarExponentiate.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarLerp.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarMaximum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarMinimum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarModulo.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarMoveTowards.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarMultiply.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarNormalize.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarPerSecond.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarRoot.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarRound.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarSubtract.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Scalar/ScalarSum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Subtract.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Sum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/DeprecatedVector2Add.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Absolute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Angle.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Average.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Distance.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Divide.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2DotProduct.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Lerp.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Maximum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Minimum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Modulo.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2MoveTowards.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Multiply.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Normalize.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2PerSecond.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Project.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Round.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Subtract.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Sum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/DeprecatedVector3Add.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Absolute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Angle.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Average.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3CrossProduct.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Distance.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Divide.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3DotProduct.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Lerp.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Maximum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Minimum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Modulo.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3MoveTowards.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Multiply.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Normalize.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3PerSecond.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Project.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Round.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Subtract.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector3/Vector3Sum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/DeprecatedVector4Add.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Absolute.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Average.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Distance.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Divide.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4DotProduct.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Lerp.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Maximum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Minimum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Modulo.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4MoveTowards.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Multiply.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Normalize.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4PerSecond.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Round.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Subtract.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector4/Vector4Sum.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/MissingType.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Nesting/GraphInput.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Nesting/GraphOutput.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Nulls/Null.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Nulls/NullCheck.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Nulls/NullCoalesce.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/This.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/Cooldown.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/Timer.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/WaitForEndOfFrameUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/WaitForFlow.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/WaitForNextFrameUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/WaitForSecondsUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/WaitUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/WaitUntilUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Time/WaitWhileUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/GetVariable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/IUnifiedVariableUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/IsVariableDefined.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetApplicationVariable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetGraphVariable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetObjectVariable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetSavedVariable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetSceneVariable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/GetVariableUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IApplicationVariableUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IGraphVariableUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IObjectVariableUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/ISavedVariableUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/ISceneVariableUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IVariableUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsApplicationVariableDefined.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsGraphVariableDefined.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsObjectVariableDefined.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsSavedVariableDefined.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsSceneVariableDefined.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/IsVariableDefinedUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetApplicationVariable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetGraphVariable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetObjectVariable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetSavedVariable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetSceneVariable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/SetVariableUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/Obsolete/VariableUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/SaveVariables.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/SetVariable.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Variables/UnifiedVariableUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/IDefaultValue.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/INesterUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/IUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/IUnitDebugData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/MultiInputUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/NesterUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ControlInput.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ControlInputDefinition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ControlOutput.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ControlOutputDefinition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ControlPortDefinition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitControlPort.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitControlPortDefinition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitInputPort.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitInputPortDefinition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitInvalidPort.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitOutputPort.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitOutputPortDefinition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitPort.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitPortCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitPortDefinition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitValuePort.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/IUnitValuePortDefinition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/InvalidInput.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/InvalidOutput.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/MissingValuePortInputException.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/UnitPort.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/UnitPortCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/UnitPortDefinition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ValueInput.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ValueInputDefinition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ValueOutput.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ValueOutputDefinition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Ports/ValuePortDefinition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Properties/AssemblyInfo.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/ScriptGraphAsset.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/ScriptMachine.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/SubgraphUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Unit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/UnitCategory.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/UnitCategoryConverter.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/UnitPortDefinitionCollection.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/UnitPreservation.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll new file mode 100644 index 00000000..ed8ab20a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..142441c8 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp @@ -0,0 +1,116 @@ +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.pdb new file mode 100644 index 00000000..ac4bb365 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.ref.dll new file mode 100644 index 00000000..97b84e8d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp new file mode 100644 index 00000000..b036739c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp @@ -0,0 +1,395 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/EditorPreferencesProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/EditorPreferencesProviderView.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/ProjectSettings/AssemblyOptionsSettings.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/ProjectSettings/BackupSettings.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/ProjectSettings/CustomPropertyProviderSettings.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/ProjectSettings/ScriptReferenceResolverSettings.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/ProjectSettings/TypeOptionsSettings.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/ProjectSettingsProvider.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/SettingsProvider/ProjectSettingsProviderView.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll new file mode 100644 index 00000000..57ee53ca Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..ca82f945 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm.rsp @@ -0,0 +1,117 @@ +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E3BEEDFEAAF21AA5.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.pdb new file mode 100644 index 00000000..8df98223 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.ref.dll new file mode 100644 index 00000000..da8a3f73 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp new file mode 100644 index 00000000..0efa6219 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp @@ -0,0 +1,388 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Shared/EmptyGraphWindow.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll new file mode 100644 index 00000000..23843ef4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..142441c8 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp @@ -0,0 +1,116 @@ +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.pdb new file mode 100644 index 00000000..9190dd50 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.ref.dll new file mode 100644 index 00000000..b9329890 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp new file mode 100644 index 00000000..1e31460b --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp @@ -0,0 +1,454 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Analytics/StateMacroSavedEvent.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Description/StateGraphDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Description/StateMachineDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Description/StateMacroDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Flow/FlowGraphContextStateExtension.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Flow/StateUnitDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Flow/StateUnitEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Flow/StateUnitWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Flow/UnitBaseStateExtensions.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Graph/StateCanvas.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Graph/StateGraphContext.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/BoltState.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/BoltStateConfiguration.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/BoltStateManifest.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/BoltStateResources.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_0_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_0_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_0_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_1_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_1_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_1_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_2_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_2_3.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_2_4.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_3_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_4_0.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Changelogs/Changelog_1_4_1.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Migrations/Migration_1_5_1_to_1_5_2.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Migrations/Migration_1_6_to_1_7.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Plugin/Migrations/Migration_Asset_to_Package.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Properties/AssemblyInfo.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/StateGraphEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/StateRevealCondition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/AnyStateDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/AnyStateWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/FlowStateDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/FlowStateEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/FlowStateWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/IStateWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/NesterStateAnalyser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/NesterStateDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/NesterStateEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/NesterStateWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/StateAnalyser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/StateAnalysis.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/StateDescription.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/StateDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/StateEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/StateTransitionAnalysis.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/StateWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/SuperStateDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/SuperStateEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/States/SuperStateWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/FlowStateTransitionAnalyser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/FlowStateTransitionDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/FlowStateTransitionEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/FlowStateTransitionWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/IStateTransitionWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/NesterStateTransitionAnalyser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/NesterStateTransitionDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/NesterStateTransitionEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/NesterStateTransitionWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/StateTransitionAnalyser.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/StateTransitionDescription.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/StateTransitionDescriptor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/StateTransitionEditor.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/StateTransitionWidget.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.State/Transitions/TriggerStateTransitionWidget.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll new file mode 100644 index 00000000..0eeb7814 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp new file mode 100644 index 00000000..7c83dd51 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp @@ -0,0 +1,109 @@ +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.pdb new file mode 100644 index 00000000..202a2f25 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll new file mode 100644 index 00000000..42d33c01 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp new file mode 100644 index 00000000..cab28122 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp @@ -0,0 +1,408 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_STANDARD_2_0 +-define:NET_STANDARD +-define:NET_STANDARD_2_1 +-define:NETSTANDARD +-define:NETSTANDARD2_1 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/AnyState.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/FlowState.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/FlowStateTransition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/Framework/Graph/HasStateGraph.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/INesterState.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/INesterStateTransition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/IState.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/IStateDebugData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/IStateTransition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/IStateTransitionDebugData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/NesterState.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/NesterStateTransition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/OnEnterState.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/OnExitState.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/Properties/AssemblyInfo.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/State.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateEnterReason.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateEventHooks.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateExitReason.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateGraph.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateGraphAsset.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateGraphData.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateMachine.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateTransition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/StateUnit.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/SuperState.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/TriggerStateTransition.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/Units/GetStateGraph.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/Units/GetStateGraphs.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/Units/SetStateGraph.cs" +"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.State/Units/StateGraphContainerType.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll new file mode 100644 index 00000000..3da7b644 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp new file mode 100644 index 00000000..698f1135 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp @@ -0,0 +1,105 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.pdb new file mode 100644 index 00000000..c01a8ccf Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.ref.dll new file mode 100644 index 00000000..3c0b1ecb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp new file mode 100644 index 00000000..513e3ac9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp @@ -0,0 +1,411 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/AssemblyInfo.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/AsyncOperation.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Cli.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Discovery.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/FileUtility.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Image.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/KnownAssemblies.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/Deserializer.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/ExceptionEventArgs.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/Message.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/MessageEventArgs.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/MessageType.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/Messenger.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/Serializer.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/TcpClient.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/TcpListener.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Messaging/UdpSocket.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/ProcessRunner.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/ProjectGeneration/AssemblyNameProvider.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/ProjectGeneration/FileIOProvider.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/ProjectGeneration/GUIDProvider.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/ProjectGeneration/ProjectGeneration.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/ProjectGeneration/ProjectGenerationFlag.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/ProjectGeneration/ProjectProperties.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Solution.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/SolutionParser.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/SolutionProjectEntry.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/SolutionProperties.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Symbols.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Testing/TestAdaptor.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Testing/TestResultAdaptor.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Testing/TestRunnerApiListener.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Testing/TestRunnerCallbacks.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/Testing/TestStatusAdaptor.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/UnityInstallation.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/UsageUtility.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/VersionPair.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/VisualStudioEditor.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/VisualStudioInstallation.cs" +"Library/PackageCache/com.unity.ide.visualstudio@2.0.18/Editor/VisualStudioIntegration.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll new file mode 100644 index 00000000..4a350f27 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp new file mode 100644 index 00000000..5ea65894 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp @@ -0,0 +1,102 @@ +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.pdb new file mode 100644 index 00000000..698c3eb9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll new file mode 100644 index 00000000..93dd2221 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp new file mode 100644 index 00000000..7355df66 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp @@ -0,0 +1,562 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:UNITY_TESTS_FRAMEWORK +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/Analytics/AnalyticsReporter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/Analytics/AnalyticsTestCallback.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/Analytics/RunFinishedData.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/Analytics/TestTreeData.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/CallbacksDelegator.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/CallbacksDelegatorListener.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/CallbacksHolder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ExecutionSettings.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/Filter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ICallbacks.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ICallbacksDelegator.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ICallbacksHolder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/IErrorCallbacks.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ITestAdaptor.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ITestAdaptorFactory.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ITestResultAdaptor.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ITestRunSettings.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ITestRunnerApi.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/ITestTreeRebuildCallbacks.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/IgnoreTest.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/RunState.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/TestAdaptor.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/TestAdaptorFactory.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/TestMode.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/TestResultAdaptor.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/TestRunProgress.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/TestRunnerApi.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/Api/TestStatus.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/AssemblyInfo.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineParser/CommandLineOption.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineParser/CommandLineOptionSet.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineParser/ICommandLineOption.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/Executer.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/ExecutionSettings.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/IExecuter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/IRunData.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/ISettingsBuilder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/LogSavingCallbacks.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/LogWriter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/ResultsSavingCallbacks.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/ResultsWriter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/RunData.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/RunSettings.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/RunStateCallbacks.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/SettingsBuilder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/SetupException.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/TestStarter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/CommandLineTest/TestState.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/AssetsDatabaseHelper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/GuiHelper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/IAssetsDatabaseHelper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/IGuiHelper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListBuilder/RenderingOptions.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListBuilder/ResultSummarizer.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListBuilder/TestFilterSettings.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListBuilder/TestTreeViewBuilder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListGuiHelper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListTreeView/Icons.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewDataSource.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListTreeView/TestListTreeViewGUI.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestListTreeView/TestTreeViewItem.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestRunnerResult.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/TestRunnerUIFilter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/UITestRunnerFilter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/Views/EditModeTestListGUI.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/Views/PlayModeTestListGUI.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/GUI/Views/TestListGUIBase.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/NUnitExtension/Attributes/AssetPipelineIgnore.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/NUnitExtension/Attributes/ITestPlayerBuildModifier.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/NUnitExtension/Attributes/TestPlayerBuildModifierAttribute.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/NUnitExtension/TestRunnerStateSerializer.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/RequireApiProfileAttribute.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/RequirePlatformSupportAttribute.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestBuildAssemblyFilter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/EditModeLauncherContextSettings.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/Helpers/AttributeFinderBase.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/Helpers/DelayedCallback.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/Helpers/FilePathMetaInfo.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/Helpers/PlayerLauncherBuildOptions.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/Helpers/PostbuildCleanupAttributeFinder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/Helpers/PrebuildSetupAttributeFinder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/AndroidPlatformSetup.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/ApplePlatformSetup.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/IPlatformSetup.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/LuminPlatformSetup.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/PlatformSpecificSetup.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/StadiaPlatformSetup.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/SwitchPlatformSetup.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/UwpPlatformSetup.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlatformSetup/XboxOnePlatformSetup.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlayerLauncher.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherContextSettings.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlayerLauncherTestRunSettings.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/PlaymodeLauncher.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/RemotePlayerLogController.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/RemotePlayerTestController.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/RuntimeTestLauncherBase.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestLaunchers/TestLauncherBase.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestResultSerializer.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Data/RunProgress.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Data/TaskInfo.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Data/TaskMode.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Data/TestJobData.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Data/TestProgress.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/ITestJobDataHolder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/ITestJobRunner.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/RequiredTestRunDataMissingException.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/TaskList.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/BuildActionTaskBase.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/BuildTestTreeTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/CleanUpContext.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/CleanupConstructDelegatorTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/CleanupVerificationTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/EditModeRunTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/EnableTestOutLoggerTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Events/CreateEventsTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Events/RegisterCallbackDelegatorEventsTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Events/RegisterTestRunCallbackEventsTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Events/RunFinishedInvocationEvent.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Events/RunStartedInvocationEvent.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Events/UpdateTestProgressTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/FileCleanupVerifierTaskBase.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/GenerateContextTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/InitializeTestProgressTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayModeRunTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/LegacyPlayerRunTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/PerformUndoTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/PostbuildCleanupTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/PrebuildSetupTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/RegisterFilesForCleanupVerificationTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/SaveUndoIndexTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/CreateNewSceneTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/ISceneWrapper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/ReloadModifiedScenesTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/RemoveAdditionalUntitledSceneTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/RestoreSceneSetupTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/SaveModifiedSceneTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/SaveSceneSetupTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/Scene/SceneWrapper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/SetupConstructDelegatorTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/TestTaskBase.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/Tasks/UnlockReloadAssembliesTask.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/TestJobDataHolder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/TestJobRunner.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRun/TestRunCanceledException.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Callbacks/TestRunnerCallback.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdater.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Callbacks/WindowResultUpdaterDataHolder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/EditModePCHelper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/EditModeRunner.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/EditmodeWorkItemFactory.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/EditorEnumeratorTestWorkItem.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/EnumeratorStepHelper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Messages/EnterPlayMode.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Messages/ExitPlayMode.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Messages/RecompileScripts.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Messages/WaitForDomainReload.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/CachingTestListProvider.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/EditorAssembliesProxy.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/EditorAssemblyWrapper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/EditorCompilationInterfaceProxy.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/EditorLoadedTestAssemblyProvider.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/IEditorAssembliesProxy.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/IEditorCompilationInterfaceProxy.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/IEditorLoadedTestAssemblyProvider.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/ITestListCache.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/ITestListCacheData.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/ITestListProvider.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/TestListCache.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/TestListCacheData.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/TestListJob.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunner/Utils/TestListProvider.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunnerWindow.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestRunnerWindowSettings.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestSettings/ITestSettings.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestSettings/ITestSettingsDeserializer.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestSettings/TestSettings.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/TestSettings/TestSettingsDeserializer.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/ITestRunnerApiMapper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/IUtpLogger.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/IUtpMessageReporter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/Message.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/TesRunDataHolder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/TestFinishedMessage.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/TestPlanMessage.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/TestRunData.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/TestRunnerApiMapper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/TestStartedMessage.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/TestState.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolListener.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/UnityTestProtocolStarter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/UtpDebuglogger.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEditor.TestRunner/UnityTestProtocol/UtpMessageReporter.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll new file mode 100644 index 00000000..0696433f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp new file mode 100644 index 00000000..06dc5e03 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp @@ -0,0 +1,110 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.pdb new file mode 100644 index 00000000..8c3be604 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll new file mode 100644 index 00000000..fbe2ac16 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp new file mode 100644 index 00000000..e2708035 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp @@ -0,0 +1,420 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_4_6 +-define:NET_UNITY_4_8 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:PACKAGE_PHYSICS +-define:PACKAGE_PHYSICS2D +-define:PACKAGE_ANIMATION +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-define:UNITY_EDITOR_ONLY_COMPILATION +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ARModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.NVIDIAModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Annotations.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Http.Rtc.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Duplex.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.NetTcp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ServiceModel.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Facades/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/Microsoft.CSharp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.DataSetExtensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/UnityReferenceAssemblies/unity-4.8-api/mscorlib.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-r:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/EventSystem/EventSystemEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/EventSystem/EventTriggerEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/EventSystem/Physics2DRaycasterEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/EventSystem/PhysicsRaycasterEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/Properties/AssemblyInfo.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/AspectRatioFitterEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ButtonEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/CanvasScalerEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ContentSizeFitterEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/DropdownEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/GraphicEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/GridLayoutGroupEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/HorizontalOrVerticalLayoutGroupEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ImageEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/InputFieldEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/InterceptedEventsPreview.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/LayoutElementEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/LayoutPropertiesPreview.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/MaskEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/MenuOptions.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PrefabLayoutRebuilder.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/AnimationTriggersDrawer.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/ColorBlockDrawer.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/DropdownOptionListDrawer.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/FontDataDrawer.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/NavigationDrawer.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/PropertyDrawers/SpriteStateDrawer.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/RawImageEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/RectMask2DEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ScrollRectEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ScrollbarEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/SelectableEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/SelfControllerEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/SliderEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/SpriteDrawUtility.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/TextEditor.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Editor/UI/ToggleEditor.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll new file mode 100644 index 00000000..a87edebc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp new file mode 100644 index 00000000..246188e6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp @@ -0,0 +1,92 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.pdb new file mode 100644 index 00000000..18ce9be5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll new file mode 100644 index 00000000..ce675ca3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp new file mode 100644 index 00000000..e6a39c66 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp @@ -0,0 +1,484 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_STANDARD_2_0 +-define:NET_STANDARD +-define:NET_STANDARD_2_1 +-define:NETSTANDARD +-define:NETSTANDARD2_1 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:UNITY_TESTS_FRAMEWORK +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/AssemblyInfo.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/AllocatingGCMemoryConstraint.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/ConstraintsExtensions.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/InvalidSignatureException.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/Is.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/LogAssert.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/LogScope/ILogScope.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/LogScope/LogEvent.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/LogScope/LogMatch.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/LogScope/LogScope.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/OutOfOrderExpectedLogMessageException.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/UnexpectedLogMessageException.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/UnhandledLogMessageException.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Assertions/UnityTestTimeoutException.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/ActionDelegator.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/ConditionalIgnoreAttribute.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestEnumerator.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/TestMustExpectAllLogsAttribute.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityCombinatorialStrategy.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityPlatformAttribute.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnitySetUpAttribute.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTearDownAttribute.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Attributes/UnityTestAttribute.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/BaseDelegator.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandBase.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/BeforeAfterTestCommandState.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableApplyChangesToContextCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRepeatedTestCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableRetryTestCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableSetUpTearDownCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestMethodCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/EnumerableTestState.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/IgnoreTest.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/IgnoreTestCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/ImmediateEnumerableCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/OuterUnityTestActionCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/RepeatCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/RetryCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/SetUpTearDownCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/StrictCheckCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/TaskTestMethodCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/TestActionCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/TestCommandPcHelper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/TimeoutCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Commands/UnityTestMethodCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/ConstructDelegator.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Filters/AssemblyNameFilter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Filters/CategoryFilterExtended.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Filters/FullNameFilter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/IAsyncTestAssemblyBuilder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/IStateSerializer.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/ITestSuiteModifier.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/OrderedTestSuiteModifier.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/CompositeWorkItem.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/CoroutineTestWorkItem.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/DefaultTestWorkItem.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/FailCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/FeatureFlags.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/IEnumerableTestMethodCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/PlaymodeWorkItemFactory.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/RestoreTestContextAfterDomainReload.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/TestCommandBuilder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityLogCheckDelegatingCommand.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestAssemblyRunner.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityTestExecutionContext.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItem.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/UnityWorkItemDataHolder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/Runner/WorkItemFactory.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/TestExtensions.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/TestResultExtensions.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/NUnitExtensions/UnityTestAssemblyBuilder.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/Callbacks/PlayModeRunnerCallback.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/Callbacks/PlayerQuitHandler.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/Callbacks/RemoteTestResultSender.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRenderer.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/Callbacks/TestResultRendererCallback.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/ITestRunnerListener.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/Messages/IEditModeTestYieldInstruction.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/PlaymodeTestsController.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/PlaymodeTestsControllerSettings.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/RemoteHelpers/IRemoteTestResultDataFactory.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/RemoteHelpers/PlayerConnectionMessageIds.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestData.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultData.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataFactory.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/RemoteHelpers/RemoteTestResultDataWithTestData.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/RuntimeTestRunnerFilter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/SynchronousFilter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/TestEnumeratorWrapper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/TestListenerWrapper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/TestPlatform.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/TestRunner/TestTaskWrapper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/UnityTestProtocol/MessageForRetryRepeat.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/UnityTestProtocol/TestFinishMessage.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/UnityTestProtocol/TestStartedMessage.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/UnityTestProtocol/TestState.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyLoadProxy.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AssemblyProvider/AssemblyWrapper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyLoadProxy.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AssemblyProvider/IAssemblyWrapper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AssemblyProvider/IScriptingRuntimeProxy.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AssemblyProvider/PlayerTestAssemblyProvider.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AssemblyProvider/ScriptingRuntimeProxy.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/AttributeHelper.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/ColorEqualityComparer.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/CoroutineRunner.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/FloatEqualityComparer.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/IOuterUnityTestAction.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/IPostBuildCleanup.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/IPrebuildSceneSetup.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/ITestRunCallback.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/MonoBehaviourTest/IMonoBehaviourTest.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/MonoBehaviourTest/MonoBehaviourTest.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/PostBuildCleanupAttribute.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/PrebuildSceneSetupAttribute.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/QuaternionEqualityComparer.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/StacktraceFilter.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/TestRunCallbackAttribute.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/TestRunCallbackListener.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/Utils.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/Vector2ComparerWithEqualsOperator.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/Vector2EqualityComparer.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/Vector3ComparerWithEqualsOperator.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/Vector3EqualityComparer.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/Vector4ComparerWithEqualsOperator.cs" +"Library/PackageCache/com.unity.test-framework@1.3.7/UnityEngine.TestRunner/Utils/Vector4EqualityComparer.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt new file mode 100644 index 00000000..259464a3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt @@ -0,0 +1 @@ +/home/andrew/My project (1) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll new file mode 100644 index 00000000..a57043a5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm new file mode 100644 index 00000000..dddefbed --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm @@ -0,0 +1,193 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute +EditorToolbarDropdownToggle +UnityEditor +Overlays +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader +LocalizationAsset +UnityEditor +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp new file mode 100644 index 00000000..7581c07c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp @@ -0,0 +1,105 @@ +Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm +Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm +Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.pdb b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.pdb new file mode 100644 index 00000000..97fbd2ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.pdb differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll new file mode 100644 index 00000000..10696a00 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp new file mode 100644 index 00000000..40e3169b --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp @@ -0,0 +1,463 @@ +-target:library +-out:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll" +-refout:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll" +-define:UNITY_2023_1_8 +-define:UNITY_2023_1 +-define:UNITY_2023 +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_4_OR_NEWER +-define:UNITY_5_5_OR_NEWER +-define:UNITY_5_6_OR_NEWER +-define:UNITY_2017_1_OR_NEWER +-define:UNITY_2017_2_OR_NEWER +-define:UNITY_2017_3_OR_NEWER +-define:UNITY_2017_4_OR_NEWER +-define:UNITY_2018_1_OR_NEWER +-define:UNITY_2018_2_OR_NEWER +-define:UNITY_2018_3_OR_NEWER +-define:UNITY_2018_4_OR_NEWER +-define:UNITY_2019_1_OR_NEWER +-define:UNITY_2019_2_OR_NEWER +-define:UNITY_2019_3_OR_NEWER +-define:UNITY_2019_4_OR_NEWER +-define:UNITY_2020_1_OR_NEWER +-define:UNITY_2020_2_OR_NEWER +-define:UNITY_2020_3_OR_NEWER +-define:UNITY_2021_1_OR_NEWER +-define:UNITY_2021_2_OR_NEWER +-define:UNITY_2021_3_OR_NEWER +-define:UNITY_2022_1_OR_NEWER +-define:UNITY_2022_2_OR_NEWER +-define:UNITY_2022_3_OR_NEWER +-define:UNITY_2023_1_OR_NEWER +-define:PLATFORM_ARCH_64 +-define:UNITY_64 +-define:UNITY_INCLUDE_TESTS +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_TEXTURE_STREAMING +-define:ENABLE_VIRTUALTEXTURING +-define:ENABLE_LZMA +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +-define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_EDITOR_GAME_SERVICES +-define:ENABLE_UNITY_GAME_SERVICES_ANALYTICS_SUPPORT +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_HUB_LICENSE +-define:ENABLE_WEBSOCKET_CLIENT +-define:ENABLE_GENERATE_NATIVE_PLUGINS_FOR_ASSEMBLIES_API +-define:ENABLE_DIRECTOR_AUDIO +-define:ENABLE_DIRECTOR_TEXTURE +-define:ENABLE_MANAGED_JOBS +-define:ENABLE_MANAGED_TRANSFORM_JOBS +-define:ENABLE_MANAGED_ANIMATION_JOBS +-define:ENABLE_MANAGED_AUDIO_JOBS +-define:ENABLE_MANAGED_UNITYTLS +-define:INCLUDE_DYNAMIC_GI +-define:ENABLE_SCRIPTING_GC_WBARRIERS +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_MARSHALLING_TESTS +-define:ENABLE_VIDEO +-define:ENABLE_ACCELERATOR_CLIENT_DEBUGGING +-define:ENABLE_NAVIGATION_PACKAGE_DEBUG_VISUALIZATION +-define:ENABLE_NAVIGATION_HEIGHTMESH_RUNTIME_SUPPORT +-define:ENABLE_NAVIGATION_UI_REQUIRES_PACKAGE +-define:PLATFORM_STANDALONE +-define:TEXTCORE_1_0_OR_NEWER +-define:PLATFORM_STANDALONE_LINUX +-define:UNITY_STANDALONE_LINUX +-define:UNITY_STANDALONE +-define:UNITY_STANDALONE_LINUX_API +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_CLUSTER_SYNC +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_SPATIALTRACKING +-define:ENABLE_MODULAR_UNITYENGINE_ASSEMBLIES +-define:ENABLE_MONO +-define:NET_STANDARD_2_0 +-define:NET_STANDARD +-define:NET_STANDARD_2_1 +-define:NETSTANDARD +-define:NETSTANDARD2_1 +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_LINUX +-define:ENABLE_UNITY_COLLECTIONS_CHECKS +-define:ENABLE_BURST_AOT +-define:UNITY_TEAM_LICENSE +-define:UNITY_PRO_LICENSE +-define:ENABLE_CUSTOM_RENDER_TEXTURE +-define:ENABLE_DIRECTOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_TILEMAP +-define:ENABLE_TIMELINE +-define:ENABLE_LEGACY_INPUT_MANAGER +-define:TEXTCORE_FONT_ENGINE_1_5_OR_NEWER +-define:PACKAGE_PHYSICS +-define:PACKAGE_PHYSICS2D +-define:PACKAGE_TILEMAP +-define:PACKAGE_ANIMATION +-define:PACKAGE_UITOOLKIT +-define:CSHARP_7_OR_LATER +-define:CSHARP_7_3_OR_NEWER +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEditor.Graphs.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/UnityEditor.Android.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/LinuxStandaloneSupport/UnityEditor.LinuxStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/MacStandaloneSupport/UnityEditor.OSXStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WebGLSupport/UnityEditor.WebGL.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +-r:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Antlr3.Runtime.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/Unity.Plastic.Newtonsoft.Json.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/log4netPlastic.dll" +-r:"Library/PackageCache/com.unity.collab-proxy@2.0.5/Lib/Editor/PlasticSCM/unityplastic.dll" +-r:"Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll" +-r:"Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/DotNetZip/Unity.VisualScripting.IonicZip.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/Dependencies/YamlDotNet/Unity.VisualScripting.YamlDotNet.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Core/EditorAssetResources/Unity.VisualScripting.TextureAssets.dll" +-r:"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll" +-analyzer:"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventData/AxisEventData.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventData/BaseEventData.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventData/PointerEventData.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventHandle.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventInterfaces.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventSystem.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventTrigger.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/EventTriggerType.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/ExecuteEvents.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/BaseInput.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/BaseInputModule.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/PointerInputModule.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/StandaloneInputModule.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/InputModules/TouchInputModule.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/MoveDirection.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/RaycastResult.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/RaycasterManager.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/Raycasters/BaseRaycaster.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/Raycasters/Physics2DRaycaster.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/Raycasters/PhysicsRaycaster.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/UIBehaviour.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/UIElements/PanelEventHandler.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/EventSystem/UIElements/PanelRaycaster.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/Properties/AssemblyInfo.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Animation/CoroutineTween.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/AnimationTriggers.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Button.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/CanvasUpdateRegistry.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/ColorBlock.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Culling/ClipperRegistry.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Culling/Clipping.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Culling/IClipRegion.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Culling/RectangularVertexClipper.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/DefaultControls.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Dropdown.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/FontData.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/FontUpdateTracker.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Graphic.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/GraphicRaycaster.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/GraphicRebuildTracker.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/GraphicRegistry.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/IGraphicEnabledDisabled.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/IMask.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/IMaskable.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Image.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/InputField.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/AspectRatioFitter.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/CanvasScaler.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/ContentSizeFitter.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/GridLayoutGroup.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/HorizontalLayoutGroup.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/HorizontalOrVerticalLayoutGroup.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/ILayoutElement.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/LayoutElement.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/LayoutGroup.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/LayoutRebuilder.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/LayoutUtility.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Layout/VerticalLayoutGroup.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Mask.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/MaskUtilities.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/MaskableGraphic.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/MaterialModifiers/IMaterialModifier.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Misc.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/MultipleDisplayUtilities.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Navigation.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/RawImage.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/RectMask2D.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/ScrollRect.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Scrollbar.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Selectable.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/SetPropertyUtility.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Slider.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/SpecializedCollections/IndexedSet.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/SpriteState.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/StencilMaterial.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Text.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Toggle.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/ToggleGroup.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Utility/ReflectionMethodsCache.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/Utility/VertexHelper.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/BaseMeshEffect.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/IMeshModifier.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/Outline.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/PositionAsUV1.cs" +"Library/PackageCache/com.unity.ugui@1.0.0/Runtime/UI/Core/VertexModifiers/Shadow.cs" +-langversion:9.0 + +/deterministic +/optimize+ +/debug:portable +/nologo +/RuntimeMetadataVersion:v4.0.30319 + +/nowarn:0169 +/nowarn:0649 +/nowarn:0282 +/nowarn:1701 +/nowarn:1702 +/utf8output +/preferreduilang:en-US + +-warn:0 + +/additionalfile:"Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt" \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp2 b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp2 new file mode 100644 index 00000000..1b7df62d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp2 @@ -0,0 +1 @@ +/pathmap:"/home/andrew/My project (1)"=. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_24F40B351B9ACD85.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_24F40B351B9ACD85.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Performance.Profile-Analyzer.Editor.ref.dll_FC7FE7C2525DF555.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Performance.Profile-Analyzer.Editor.ref.dll_FC7FE7C2525DF555.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_F0D9BA1F3F167740.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_F0D9BA1F3F167740.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9145F68A59D35CE5.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9145F68A59D35CE5.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Settings.Editor.ref.dll_C5D459AC3FA0C65A.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Settings.Editor.ref.dll_C5D459AC3FA0C65A.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Sysroot.Linux_x86_64.ref.dll_47C0B0C1257E42B5.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Sysroot.Linux_x86_64.ref.dll_47C0B0C1257E42B5.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll_74E155EA2BEE38FD.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll_74E155EA2BEE38FD.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll_3B45F137F1F80EEA.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll_3B45F137F1F80EEA.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.ref.dll_4F7EA18A8F1A3B43.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.ref.dll_4F7EA18A8F1A3B43.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_B8A961BBD8ABE0FC.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_B8A961BBD8ABE0FC.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_8DB7A3E3632A4E05.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_8DB7A3E3632A4E05.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_53B6806BAD4EBBBC.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_53B6806BAD4EBBBC.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_5AB3C2EE9968C745.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_5AB3C2EE9968C745.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Toolchain.Linux-x86_64.ref.dll_1D7A0D228D2803C9.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.Toolchain.Linux-x86_64.ref.dll_1D7A0D228D2803C9.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_B8324D455948C852.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_B8324D455948C852.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_F54BA3F421A71E21.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_F54BA3F421A71E21.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E3BEEDFEAAF21AA5.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E3BEEDFEAAF21AA5.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_45A2A186C05004D7.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_45A2A186C05004D7.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm new file mode 100644 index 00000000..75a41f86 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm @@ -0,0 +1,43 @@ +AssetModificationProcessor + +Sysroot +UnityEditor +LinuxStandalone +ChannelClient +Unity +MPE +ChannelClientScope +ChannelService +ChannelScope +EventDataSerialization +EventService +RoleProviderAttribute +ProcessEvent +ProcessLevel +ProcessState +RoleCapability +ChannelInfo +ChannelClientInfo +ProcessService +NavMeshBuilder +NavMeshVisualizationSettings +PrefabStage +Experimental +SceneManagement +PrefabStageUtility +AssetImportContext +AssetImporters +SpriteImportData +TextureGenerationOutput +SourceTextureInformation +TextureGenerationSettings +TextureGenerator +CollectImportedDependenciesAttribute +FBXMaterialDescriptionPreprocessor +SketchupMaterialDescriptionPreprocessor +ThreeDSMaterialDescriptionPreprocessor +AssetImporterEditor +AssetImporterEditorPostProcessAsset +ScriptedImporterEditor +ScriptedImporter +ScriptedImporterAttribute diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm new file mode 100644 index 00000000..3478b8d3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm @@ -0,0 +1,3 @@ +EditorToolbarDropdownToggle +UnityEditor +Overlays diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm new file mode 100644 index 00000000..3d42bb2c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm @@ -0,0 +1,12 @@ +BrushGUIEditFlags +UnityEditor +Experimental +TerrainAPI +RepaintFlags +IOnPaint +IOnSceneGUI +IOnInspectorGUI +TerrainPaintTool<> +TerrainToolShortcutContext +TerrainInspectorUtility +TerrainPaintUtilityEditor diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm new file mode 100644 index 00000000..2cb9770b --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm @@ -0,0 +1,13 @@ +ObstacleAvoidanceType +UnityEngine +NavMeshAgent +NavMeshObstacleShape +NavMeshObstacle +OffMeshLinkType +OffMeshLinkData +OffMeshLink +NavMeshHit +NavMeshTriangulation +NavMesh +NavMeshPathStatus +NavMeshPath diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm new file mode 100644 index 00000000..f4f61811 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm @@ -0,0 +1,21 @@ +AvatarMaskBodyPart +UnityEditor +Animations +AvatarMask +IAnimationJob +UnityEngine +Experimental +IAnimationJobPlayable +IAnimationWindowPreview +AnimationHumanStream +AnimationScriptPlayable +AnimationStream +TransformStreamHandle +PropertyStreamHandle +TransformSceneHandle +PropertySceneHandle +AnimationSceneHandleUtility +AnimationStreamHandleUtility +CustomStreamPropertyType +AnimatorJobExtensions +MuscleHandle diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm new file mode 100644 index 00000000..75f2b6a4 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm @@ -0,0 +1,54 @@ +ExpressionEvaluator +UnityEditor +NumericFieldDraggerUtility +PixelPerfectRendering +UnityEngine +Experimental +U2D +SpriteBone +Profiler +PhotoCaptureFileOutputFormat +XR +WSA +WebCam +PhotoCapture +PhotoCaptureFrame +VideoCapture +CapturePixelFormat +WebCamMode +CameraParameters +PlayerLoopSystemInternal +LowLevel +PlayerLoopSystem +PlayerLoop +Initialization +EarlyUpdate +FixedUpdate +PreUpdate +Update +PreLateUpdate +PostLateUpdate +ConnectionTarget +Networking +PlayerConnection +IConnectionState +VertexAttribute +Rendering +RenderingThreadingMode +RayTracingSubMeshFlags +RayTracingInstanceCullingFlags +RayTracingInstanceCullingTest +RayTracingInstanceCullingShaderTagConfig +RayTracingInstanceMaterialConfig +RayTracingInstanceCullingMaterialTest +RayTracingInstanceTriangleCullingConfig +RayTracingSubMeshFlagsConfig +RayTracingInstanceCullingConfig +RayTracingInstanceMaterialCRC +RayTracingInstanceCullingResults +RayTracingMeshInstanceConfig +RayTracingAccelerationStructure +RendererList +RendererUtils +RendererListStatus +RayTracingShader diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm new file mode 100644 index 00000000..48696de8 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm @@ -0,0 +1,2 @@ +LocalizationAsset +UnityEditor diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm new file mode 100644 index 00000000..af1be13d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm @@ -0,0 +1,10 @@ +SpriteShapeParameters +UnityEngine +Experimental +U2D +SpriteShapeSegment +SpriteShapeRenderer +SpriteShapeMetaData +ShapeControlPoint +AngleRangeInfo +SpriteShapeUtility diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm new file mode 100644 index 00000000..6d75b889 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm @@ -0,0 +1,8 @@ +TerrainCallbacks +UnityEngine +Experimental +TerrainAPI +TerrainUtility +BrushTransform +PaintContext +TerrainPaintUtility diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm new file mode 100644 index 00000000..a4cef38d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm @@ -0,0 +1,27 @@ +BaseCompositeField<,,> +UnityEditor +UIElements +BasePopupField<,> +BoundsField +BoundsIntField +RectField +RectIntField +Vector2Field +Vector3Field +Vector4Field +Vector2IntField +Vector3IntField +DoubleField +EnumField +FloatField +Hash128Field +IntegerField +LongField +PopupField<> +ProgressBar +DeltaSpeed +IValueField<> +TextValueField<> +TextValueFieldTraits<,> +BaseFieldMouseDragger +FieldMouseDragger<> diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/backend1.traceevents b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/backend1.traceevents new file mode 100644 index 00000000..179dc55a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/backend1.traceevents @@ -0,0 +1,233 @@ +{ "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } } +,{ "pid":12345, "tid":0, "ts":1695752874570016, "dur":181, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874570238, "dur":1158, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874571407, "dur":93, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874571547, "dur":189, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874571975, "dur":12528, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874584780, "dur":3911, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874588920, "dur":322, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874589440, "dur":291, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874589965, "dur":4490, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874594716, "dur":183, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874595233, "dur":128, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp2" }} +,{ "pid":12345, "tid":0, "ts":1695752874595703, "dur":137, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874596137, "dur":131, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874596536, "dur":162, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":0, "ts":1695752874597061, "dur":132, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp" }} +,{ "pid":12345, "tid":0, "ts":1695752874597469, "dur":143, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":0, "ts":1695752874597901, "dur":178, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":0, "ts":1695752874600211, "dur":1757, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_B8324D455948C852.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874571756, "dur":32804, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874604573, "dur":208913, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874813488, "dur":81, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874813643, "dur":71, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874813748, "dur":1340, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} +,{ "pid":12345, "tid":1, "ts":1695752874571627, "dur":32957, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874604589, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1695752874605002, "dur":55, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1695752874605125, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1695752874605565, "dur":1446, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":1, "ts":1695752874607068, "dur":84, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp" }} +,{ "pid":12345, "tid":1, "ts":1695752874607153, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874607551, "dur":137, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874607688, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874607807, "dur":61, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874607868, "dur":161, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874608079, "dur":96, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874608175, "dur":84, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874608259, "dur":200, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874608459, "dur":108, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874608650, "dur":3312, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/ExposeDescriptor.cs" }} +,{ "pid":12345, "tid":1, "ts":1695752874608567, "dur":3408, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874611975, "dur":163, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874612138, "dur":174, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874612312, "dur":69, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874612414, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874612525, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1695752874612652, "dur":236, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874612959, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1695752874613024, "dur":377, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874613493, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1695752874613640, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874613768, "dur":248, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1695752874614016, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874614126, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1695752874614255, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874614340, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874614425, "dur":330, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874614828, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1695752874615015, "dur":208, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874615343, "dur":121, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874615464, "dur":161, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874615672, "dur":71, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874615743, "dur":40783, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874656527, "dur":156949, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874571642, "dur":32953, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874604599, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1695752874605121, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874605391, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1695752874605505, "dur":761, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695752874606272, "dur":869, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695752874607152, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874607573, "dur":172, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874607745, "dur":176, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874607922, "dur":192, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874608115, "dur":281, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874608396, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874608638, "dur":3364, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/ForEachDescriptor.cs" }} +,{ "pid":12345, "tid":2, "ts":1695752874608531, "dur":3514, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874612045, "dur":88, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874612158, "dur":147, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874612318, "dur":58, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874612417, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874612547, "dur":402, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695752874612950, "dur":463, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874613422, "dur":236, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874613733, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1695752874613798, "dur":239, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874614043, "dur":282, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695752874614326, "dur":355, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874614719, "dur":57, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874614801, "dur":215, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874615016, "dur":201, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874615235, "dur":111, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874615347, "dur":112, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874615460, "dur":172, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874615657, "dur":80, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874615761, "dur":197814, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874571677, "dur":32928, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874604609, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1695752874605120, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1695752874605539, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874605595, "dur":1505, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1695752874607577, "dur":137, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874607714, "dur":149, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874607864, "dur":60, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874607924, "dur":115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874608077, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874608211, "dur":75, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874608388, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874608507, "dur":171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874609981, "dur":505, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874611902, "dur":228, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874612153, "dur":154, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874612430, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1695752874612496, "dur":208, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874612709, "dur":169, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874612881, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1695752874612931, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874613145, "dur":313, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874613518, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874613692, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1695752874613792, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1695752874613917, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874614078, "dur":176, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1695752874614309, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874614451, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1695752874614724, "dur":63, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874614787, "dur":227, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874615034, "dur":182, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874615223, "dur":117, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874615346, "dur":112, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874615510, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1695752874615667, "dur":66, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874615755, "dur":197802, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695752874571703, "dur":32913, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695752874604619, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695752874604762, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695752874604828, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695752874605044, "dur":60, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695752874605138, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695752874605234, "dur":89, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695752874605376, "dur":924, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874606305, "dur":817, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874607136, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695752874607223, "dur":4878, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874612176, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874612362, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695752874612433, "dur":423, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695752874612873, "dur":1663, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874615045, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874615359, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874615502, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874616226, "dur":192096, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874809303, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":4, "ts":1695752874809293, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":4, "ts":1695752874810186, "dur":318, "ph":"X", "name": "EmitNodeFinish", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695752874809483, "dur":1051, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":4, "ts":1695752874810583, "dur":2967, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874571721, "dur":32903, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874604626, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874604717, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874604839, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874604914, "dur":53, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874604993, "dur":57, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874605055, "dur":135, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874605586, "dur":1491, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1695752874607172, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874607297, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874607438, "dur":116, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1695752874607562, "dur":397, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874607959, "dur":451, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874608613, "dur":3303, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/BoltFlow.cs" }} +,{ "pid":12345, "tid":5, "ts":1695752874608410, "dur":3511, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874611921, "dur":218, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874612140, "dur":180, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874612320, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874612417, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874612567, "dur":422, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695752874612990, "dur":405, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874613438, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874613526, "dur":251, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874613777, "dur":144, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874613921, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695752874614015, "dur":650, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874614707, "dur":71, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874614791, "dur":226, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874615017, "dur":210, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874615227, "dur":121, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874615348, "dur":108, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874615465, "dur":163, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874615650, "dur":90, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874615740, "dur":40482, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874656224, "dur":292, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874656517, "dur":157024, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874571749, "dur":32884, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874604635, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1695752874604848, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1695752874604903, "dur":52, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1695752874605133, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1695752874605592, "dur":1501, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp2" }} +,{ "pid":12345, "tid":6, "ts":1695752874607568, "dur":176, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874607744, "dur":178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874607922, "dur":249, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874608172, "dur":91, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874608264, "dur":317, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874608653, "dur":3278, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/FlowMacroDescriptor.cs" }} +,{ "pid":12345, "tid":6, "ts":1695752874608581, "dur":3365, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874611946, "dur":189, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874612136, "dur":174, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874612310, "dur":60, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874612414, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874612533, "dur":365, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1695752874612899, "dur":488, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874613520, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874613680, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1695752874613756, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1695752874613931, "dur":182, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874614122, "dur":250, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1695752874614372, "dur":299, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874614709, "dur":73, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874614782, "dur":227, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874615028, "dur":200, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874615229, "dur":112, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874615350, "dur":107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874615473, "dur":152, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874615662, "dur":82, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874615745, "dur":193591, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874809374, "dur":262, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":6, "ts":1695752874809345, "dur":294, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":6, "ts":1695752874809724, "dur":747, "ph":"X", "name": "EmitNodeStart", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874810474, "dur":314, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":0, "ts":1695752874816854, "dur":141, "ph":"X", "name": "ProfilerWriteOutput" } +, \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/backend2.traceevents b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/backend2.traceevents new file mode 100644 index 00000000..cb61422f --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/backend2.traceevents @@ -0,0 +1,275 @@ +{ "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } } +,{ "pid":12345, "tid":0, "ts":1695645565954075, "dur":140, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695645565979959, "dur":138, "ph":"X", "name": "EmitBuildStart", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695645565954265, "dur":28221, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695645565982512, "dur":107, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695645565982661, "dur":710, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695645565983401, "dur":71, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"ScriptAssemblies" }} +,{ "pid":12345, "tid":0, "ts":1695645565983648, "dur":343, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695645565984035, "dur":589, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695645565984630, "dur":73, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695645565985065, "dur":378, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695645565985646, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695645565985749, "dur":57, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695645565985810, "dur":53, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695645565986871, "dur":84, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695645565987147, "dur":86, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695645565987237, "dur":95, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695645565987538, "dur":219, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695645565987830, "dur":70, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695645565987937, "dur":439, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695645565989372, "dur":88, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp" }} +,{ "pid":12345, "tid":0, "ts":1695645565991322, "dur":487, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} +,{ "pid":12345, "tid":0, "ts":1695645565993674, "dur":91, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_24F40B351B9ACD85.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695645565994514, "dur":196, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp" }} +,{ "pid":12345, "tid":0, "ts":1695645565995328, "dur":89, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":0, "ts":1695645565995985, "dur":69, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":0, "ts":1695645565997348, "dur":169, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll" }} +,{ "pid":12345, "tid":0, "ts":1695645565997527, "dur":70, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.pdb" }} +,{ "pid":12345, "tid":0, "ts":1695645565998094, "dur":64, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb" }} +,{ "pid":12345, "tid":0, "ts":1695645565998568, "dur":92, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.pdb" }} +,{ "pid":12345, "tid":0, "ts":1695645565999071, "dur":270, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp2" }} +,{ "pid":12345, "tid":0, "ts":1695645565983392, "dur":16049, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695645565999461, "dur":2027914, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695645568027388, "dur":408, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695645568027806, "dur":60, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695645568027943, "dur":1216, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} +,{ "pid":12345, "tid":1, "ts":1695645565983259, "dur":16245, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645565999516, "dur":547, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566000072, "dur":2484, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1695645566002665, "dur":294, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1695645566003078, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1695645566003693, "dur":162, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":1, "ts":1695645566003870, "dur":68, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":1, "ts":1695645566003942, "dur":1753, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566005744, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp" }} +,{ "pid":12345, "tid":1, "ts":1695645566007507, "dur":233, "ph":"X", "name": "WriteText", "args": { "detail":"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp" }} +,{ "pid":12345, "tid":1, "ts":1695645566007742, "dur":59, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566008059, "dur":53, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566008112, "dur":51, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566008427, "dur":56, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566008564, "dur":50, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566008945, "dur":207, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566009152, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566009310, "dur":92, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566010343, "dur":142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566010488, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566010621, "dur":143, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566010765, "dur":290, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566011055, "dur":227, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566011283, "dur":149, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566011432, "dur":648, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566012080, "dur":284, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566012386, "dur":2307, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/EditorBinding/Typeset.cs" }} +,{ "pid":12345, "tid":1, "ts":1695645566012364, "dur":2747, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566015112, "dur":98, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566015210, "dur":271, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566015481, "dur":274, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566016079, "dur":862, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_TextParsingUtilities.cs" }} +,{ "pid":12345, "tid":1, "ts":1695645566017234, "dur":1879, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Style.cs" }} +,{ "pid":12345, "tid":1, "ts":1695645566015922, "dur":3196, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566019119, "dur":317, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566019456, "dur":171, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566019675, "dur":186, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1695645566019862, "dur":1049, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566020917, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1695645566021097, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566021215, "dur":182, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566021402, "dur":201, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1695645566021604, "dur":253, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566021930, "dur":329, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695645566022469, "dur":2005133, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645565983315, "dur":16511, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645565999833, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1695645566000058, "dur":2681, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1695645566002739, "dur":234, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566003058, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1695645566003683, "dur":100, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":2, "ts":1695645566003798, "dur":126, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp2" }} +,{ "pid":12345, "tid":2, "ts":1695645566003928, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566004006, "dur":1955, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566005998, "dur":178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566006177, "dur":130, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566006307, "dur":511, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566006853, "dur":627, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Utils/PlacementValidity.cs" }} +,{ "pid":12345, "tid":2, "ts":1695645566007749, "dur":1373, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/TimelineClipGroup.cs" }} +,{ "pid":12345, "tid":2, "ts":1695645566006819, "dur":2304, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566009123, "dur":85, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566009368, "dur":1386, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Minimum.cs" }} +,{ "pid":12345, "tid":2, "ts":1695645566009208, "dur":1566, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566010777, "dur":360, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566011137, "dur":65, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566011202, "dur":142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566011366, "dur":72, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566011438, "dur":814, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566012380, "dur":2449, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Ensure/EnsureThat.NullableValueTypes.cs" }} +,{ "pid":12345, "tid":2, "ts":1695645566012254, "dur":2632, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566014886, "dur":226, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566015112, "dur":609, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566015722, "dur":550, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566016274, "dur":720, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566016995, "dur":188, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566017230, "dur":1921, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/PendingChanges/Dialogs/CheckinConflictsDialog.cs" }} +,{ "pid":12345, "tid":2, "ts":1695645566017184, "dur":2000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566019184, "dur":237, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566019442, "dur":171, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566019624, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1695645566019731, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695645566019859, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566020085, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695645566020197, "dur":313, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695645566020546, "dur":254, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695645566020865, "dur":313, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695645566021179, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566021323, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566021384, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695645566021501, "dur":444, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695645566021999, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695645566022070, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" }} +,{ "pid":12345, "tid":2, "ts":1695645566022466, "dur":2005164, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645565983310, "dur":16407, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645565999724, "dur":142, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1695645566000075, "dur":2599, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1695645566002727, "dur":239, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1695645566003073, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1695645566003245, "dur":79, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1695645566003386, "dur":137, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp" }} +,{ "pid":12345, "tid":3, "ts":1695645566003698, "dur":103, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1695645566003804, "dur":69, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1695645566003932, "dur":446, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566004402, "dur":1586, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566006014, "dur":217, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566006231, "dur":80, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566006311, "dur":72, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566006383, "dur":305, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566006825, "dur":682, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Utilities/Scopes/GUIColorOverride.cs" }} +,{ "pid":12345, "tid":3, "ts":1695645566006711, "dur":854, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566007746, "dur":1431, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Manipulators/Sequence/MarkerHeaderTrackManipulator.cs" }} +,{ "pid":12345, "tid":3, "ts":1695645566007566, "dur":1708, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566009362, "dur":1334, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Add.cs" }} +,{ "pid":12345, "tid":3, "ts":1695645566009275, "dur":1773, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566011500, "dur":648, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnMouseDragMessageListener.cs" }} +,{ "pid":12345, "tid":3, "ts":1695645566012376, "dur":2600, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/MonoBehaviour/UnityOnJointBreakMessageListener.cs" }} +,{ "pid":12345, "tid":3, "ts":1695645566015083, "dur":677, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Listeners/IGraphEventListener.cs" }} +,{ "pid":12345, "tid":3, "ts":1695645566011500, "dur":4356, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566015863, "dur":437, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566016316, "dur":683, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566017000, "dur":298, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566017298, "dur":70, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566017368, "dur":80, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566017448, "dur":63, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566017511, "dur":77, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566017588, "dur":113, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566017705, "dur":61, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566017766, "dur":75, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566017841, "dur":101, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566017951, "dur":115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566018542, "dur":61, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566019060, "dur":399, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566019460, "dur":220, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566019750, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1695645566019840, "dur":1308, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566021209, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566021268, "dur":412, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1695645566021714, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1695645566021810, "dur":206, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1695645566022078, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695645566022473, "dur":2005118, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695645565983338, "dur":16506, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695645566000051, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695645566000153, "dur":2671, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695645566002968, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695645566003059, "dur":136, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695645566003394, "dur":138, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp2" }} +,{ "pid":12345, "tid":4, "ts":1695645566003695, "dur":73, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp2" }} +,{ "pid":12345, "tid":4, "ts":1695645566003778, "dur":136, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":4, "ts":1695645566003962, "dur":1990, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695645566005961, "dur":5295, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695645566011349, "dur":59, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695645566011408, "dur":195, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695645566012331, "dur":2469, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/IGraphElementWithDebugData.cs" }} +,{ "pid":12345, "tid":4, "ts":1695645566014909, "dur":1064, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Graphs/GraphsExceptionUtility.cs" }} +,{ "pid":12345, "tid":4, "ts":1695645566011605, "dur":4405, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695645566016058, "dur":680, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_Settings.cs" }} +,{ "pid":12345, "tid":4, "ts":1695645566016738, "dur":2452, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Runtime/TMP_SelectionCaret.cs" }} +,{ "pid":12345, "tid":4, "ts":1695645566016011, "dur":3289, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695645566019300, "dur":146, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695645566019447, "dur":292, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695645566019739, "dur":1057, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695645566020853, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695645566020919, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695645566021044, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695645566021113, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695645566021199, "dur":273, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695645566021473, "dur":783, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695645566022300, "dur":113, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695645566022524, "dur":64, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp" }} +,{ "pid":12345, "tid":4, "ts":1695645566022425, "dur":163, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695645566023089, "dur":2001737, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695645568025776, "dur":158, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":4, "ts":1695645568025733, "dur":207, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":4, "ts":1695645568026050, "dur":1053, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":4, "ts":1695645568027123, "dur":516, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695645565983362, "dur":16698, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695645566000066, "dur":3687, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695645566003756, "dur":152, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695645566003913, "dur":1800, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695645566005743, "dur":9718, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695645566015478, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695645566015624, "dur":118, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695645566015809, "dur":200, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695645566016053, "dur":634, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695645566016714, "dur":2669, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695645566019490, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695645566019671, "dur":474, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695645566020183, "dur":222, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695645566020442, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695645566020550, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695645566020632, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695645566020816, "dur":279, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695645566021095, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695645566021186, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695645566021250, "dur":181, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695645566021431, "dur":204, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695645566021642, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695645566021781, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695645566021866, "dur":396, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695645566022366, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695645566022459, "dur":2003344, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695645568025838, "dur":395, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":5, "ts":1695645568025813, "dur":424, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":5, "ts":1695645568026271, "dur":840, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":6, "ts":1695645565983394, "dur":16687, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566000083, "dur":2749, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1695645566002971, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566003067, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1695645566003263, "dur":55, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1695645566003386, "dur":150, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp2" }} +,{ "pid":12345, "tid":6, "ts":1695645566003564, "dur":135, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566003699, "dur":110, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp2" }} +,{ "pid":12345, "tid":6, "ts":1695645566003948, "dur":2022, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566005971, "dur":767, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1695645566006739, "dur":61, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566006808, "dur":799, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/TreeView/SignalReceiverTreeView.cs" }} +,{ "pid":12345, "tid":6, "ts":1695645566007607, "dur":1488, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.timeline@1.8.2/Editor/Signals/TreeView/SignalReceiverItem.cs" }} +,{ "pid":12345, "tid":6, "ts":1695645566006800, "dur":2383, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566009351, "dur":1916, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Framework/Math/Vector2/Vector2Lerp.cs" }} +,{ "pid":12345, "tid":6, "ts":1695645566009186, "dur":3240, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566012427, "dur":93, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566012633, "dur":1840, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/fsTypeConverter.cs" }} +,{ "pid":12345, "tid":6, "ts":1695645566012520, "dur":2048, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566015807, "dur":598, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Core/Dependencies/FullSerializer/Converters/Unity/GUIStyle_DirectConverter.cs" }} +,{ "pid":12345, "tid":6, "ts":1695645566014572, "dur":2635, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566017236, "dur":1950, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Views/IncomingChanges/DrawIncomingChangesOverview.cs" }} +,{ "pid":12345, "tid":6, "ts":1695645566017209, "dur":2031, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566019240, "dur":205, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566019445, "dur":290, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566019736, "dur":203, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1695645566019940, "dur":1195, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566021180, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1695645566021233, "dur":388, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566021628, "dur":605, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1695645566022343, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695645566022476, "dur":2004972, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695645568032561, "dur":257, "ph":"X", "name": "ProfilerWriteOutput" } +, \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/bee_backend.info b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/bee_backend.info new file mode 100644 index 00000000..6a783a4a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/bee_backend.info @@ -0,0 +1,4 @@ +{ + "UnityVersion": "2023.1.8f1", + "BeeBackendHash": "c613022511b6a59418ae5651128d34e2ad72681df317a7761a850f53771284a7" +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/buildprogram0.traceevents b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/buildprogram0.traceevents new file mode 100644 index 00000000..14f192da --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/buildprogram0.traceevents @@ -0,0 +1,10 @@ +{ "pid": 35942, "tid": -1, "ph": "M", "name": "process_name", "args": { "name": "netcorerun.dll" } }, +{ "pid": 35942, "tid": -1, "ph": "M", "name": "process_sort_index", "args": { "sort_index": "-1" } }, +{ "pid": 35942, "tid": 1, "ph": "M", "name": "thread_name", "args": { "name": "" } }, +{ "pid": 35942, "tid": 1, "ts": 1695645565465555, "dur": 334276, "ph": "X", "name": "BuildProgram", "args": {} }, +{ "pid": 35942, "tid": 1, "ts": 1695645565467956, "dur": 98564, "ph": "X", "name": "BuildProgramContextConstructor", "args": {} }, +{ "pid": 35942, "tid": 1, "ts": 1695645565752106, "dur": 7177, "ph": "X", "name": "OutputData.Write", "args": {} }, +{ "pid": 35942, "tid": 1, "ts": 1695645565759289, "dur": 40529, "ph": "X", "name": "Backend.Write", "args": {} }, +{ "pid": 35942, "tid": 1, "ts": 1695645565760550, "dur": 36151, "ph": "X", "name": "JsonToString", "args": {} }, +{ "pid": 35942, "tid": 1, "ts": 1695645565811018, "dur": 1293, "ph": "X", "name": "", "args": {} }, +{ "pid": 35942, "tid": 1, "ts": 1695645565810382, "dur": 2169, "ph": "X", "name": "Write chrome-trace events", "args": {} }, diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/fullprofile.json b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/fullprofile.json new file mode 100644 index 00000000..f356dd3e --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/fullprofile.json @@ -0,0 +1,430 @@ +{ + +"Instructions Readme": "1) Open Chrome or Edge, 2) go to chrome://tracing, 3) click Load, 4) navigate to this file.", +"processInfo": { + +}, + +"traceEvents":[ +{ "pid": 2663, "tid": -1, "ph": "M", "name": "process_name", "args": { "name": "BeeDriver" } }, +{ "pid": 2663, "tid": -1, "ph": "M", "name": "process_sort_index", "args": { "sort_index": "-2" } }, +{ "pid": 2663, "tid": 7099, "ph": "M", "name": "thread_name", "args": { "name": "Thread Pool Worker" } }, +{ "pid": 2663, "tid": 7099, "ts": 1695752874861660, "dur": 2889, "ph": "X", "name": "ChromeTraceHeader", "args": {} }, +{ "pid": 2663, "tid": 7099, "ts": 1695752874871111, "dur": 1119, "ph": "X", "name": "Thread Pool Worker", "args": {} }, +{ "pid": 2663, "tid": 1, "ph": "M", "name": "thread_name", "args": { "name": "" } }, +{ "pid": 2663, "tid": 1, "ts": 1695752874576638, "dur": 5067, "ph": "X", "name": "b__0", "args": {} }, +{ "pid": 2663, "tid": 1, "ts": 1695752874581710, "dur": 36523, "ph": "X", "name": "b__0", "args": {} }, +{ "pid": 2663, "tid": 1, "ts": 1695752874618244, "dur": 33689, "ph": "X", "name": "WriteJson", "args": {} }, +{ "pid": 2663, "tid": 7099, "ts": 1695752874872237, "dur": 29, "ph": "X", "name": "", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ph": "M", "name": "thread_name", "args": { "name": "ReadEntireBinlogFromIpcAsync" } }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874574532, "dur": 3611, "ph": "X", "name": "WaitForConnectionAsync", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874578146, "dur": 240389, "ph": "X", "name": "UpdateFromStreamAsync", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874579050, "dur": 5782, "ph": "X", "name": "ReadAsync 0", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874584842, "dur": 2661, "ph": "X", "name": "ProcessMessages 4715", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874587507, "dur": 525, "ph": "X", "name": "ReadAsync 4715", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874588036, "dur": 3, "ph": "X", "name": "ProcessMessages 4437", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874588041, "dur": 647, "ph": "X", "name": "ReadAsync 4437", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874588692, "dur": 4, "ph": "X", "name": "ProcessMessages 4360", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874588697, "dur": 4584, "ph": "X", "name": "ReadAsync 4360", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874593289, "dur": 4, "ph": "X", "name": "ProcessMessages 4447", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874593295, "dur": 274, "ph": "X", "name": "ReadAsync 4447", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874593573, "dur": 5, "ph": "X", "name": "ProcessMessages 4544", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874593579, "dur": 532, "ph": "X", "name": "ReadAsync 4544", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874594114, "dur": 7, "ph": "X", "name": "ProcessMessages 6310", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874594122, "dur": 387, "ph": "X", "name": "ReadAsync 6310", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874594513, "dur": 5, "ph": "X", "name": "ProcessMessages 5032", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874594519, "dur": 464, "ph": "X", "name": "ReadAsync 5032", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874594987, "dur": 5, "ph": "X", "name": "ProcessMessages 4328", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874594994, "dur": 408, "ph": "X", "name": "ReadAsync 4328", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874595409, "dur": 15, "ph": "X", "name": "ProcessMessages 4357", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874595425, "dur": 508, "ph": "X", "name": "ReadAsync 4357", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874595937, "dur": 8, "ph": "X", "name": "ProcessMessages 7086", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874595946, "dur": 391, "ph": "X", "name": "ReadAsync 7086", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874596340, "dur": 5, "ph": "X", "name": "ProcessMessages 4899", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874596347, "dur": 405, "ph": "X", "name": "ReadAsync 4899", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874596754, "dur": 5, "ph": "X", "name": "ProcessMessages 4636", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874596760, "dur": 478, "ph": "X", "name": "ReadAsync 4636", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597241, "dur": 5, "ph": "X", "name": "ProcessMessages 5417", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597248, "dur": 67, "ph": "X", "name": "ReadAsync 5417", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597319, "dur": 1, "ph": "X", "name": "ProcessMessages 615", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597321, "dur": 292, "ph": "X", "name": "ReadAsync 615", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597634, "dur": 2, "ph": "X", "name": "ProcessMessages 1442", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597637, "dur": 107, "ph": "X", "name": "ReadAsync 1442", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597747, "dur": 2, "ph": "X", "name": "ProcessMessages 1578", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597751, "dur": 80, "ph": "X", "name": "ReadAsync 1578", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597832, "dur": 1, "ph": "X", "name": "ProcessMessages 1115", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597835, "dur": 30, "ph": "X", "name": "ReadAsync 1115", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597869, "dur": 56, "ph": "X", "name": "ReadAsync 92", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597927, "dur": 1, "ph": "X", "name": "ProcessMessages 596", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597932, "dur": 51, "ph": "X", "name": "ReadAsync 596", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597985, "dur": 1, "ph": "X", "name": "ProcessMessages 614", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874597986, "dur": 54, "ph": "X", "name": "ReadAsync 614", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598044, "dur": 1, "ph": "X", "name": "ProcessMessages 519", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598046, "dur": 46, "ph": "X", "name": "ReadAsync 519", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598094, "dur": 1, "ph": "X", "name": "ProcessMessages 356", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598096, "dur": 51, "ph": "X", "name": "ReadAsync 356", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598148, "dur": 1, "ph": "X", "name": "ProcessMessages 648", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598150, "dur": 85, "ph": "X", "name": "ReadAsync 648", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598237, "dur": 1, "ph": "X", "name": "ProcessMessages 1010", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598240, "dur": 60, "ph": "X", "name": "ReadAsync 1010", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598302, "dur": 1, "ph": "X", "name": "ProcessMessages 655", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598303, "dur": 41, "ph": "X", "name": "ReadAsync 655", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598348, "dur": 51, "ph": "X", "name": "ReadAsync 300", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598401, "dur": 1, "ph": "X", "name": "ProcessMessages 545", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598403, "dur": 54, "ph": "X", "name": "ReadAsync 545", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598461, "dur": 57, "ph": "X", "name": "ReadAsync 434", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598520, "dur": 1, "ph": "X", "name": "ProcessMessages 526", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598522, "dur": 42, "ph": "X", "name": "ReadAsync 526", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598567, "dur": 49, "ph": "X", "name": "ReadAsync 340", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598619, "dur": 1, "ph": "X", "name": "ProcessMessages 357", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598621, "dur": 54, "ph": "X", "name": "ReadAsync 357", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598676, "dur": 1, "ph": "X", "name": "ProcessMessages 650", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598678, "dur": 52, "ph": "X", "name": "ReadAsync 650", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598733, "dur": 1, "ph": "X", "name": "ProcessMessages 598", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598735, "dur": 38, "ph": "X", "name": "ReadAsync 598", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598776, "dur": 2, "ph": "X", "name": "ProcessMessages 325", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598779, "dur": 59, "ph": "X", "name": "ReadAsync 325", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598840, "dur": 1, "ph": "X", "name": "ProcessMessages 571", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598842, "dur": 52, "ph": "X", "name": "ReadAsync 571", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598897, "dur": 55, "ph": "X", "name": "ReadAsync 366", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598954, "dur": 1, "ph": "X", "name": "ProcessMessages 606", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874598956, "dur": 46, "ph": "X", "name": "ReadAsync 606", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874599006, "dur": 2090, "ph": "X", "name": "ReadAsync 447", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601103, "dur": 7, "ph": "X", "name": "ProcessMessages 4590", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601112, "dur": 149, "ph": "X", "name": "ReadAsync 4590", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601266, "dur": 29, "ph": "X", "name": "ProcessMessages 2416", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601297, "dur": 125, "ph": "X", "name": "ReadAsync 2416", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601424, "dur": 2, "ph": "X", "name": "ProcessMessages 2137", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601428, "dur": 86, "ph": "X", "name": "ReadAsync 2137", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601522, "dur": 4, "ph": "X", "name": "ProcessMessages 1158", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601527, "dur": 69, "ph": "X", "name": "ReadAsync 1158", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601600, "dur": 1, "ph": "X", "name": "ProcessMessages 703", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601603, "dur": 83, "ph": "X", "name": "ReadAsync 703", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601691, "dur": 2, "ph": "X", "name": "ProcessMessages 548", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601696, "dur": 63, "ph": "X", "name": "ReadAsync 548", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601763, "dur": 1, "ph": "X", "name": "ProcessMessages 681", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601768, "dur": 69, "ph": "X", "name": "ReadAsync 681", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601839, "dur": 3, "ph": "X", "name": "ProcessMessages 669", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601843, "dur": 56, "ph": "X", "name": "ReadAsync 669", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601901, "dur": 1, "ph": "X", "name": "ProcessMessages 526", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601903, "dur": 72, "ph": "X", "name": "ReadAsync 526", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601978, "dur": 1, "ph": "X", "name": "ProcessMessages 705", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874601982, "dur": 57, "ph": "X", "name": "ReadAsync 705", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602041, "dur": 1, "ph": "X", "name": "ProcessMessages 628", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602043, "dur": 57, "ph": "X", "name": "ReadAsync 628", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602103, "dur": 1, "ph": "X", "name": "ProcessMessages 541", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602108, "dur": 69, "ph": "X", "name": "ReadAsync 541", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602179, "dur": 1, "ph": "X", "name": "ProcessMessages 704", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602181, "dur": 58, "ph": "X", "name": "ReadAsync 704", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602241, "dur": 1, "ph": "X", "name": "ProcessMessages 556", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602244, "dur": 63, "ph": "X", "name": "ReadAsync 556", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602308, "dur": 1, "ph": "X", "name": "ProcessMessages 823", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602310, "dur": 57, "ph": "X", "name": "ReadAsync 823", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602372, "dur": 1, "ph": "X", "name": "ProcessMessages 473", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602374, "dur": 57, "ph": "X", "name": "ReadAsync 473", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602434, "dur": 1, "ph": "X", "name": "ProcessMessages 520", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602441, "dur": 67, "ph": "X", "name": "ReadAsync 520", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602512, "dur": 1, "ph": "X", "name": "ProcessMessages 721", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602514, "dur": 50, "ph": "X", "name": "ReadAsync 721", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602570, "dur": 1, "ph": "X", "name": "ProcessMessages 584", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602572, "dur": 58, "ph": "X", "name": "ReadAsync 584", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602633, "dur": 1, "ph": "X", "name": "ProcessMessages 543", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602637, "dur": 49, "ph": "X", "name": "ReadAsync 543", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602688, "dur": 1, "ph": "X", "name": "ProcessMessages 399", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602690, "dur": 30, "ph": "X", "name": "ReadAsync 399", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602725, "dur": 69, "ph": "X", "name": "ReadAsync 135", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602797, "dur": 1, "ph": "X", "name": "ProcessMessages 698", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602801, "dur": 69, "ph": "X", "name": "ReadAsync 698", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602871, "dur": 1, "ph": "X", "name": "ProcessMessages 766", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602876, "dur": 70, "ph": "X", "name": "ReadAsync 766", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602948, "dur": 1, "ph": "X", "name": "ProcessMessages 725", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874602952, "dur": 53, "ph": "X", "name": "ReadAsync 725", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603007, "dur": 1, "ph": "X", "name": "ProcessMessages 530", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603010, "dur": 60, "ph": "X", "name": "ReadAsync 530", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603081, "dur": 1, "ph": "X", "name": "ProcessMessages 565", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603084, "dur": 77, "ph": "X", "name": "ReadAsync 565", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603162, "dur": 3, "ph": "X", "name": "ProcessMessages 973", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603167, "dur": 58, "ph": "X", "name": "ReadAsync 973", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603228, "dur": 1, "ph": "X", "name": "ProcessMessages 626", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603233, "dur": 58, "ph": "X", "name": "ReadAsync 626", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603293, "dur": 1, "ph": "X", "name": "ProcessMessages 577", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603296, "dur": 57, "ph": "X", "name": "ReadAsync 577", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603354, "dur": 1, "ph": "X", "name": "ProcessMessages 547", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603358, "dur": 52, "ph": "X", "name": "ReadAsync 547", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603412, "dur": 1, "ph": "X", "name": "ProcessMessages 482", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603414, "dur": 36, "ph": "X", "name": "ReadAsync 482", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603453, "dur": 1, "ph": "X", "name": "ProcessMessages 252", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603455, "dur": 53, "ph": "X", "name": "ReadAsync 252", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603510, "dur": 5, "ph": "X", "name": "ProcessMessages 522", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603516, "dur": 54, "ph": "X", "name": "ReadAsync 522", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603573, "dur": 1, "ph": "X", "name": "ProcessMessages 506", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603575, "dur": 52, "ph": "X", "name": "ReadAsync 506", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603629, "dur": 1, "ph": "X", "name": "ProcessMessages 265", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603631, "dur": 37, "ph": "X", "name": "ReadAsync 265", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874603727, "dur": 2421, "ph": "X", "name": "ReadAsync 215", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874606153, "dur": 1100, "ph": "X", "name": "ProcessMessages 2272", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874607257, "dur": 284, "ph": "X", "name": "ReadAsync 2272", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874607564, "dur": 78, "ph": "X", "name": "ProcessMessages 1536", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874607644, "dur": 3697, "ph": "X", "name": "ReadAsync 1536", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874611347, "dur": 2, "ph": "X", "name": "ProcessMessages 80", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874611352, "dur": 194, "ph": "X", "name": "ReadAsync 80", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874611552, "dur": 2, "ph": "X", "name": "ProcessMessages 80", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874611555, "dur": 4785, "ph": "X", "name": "ReadAsync 80", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874616348, "dur": 725, "ph": "X", "name": "ProcessMessages 2004", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874617078, "dur": 190949, "ph": "X", "name": "ReadAsync 2004", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874808050, "dur": 4491, "ph": "X", "name": "ProcessMessages 351", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874812560, "dur": 407, "ph": "X", "name": "ReadAsync 351", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874812974, "dur": 352, "ph": "X", "name": "ProcessMessages 173", "args": {} }, +{ "pid": 2663, "tid": 12884901888, "ts": 1695752874813328, "dur": 4878, "ph": "X", "name": "ReadAsync 173", "args": {} }, +{ "pid": 2663, "tid": 7099, "ts": 1695752874872267, "dur": 725, "ph": "X", "name": "ReadEntireBinlogFromIpcAsync", "args": {} }, +{ "pid": 2663, "tid": 8589934592, "ph": "M", "name": "thread_name", "args": { "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync" } }, +{ "pid": 2663, "tid": 8589934592, "ts": 1695752874568470, "dur": 83518, "ph": "X", "name": "await writeBuildProgramInputDataTask", "args": {} }, +{ "pid": 2663, "tid": 8589934592, "ts": 1695752874651992, "dur": 12, "ph": "X", "name": "WritePipe.WaitConnectionAsync", "args": {} }, +{ "pid": 2663, "tid": 8589934592, "ts": 1695752874652007, "dur": 3476, "ph": "X", "name": "WriteDagReadyMessage", "args": {} }, +{ "pid": 2663, "tid": 7099, "ts": 1695752874872996, "dur": 52, "ph": "X", "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync", "args": {} }, +{ "pid": 2663, "tid": 4294967296, "ph": "M", "name": "thread_name", "args": { "name": "BuildAsync" } }, +{ "pid": 2663, "tid": 4294967296, "ts": 1695752874525333, "dur": 295811, "ph": "X", "name": "RunBackend", "args": {} }, +{ "pid": 2663, "tid": 4294967296, "ts": 1695752874537327, "dur": 25838, "ph": "X", "name": "BackendProgram.Start", "args": {} }, +{ "pid": 2663, "tid": 4294967296, "ts": 1695752874822918, "dur": 12702, "ph": "X", "name": "await WaitForAndApplyScriptUpdaters", "args": {} }, +{ "pid": 2663, "tid": 4294967296, "ts": 1695752874827719, "dur": 6465, "ph": "X", "name": "await ScriptUpdaters", "args": {} }, +{ "pid": 2663, "tid": 4294967296, "ts": 1695752874835710, "dur": 17, "ph": "X", "name": "await taskToReadBuildProgramOutput", "args": {} }, +{ "pid": 2663, "tid": 7099, "ts": 1695752874873049, "dur": 19, "ph": "X", "name": "BuildAsync", "args": {} }, +{ "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } } +,{ "pid":12345, "tid":0, "ts":1695752874570016, "dur":181, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874570238, "dur":1158, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874571407, "dur":93, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874571547, "dur":189, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874571975, "dur":12528, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874584780, "dur":3911, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874588920, "dur":322, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874589440, "dur":291, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874589965, "dur":4490, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874594716, "dur":183, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874595233, "dur":128, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp2" }} +,{ "pid":12345, "tid":0, "ts":1695752874595703, "dur":137, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874596137, "dur":131, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874596536, "dur":162, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":0, "ts":1695752874597061, "dur":132, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp" }} +,{ "pid":12345, "tid":0, "ts":1695752874597469, "dur":143, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":0, "ts":1695752874597901, "dur":178, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":0, "ts":1695752874600211, "dur":1757, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_B8324D455948C852.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1695752874571756, "dur":32804, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874604573, "dur":208913, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874813488, "dur":81, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874813643, "dur":71, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1695752874813748, "dur":1340, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} +,{ "pid":12345, "tid":1, "ts":1695752874571627, "dur":32957, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874604589, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1695752874605002, "dur":55, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1695752874605125, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1695752874605565, "dur":1446, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":1, "ts":1695752874607068, "dur":84, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp" }} +,{ "pid":12345, "tid":1, "ts":1695752874607153, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874607551, "dur":137, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874607688, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874607807, "dur":61, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874607868, "dur":161, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874608079, "dur":96, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874608175, "dur":84, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874608259, "dur":200, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874608459, "dur":108, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874608650, "dur":3312, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Codebase/ExposeDescriptor.cs" }} +,{ "pid":12345, "tid":1, "ts":1695752874608567, "dur":3408, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874611975, "dur":163, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874612138, "dur":174, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874612312, "dur":69, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874612414, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874612525, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1695752874612652, "dur":236, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874612959, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1695752874613024, "dur":377, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874613493, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1695752874613640, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874613768, "dur":248, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1695752874614016, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874614126, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1695752874614255, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874614340, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874614425, "dur":330, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874614828, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1695752874615015, "dur":208, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874615343, "dur":121, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874615464, "dur":161, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874615672, "dur":71, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874615743, "dur":40783, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1695752874656527, "dur":156949, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874571642, "dur":32953, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874604599, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1695752874605121, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874605391, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1695752874605505, "dur":761, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695752874606272, "dur":869, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695752874607152, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874607573, "dur":172, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874607745, "dur":176, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874607922, "dur":192, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874608115, "dur":281, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874608396, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874608638, "dur":3364, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Framework/Control/ForEachDescriptor.cs" }} +,{ "pid":12345, "tid":2, "ts":1695752874608531, "dur":3514, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874612045, "dur":88, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874612158, "dur":147, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874612318, "dur":58, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874612417, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874612547, "dur":402, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695752874612950, "dur":463, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874613422, "dur":236, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874613733, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1695752874613798, "dur":239, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874614043, "dur":282, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1695752874614326, "dur":355, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874614719, "dur":57, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874614801, "dur":215, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874615016, "dur":201, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874615235, "dur":111, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874615347, "dur":112, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874615460, "dur":172, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874615657, "dur":80, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1695752874615761, "dur":197814, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874571677, "dur":32928, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874604609, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1695752874605120, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1695752874605539, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874605595, "dur":1505, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1695752874607577, "dur":137, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874607714, "dur":149, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874607864, "dur":60, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874607924, "dur":115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874608077, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874608211, "dur":75, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874608388, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874608507, "dur":171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874609981, "dur":505, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874611902, "dur":228, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874612153, "dur":154, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874612430, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1695752874612496, "dur":208, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874612709, "dur":169, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874612881, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1695752874612931, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874613145, "dur":313, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874613518, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874613692, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1695752874613792, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1695752874613917, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874614078, "dur":176, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1695752874614309, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874614451, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1695752874614724, "dur":63, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874614787, "dur":227, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874615034, "dur":182, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874615223, "dur":117, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874615346, "dur":112, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874615510, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1695752874615667, "dur":66, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1695752874615755, "dur":197802, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695752874571703, "dur":32913, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695752874604619, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695752874604762, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695752874604828, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695752874605044, "dur":60, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695752874605138, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695752874605234, "dur":89, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695752874605376, "dur":924, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874606305, "dur":817, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874607136, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695752874607223, "dur":4878, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874612176, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874612362, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1695752874612433, "dur":423, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695752874612873, "dur":1663, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874615045, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874615359, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874615502, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874616226, "dur":192096, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1695752874809303, "dur":125, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":4, "ts":1695752874809293, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":4, "ts":1695752874810186, "dur":318, "ph":"X", "name": "EmitNodeFinish", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1695752874809483, "dur":1051, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":4, "ts":1695752874810583, "dur":2967, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874571721, "dur":32903, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874604626, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874604717, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874604839, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874604914, "dur":53, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874604993, "dur":57, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874605055, "dur":135, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874605586, "dur":1491, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1695752874607172, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874607297, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874607438, "dur":116, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1695752874607562, "dur":397, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874607959, "dur":451, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874608613, "dur":3303, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Plugin/BoltFlow.cs" }} +,{ "pid":12345, "tid":5, "ts":1695752874608410, "dur":3511, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874611921, "dur":218, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874612140, "dur":180, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874612320, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874612417, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874612567, "dur":422, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695752874612990, "dur":405, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874613438, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874613526, "dur":251, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874613777, "dur":144, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1695752874613921, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1695752874614015, "dur":650, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874614707, "dur":71, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874614791, "dur":226, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874615017, "dur":210, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874615227, "dur":121, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874615348, "dur":108, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874615465, "dur":163, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874615650, "dur":90, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874615740, "dur":40482, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874656224, "dur":292, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1695752874656517, "dur":157024, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874571749, "dur":32884, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874604635, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1695752874604848, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1695752874604903, "dur":52, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1695752874605133, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1695752874605592, "dur":1501, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp2" }} +,{ "pid":12345, "tid":6, "ts":1695752874607568, "dur":176, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874607744, "dur":178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874607922, "dur":249, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874608172, "dur":91, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874608264, "dur":317, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874608653, "dur":3278, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.visualscripting@1.8.0/Editor/VisualScripting.Flow/Description/FlowMacroDescriptor.cs" }} +,{ "pid":12345, "tid":6, "ts":1695752874608581, "dur":3365, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874611946, "dur":189, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874612136, "dur":174, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874612310, "dur":60, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874612414, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874612533, "dur":365, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1695752874612899, "dur":488, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874613520, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874613680, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1695752874613756, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1695752874613931, "dur":182, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874614122, "dur":250, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1695752874614372, "dur":299, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874614709, "dur":73, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874614782, "dur":227, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874615028, "dur":200, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874615229, "dur":112, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874615350, "dur":107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874615473, "dur":152, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874615662, "dur":82, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874615745, "dur":193591, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874809374, "dur":262, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":6, "ts":1695752874809345, "dur":294, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":6, "ts":1695752874809724, "dur":747, "ph":"X", "name": "EmitNodeStart", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1695752874810474, "dur":314, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":0, "ts":1695752874816854, "dur":141, "ph":"X", "name": "ProfilerWriteOutput" } +,{ "pid": 2663, "tid": 7099, "ts": 1695752874878030, "dur": 4132, "ph": "X", "name": "Wait for external events", "args": {"First to finish": "backend1.traceevents"} }, +{ "pid": 2663, "tid": 7099, "ts": 1695752874882198, "dur": 1889, "ph": "X", "name": "backend1.traceevents", "args": {} }, +{ "pid": 2663, "tid": 7099, "ts": 1695752874868538, "dur": 16584, "ph": "X", "name": "Write chrome-trace events", "args": {} }, +{} + +] +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/tundra.digestcache b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/tundra.digestcache new file mode 100644 index 00000000..fe2abb72 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/tundra.digestcache differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/tundra.log.json b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/tundra.log.json new file mode 100644 index 00000000..4fcf40ad --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/Bee/tundra.log.json @@ -0,0 +1,386 @@ +{"msg":"init","dagFile":"Library/Bee/2400b0aE.dag","targets":["ScriptAssemblies"]} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"ScriptAssemblies","enqueuedNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_DB380EF12F0E7B13.mvfrm","enqueuedNodeIndex":5,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_3F98C89F69A3241E.mvfrm","enqueuedNodeIndex":7,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_AEBA851AC5F81EEC.mvfrm","enqueuedNodeIndex":8,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.EditorToolbarModule.dll_8A53BA46C292FA2E.mvfrm","enqueuedNodeIndex":9,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphToolsFoundationModule.dll_E6F8403D7FB6D8F4.mvfrm","enqueuedNodeIndex":10,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B6DAE19697B29D43.mvfrm","enqueuedNodeIndex":11,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_72411A789A0AF548.mvfrm","enqueuedNodeIndex":12,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PropertiesModule.dll_466CF0A03B73AA27.mvfrm","enqueuedNodeIndex":13,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_39CA06281ECF1B45.mvfrm","enqueuedNodeIndex":14,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_ADF32B04C17FA466.mvfrm","enqueuedNodeIndex":15,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F58AC49E8CD56A51.mvfrm","enqueuedNodeIndex":16,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TerrainModule.dll_F8DA28951B9AAE75.mvfrm","enqueuedNodeIndex":17,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_625403B3C3D71B31.mvfrm","enqueuedNodeIndex":18,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_AA3C3A25535AD44F.mvfrm","enqueuedNodeIndex":19,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_0B638EB30A6B1677.mvfrm","enqueuedNodeIndex":20,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_7149EBBBBB6BFF6F.mvfrm","enqueuedNodeIndex":21,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_71185F90FC180DEE.mvfrm","enqueuedNodeIndex":22,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_93E3796329B5B349.mvfrm","enqueuedNodeIndex":23,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.dll_F84FF87FFA732212.mvfrm","enqueuedNodeIndex":24,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_6825EFD885C92507.mvfrm","enqueuedNodeIndex":25,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_E098969BC1F5CC03.mvfrm","enqueuedNodeIndex":26,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_EF92D48F048B6E45.mvfrm","enqueuedNodeIndex":27,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_85605DBF720F71E9.mvfrm","enqueuedNodeIndex":28,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_7DB339198135D037.mvfrm","enqueuedNodeIndex":29,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_0662FBE6AAA0B09B.mvfrm","enqueuedNodeIndex":30,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_6D4B58E184BD8F7F.mvfrm","enqueuedNodeIndex":31,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_137FEE78DB3D860F.mvfrm","enqueuedNodeIndex":32,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_45458B10D95E31A2.mvfrm","enqueuedNodeIndex":33,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_97BC33A5C1D249CB.mvfrm","enqueuedNodeIndex":34,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ContentLoadModule.dll_16C9925A4FB87824.mvfrm","enqueuedNodeIndex":35,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_FE58E243D713E63E.mvfrm","enqueuedNodeIndex":36,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_F37C363E7361CC96.mvfrm","enqueuedNodeIndex":37,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_F5E127A77D23A4FC.mvfrm","enqueuedNodeIndex":38,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_F08FC63E0AC2D3DB.mvfrm","enqueuedNodeIndex":39,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_006238E621780D21.mvfrm","enqueuedNodeIndex":40,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_19E01EA9CACC5F36.mvfrm","enqueuedNodeIndex":41,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GraphToolsFoundationModule.dll_6A6B4D54F48C2F1F.mvfrm","enqueuedNodeIndex":42,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_DBC9FE31EF687C35.mvfrm","enqueuedNodeIndex":43,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_06A91BC54D428D6B.mvfrm","enqueuedNodeIndex":44,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_3EC29B4D70D2447C.mvfrm","enqueuedNodeIndex":45,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_B13788C15B82E996.mvfrm","enqueuedNodeIndex":46,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_0EF8543819278628.mvfrm","enqueuedNodeIndex":47,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_6CD8C39720D8D53F.mvfrm","enqueuedNodeIndex":48,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_40B01FD7C1312C8D.mvfrm","enqueuedNodeIndex":49,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_51CCB8CB72B97908.mvfrm","enqueuedNodeIndex":50,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_261BD7AE655DFD89.mvfrm","enqueuedNodeIndex":51,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_468E7F8AE1735824.mvfrm","enqueuedNodeIndex":52,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_B908B136944538FD.mvfrm","enqueuedNodeIndex":53,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_D2064DB0130C697E.mvfrm","enqueuedNodeIndex":54,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_D10E65D0AAEB4CCC.mvfrm","enqueuedNodeIndex":55,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_22D5FF74A41C5AE8.mvfrm","enqueuedNodeIndex":56,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_471B5DE83DB7C372.mvfrm","enqueuedNodeIndex":57,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_9135A46F0F39D647.mvfrm","enqueuedNodeIndex":58,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_5A97CD5CD59D58EF.mvfrm","enqueuedNodeIndex":59,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_3548C796D2B0E4E6.mvfrm","enqueuedNodeIndex":60,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_030C9139EC3BF4B0.mvfrm","enqueuedNodeIndex":61,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_9714667436D80841.mvfrm","enqueuedNodeIndex":62,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_39F54B0FC1972927.mvfrm","enqueuedNodeIndex":63,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_16A05F590CEA2735.mvfrm","enqueuedNodeIndex":64,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_6DB9F79BBA83DCC3.mvfrm","enqueuedNodeIndex":65,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_16CDFA6262438AA0.mvfrm","enqueuedNodeIndex":66,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_EB54E13F80A995BA.mvfrm","enqueuedNodeIndex":67,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_4709285DFAB652B1.mvfrm","enqueuedNodeIndex":68,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_E0B37F06D6D4D9FC.mvfrm","enqueuedNodeIndex":69,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_289BB5786658931A.mvfrm","enqueuedNodeIndex":70,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_83D73F678CD4D8E4.mvfrm","enqueuedNodeIndex":71,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_8A5148C0986676C3.mvfrm","enqueuedNodeIndex":72,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_71F85903BDB018BA.mvfrm","enqueuedNodeIndex":73,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_63998E05E2102AB3.mvfrm","enqueuedNodeIndex":74,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_8137A7FF37C75C0E.mvfrm","enqueuedNodeIndex":75,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_54476E7AAE2DD75B.mvfrm","enqueuedNodeIndex":76,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_662DF0548D9AAA20.mvfrm","enqueuedNodeIndex":77,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_8142FD72243DB3F4.mvfrm","enqueuedNodeIndex":78,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_B87CFEF0E22363D6.mvfrm","enqueuedNodeIndex":79,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_2CDB158356136344.mvfrm","enqueuedNodeIndex":80,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_5BD4E6365C0764F1.mvfrm","enqueuedNodeIndex":81,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_310505151AB00395.mvfrm","enqueuedNodeIndex":82,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_C2D6906B66778415.mvfrm","enqueuedNodeIndex":83,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_592D70631E350E0A.mvfrm","enqueuedNodeIndex":84,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_F35DFAD456184F86.mvfrm","enqueuedNodeIndex":85,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_97AC92D138B0F40D.mvfrm","enqueuedNodeIndex":86,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_B66BB48B83CAB02B.mvfrm","enqueuedNodeIndex":87,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_6852BFBD84ECA376.mvfrm","enqueuedNodeIndex":88,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_2B6C80516D32CC40.mvfrm","enqueuedNodeIndex":89,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_3A5AA96668122F5C.mvfrm","enqueuedNodeIndex":90,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_74A7BD6C684A64A7.mvfrm","enqueuedNodeIndex":91,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_E92A77900D04FD89.mvfrm","enqueuedNodeIndex":92,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_2AF43F5858E6AEF7.mvfrm","enqueuedNodeIndex":93,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Android.Gradle.dll_2940B73B32A14E7B.mvfrm","enqueuedNodeIndex":94,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Android.Types.dll_A86E1195710B33F1.mvfrm","enqueuedNodeIndex":95,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Common.dll_56F45C9EA704DFF8.mvfrm","enqueuedNodeIndex":96,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.Xcode.dll_9935E165A4BFFED4.mvfrm","enqueuedNodeIndex":97,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_14EDDD4BD1523245.mvfrm","enqueuedNodeIndex":104,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Android.Extensions.dll_83A162F319E1559B.mvfrm","enqueuedNodeIndex":105,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.LinuxStandalone.Extensions.dll_A0A1467CD50F74AD.mvfrm","enqueuedNodeIndex":106,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.OSXStandalone.Extensions.dll_D84794CDC9B659E8.mvfrm","enqueuedNodeIndex":107,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_F5C69B38625D444D.mvfrm","enqueuedNodeIndex":108,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_83988832D266A2BD.mvfrm","enqueuedNodeIndex":109,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.iOS.Extensions.dll_315064E009BC8B2D.mvfrm","enqueuedNodeIndex":110,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_D861B4C23F45CF48.mvfrm","enqueuedNodeIndex":111,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C14F84B577BAB56D.mvfrm","enqueuedNodeIndex":112,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm","enqueuedNodeIndex":113,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm","enqueuedNodeIndex":114,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm","enqueuedNodeIndex":115,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm","enqueuedNodeIndex":116,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm","enqueuedNodeIndex":123,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll (+2 others)","enqueuedNodeIndex":4,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_F1B32A9E2F71E054.mvfrm","enqueueingNodeIndex":123} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.UnityAdditionalFile.txt","enqueuedNodeIndex":1,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll (+2 others)","enqueueingNodeIndex":4} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp","enqueuedNodeIndex":2,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll (+2 others)","enqueueingNodeIndex":4} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.rsp2","enqueuedNodeIndex":3,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll (+2 others)","enqueueingNodeIndex":4} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm","enqueuedNodeIndex":99,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll (+2 others)","enqueueingNodeIndex":4} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp","enqueuedNodeIndex":98,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEngine.TestRunner.dll.mvfrm","enqueueingNodeIndex":99} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_2198B4DBE2E683D0.mvfrm","enqueuedNodeIndex":124,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_E2E90525EE276E6A.mvfrm","enqueuedNodeIndex":125,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm","enqueuedNodeIndex":132,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll (+2 others)","enqueuedNodeIndex":122,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_2594DFF003AE8269.mvfrm","enqueueingNodeIndex":132} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.UnityAdditionalFile.txt","enqueuedNodeIndex":119,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll (+2 others)","enqueueingNodeIndex":122} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp","enqueuedNodeIndex":120,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll (+2 others)","enqueueingNodeIndex":122} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.rsp2","enqueuedNodeIndex":121,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll (+2 others)","enqueueingNodeIndex":122} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm","enqueuedNodeIndex":127,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll (+2 others)","enqueueingNodeIndex":122} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp","enqueuedNodeIndex":126,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEditor.TestRunner.dll.mvfrm","enqueueingNodeIndex":127} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm","enqueuedNodeIndex":133,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll (+2 others)","enqueuedNodeIndex":103,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_01958F46DE82E516.mvfrm","enqueueingNodeIndex":133} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt","enqueuedNodeIndex":100,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll (+2 others)","enqueueingNodeIndex":103} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp","enqueuedNodeIndex":101,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll (+2 others)","enqueueingNodeIndex":103} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.rsp2","enqueuedNodeIndex":102,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll (+2 others)","enqueueingNodeIndex":103} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm","enqueuedNodeIndex":118,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll (+2 others)","enqueueingNodeIndex":103} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp","enqueuedNodeIndex":117,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.dll.mvfrm","enqueueingNodeIndex":118} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm","enqueuedNodeIndex":140,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll (+2 others)","enqueuedNodeIndex":131,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_452FB8EBD860BCAB.mvfrm","enqueueingNodeIndex":140} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt","enqueuedNodeIndex":128,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll (+2 others)","enqueueingNodeIndex":131} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp","enqueuedNodeIndex":129,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll (+2 others)","enqueueingNodeIndex":131} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.rsp2","enqueuedNodeIndex":130,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll (+2 others)","enqueueingNodeIndex":131} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm","enqueuedNodeIndex":135,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll (+2 others)","enqueueingNodeIndex":131} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp","enqueuedNodeIndex":134,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.dll.mvfrm","enqueueingNodeIndex":135} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_F0D9BA1F3F167740.mvfrm","enqueuedNodeIndex":213,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)","enqueuedNodeIndex":152,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_F0D9BA1F3F167740.mvfrm","enqueueingNodeIndex":213} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":149,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)","enqueueingNodeIndex":152} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp","enqueuedNodeIndex":150,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)","enqueueingNodeIndex":152} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.rsp2","enqueuedNodeIndex":151,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)","enqueueingNodeIndex":152} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm","enqueuedNodeIndex":154,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)","enqueueingNodeIndex":152} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":153,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm","enqueueingNodeIndex":154} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm","enqueuedNodeIndex":220,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll (+2 others)","enqueuedNodeIndex":170,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.SysrootPackage.Editor.ref.dll_795E971823712576.mvfrm","enqueueingNodeIndex":220} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":167,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll (+2 others)","enqueueingNodeIndex":170} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp","enqueuedNodeIndex":168,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll (+2 others)","enqueueingNodeIndex":170} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.rsp2","enqueuedNodeIndex":169,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll (+2 others)","enqueueingNodeIndex":170} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm","enqueuedNodeIndex":172,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll (+2 others)","enqueueingNodeIndex":170} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":171,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.dll.mvfrm","enqueueingNodeIndex":172} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Settings.Editor.ref.dll_C5D459AC3FA0C65A.mvfrm","enqueuedNodeIndex":227,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll (+2 others)","enqueuedNodeIndex":164,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Settings.Editor.ref.dll_C5D459AC3FA0C65A.mvfrm","enqueueingNodeIndex":227} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":161,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll (+2 others)","enqueueingNodeIndex":164} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp","enqueuedNodeIndex":162,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll (+2 others)","enqueueingNodeIndex":164} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.rsp2","enqueuedNodeIndex":163,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll (+2 others)","enqueueingNodeIndex":164} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm","enqueuedNodeIndex":166,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll (+2 others)","enqueueingNodeIndex":164} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":165,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Settings.Editor.dll.mvfrm","enqueueingNodeIndex":166} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll_74E155EA2BEE38FD.mvfrm","enqueuedNodeIndex":228,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)","enqueuedNodeIndex":176,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll_74E155EA2BEE38FD.mvfrm","enqueueingNodeIndex":228} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.UnityAdditionalFile.txt","enqueuedNodeIndex":173,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)","enqueueingNodeIndex":176} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp","enqueuedNodeIndex":174,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)","enqueueingNodeIndex":176} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp2","enqueuedNodeIndex":175,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)","enqueueingNodeIndex":176} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm","enqueuedNodeIndex":178,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)","enqueueingNodeIndex":176} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm.rsp","enqueuedNodeIndex":177,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm","enqueueingNodeIndex":178} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll_3B45F137F1F80EEA.mvfrm","enqueuedNodeIndex":229,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)","enqueuedNodeIndex":182,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll_3B45F137F1F80EEA.mvfrm","enqueueingNodeIndex":229} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.UnityAdditionalFile.txt","enqueuedNodeIndex":179,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)","enqueueingNodeIndex":182} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp","enqueuedNodeIndex":180,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)","enqueueingNodeIndex":182} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp2","enqueuedNodeIndex":181,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)","enqueueingNodeIndex":182} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm","enqueuedNodeIndex":184,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)","enqueueingNodeIndex":182} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm.rsp","enqueuedNodeIndex":183,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm","enqueueingNodeIndex":184} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_8DB7A3E3632A4E05.mvfrm","enqueuedNodeIndex":236,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll (+2 others)","enqueuedNodeIndex":188,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_8DB7A3E3632A4E05.mvfrm","enqueueingNodeIndex":236} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.UnityAdditionalFile.txt","enqueuedNodeIndex":185,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll (+2 others)","enqueueingNodeIndex":188} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp","enqueuedNodeIndex":186,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll (+2 others)","enqueueingNodeIndex":188} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.rsp2","enqueuedNodeIndex":187,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll (+2 others)","enqueueingNodeIndex":188} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm","enqueuedNodeIndex":190,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll (+2 others)","enqueueingNodeIndex":188} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp","enqueuedNodeIndex":189,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.dll.mvfrm","enqueueingNodeIndex":190} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_5AB3C2EE9968C745.mvfrm","enqueuedNodeIndex":243,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll (+2 others)","enqueuedNodeIndex":194,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_5AB3C2EE9968C745.mvfrm","enqueueingNodeIndex":243} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.UnityAdditionalFile.txt","enqueuedNodeIndex":191,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll (+2 others)","enqueueingNodeIndex":194} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp","enqueuedNodeIndex":192,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll (+2 others)","enqueueingNodeIndex":194} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.rsp2","enqueuedNodeIndex":193,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll (+2 others)","enqueueingNodeIndex":194} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm","enqueuedNodeIndex":196,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll (+2 others)","enqueueingNodeIndex":194} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm.rsp","enqueuedNodeIndex":195,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.dll.mvfrm","enqueueingNodeIndex":196} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm","enqueuedNodeIndex":250,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)","enqueuedNodeIndex":200,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_FA56F406C264152A.mvfrm","enqueueingNodeIndex":250} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.UnityAdditionalFile.txt","enqueuedNodeIndex":197,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)","enqueueingNodeIndex":200} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp","enqueuedNodeIndex":198,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)","enqueueingNodeIndex":200} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.rsp2","enqueuedNodeIndex":199,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)","enqueueingNodeIndex":200} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm","enqueuedNodeIndex":202,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)","enqueueingNodeIndex":200} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp","enqueuedNodeIndex":201,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm","enqueueingNodeIndex":202} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Sysroot.Linux_x86_64.ref.dll_47C0B0C1257E42B5.mvfrm","enqueuedNodeIndex":263,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll (+2 others)","enqueuedNodeIndex":219,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Sysroot.Linux_x86_64.ref.dll_47C0B0C1257E42B5.mvfrm","enqueueingNodeIndex":263} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.UnityAdditionalFile.txt","enqueuedNodeIndex":216,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll (+2 others)","enqueueingNodeIndex":219} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp","enqueuedNodeIndex":217,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll (+2 others)","enqueueingNodeIndex":219} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.rsp2","enqueuedNodeIndex":218,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll (+2 others)","enqueueingNodeIndex":219} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm","enqueuedNodeIndex":222,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll (+2 others)","enqueueingNodeIndex":219} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm.rsp","enqueuedNodeIndex":221,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm","enqueueingNodeIndex":222} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm","enqueuedNodeIndex":270,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)","enqueuedNodeIndex":249,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EC0FF0FDA4803327.mvfrm","enqueueingNodeIndex":270} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":246,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)","enqueueingNodeIndex":249} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp","enqueuedNodeIndex":247,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)","enqueueingNodeIndex":249} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.rsp2","enqueuedNodeIndex":248,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)","enqueueingNodeIndex":249} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm","enqueuedNodeIndex":252,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)","enqueueingNodeIndex":249} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":251,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm","enqueueingNodeIndex":252} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm","enqueuedNodeIndex":271,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)","enqueuedNodeIndex":256,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_4167D45D446D89D9.mvfrm","enqueueingNodeIndex":271} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.UnityAdditionalFile.txt","enqueuedNodeIndex":253,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)","enqueueingNodeIndex":256} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp","enqueuedNodeIndex":254,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)","enqueueingNodeIndex":256} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.rsp2","enqueuedNodeIndex":255,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)","enqueueingNodeIndex":256} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm","enqueuedNodeIndex":258,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)","enqueueingNodeIndex":256} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm.rsp","enqueuedNodeIndex":257,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm","enqueueingNodeIndex":258} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm","enqueuedNodeIndex":284,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)","enqueuedNodeIndex":269,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6940D9ACB35EBE68.mvfrm","enqueueingNodeIndex":284} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":266,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)","enqueueingNodeIndex":269} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp","enqueuedNodeIndex":267,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)","enqueueingNodeIndex":269} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp2","enqueuedNodeIndex":268,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)","enqueueingNodeIndex":269} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm","enqueuedNodeIndex":273,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)","enqueueingNodeIndex":269} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":272,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm","enqueueingNodeIndex":273} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm","enqueuedNodeIndex":285,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll (+2 others)","enqueuedNodeIndex":277,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_00B85F0613CA4DCC.mvfrm","enqueueingNodeIndex":285} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.UnityAdditionalFile.txt","enqueuedNodeIndex":274,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll (+2 others)","enqueueingNodeIndex":277} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp","enqueuedNodeIndex":275,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll (+2 others)","enqueueingNodeIndex":277} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.rsp2","enqueuedNodeIndex":276,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll (+2 others)","enqueueingNodeIndex":277} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm","enqueuedNodeIndex":279,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll (+2 others)","enqueueingNodeIndex":277} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp","enqueuedNodeIndex":278,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.dll.mvfrm","enqueueingNodeIndex":279} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E3BEEDFEAAF21AA5.mvfrm","enqueuedNodeIndex":298,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)","enqueuedNodeIndex":291,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E3BEEDFEAAF21AA5.mvfrm","enqueueingNodeIndex":298} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":288,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)","enqueueingNodeIndex":291} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp","enqueuedNodeIndex":289,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)","enqueueingNodeIndex":291} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.rsp2","enqueuedNodeIndex":290,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)","enqueueingNodeIndex":291} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm","enqueuedNodeIndex":293,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)","enqueueingNodeIndex":291} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":292,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm","enqueueingNodeIndex":293} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_24F40B351B9ACD85.mvfrm","enqueuedNodeIndex":305,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)","enqueuedNodeIndex":139,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_24F40B351B9ACD85.mvfrm","enqueueingNodeIndex":305} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":136,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)","enqueueingNodeIndex":139} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp","enqueuedNodeIndex":137,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)","enqueueingNodeIndex":139} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.rsp2","enqueuedNodeIndex":138,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)","enqueueingNodeIndex":139} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm","enqueuedNodeIndex":142,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)","enqueueingNodeIndex":139} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":141,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm","enqueueingNodeIndex":142} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Performance.Profile-Analyzer.Editor.ref.dll_FC7FE7C2525DF555.mvfrm","enqueuedNodeIndex":306,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)","enqueuedNodeIndex":146,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Performance.Profile-Analyzer.Editor.ref.dll_FC7FE7C2525DF555.mvfrm","enqueueingNodeIndex":306} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":143,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)","enqueueingNodeIndex":146} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp","enqueuedNodeIndex":144,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)","enqueueingNodeIndex":146} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp2","enqueuedNodeIndex":145,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)","enqueueingNodeIndex":146} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm","enqueuedNodeIndex":148,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)","enqueueingNodeIndex":146} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":147,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm","enqueueingNodeIndex":148} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9145F68A59D35CE5.mvfrm","enqueuedNodeIndex":307,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll (+2 others)","enqueuedNodeIndex":158,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9145F68A59D35CE5.mvfrm","enqueueingNodeIndex":307} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":155,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll (+2 others)","enqueueingNodeIndex":158} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp","enqueuedNodeIndex":156,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll (+2 others)","enqueueingNodeIndex":158} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.rsp2","enqueuedNodeIndex":157,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll (+2 others)","enqueueingNodeIndex":158} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm","enqueuedNodeIndex":160,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll (+2 others)","enqueueingNodeIndex":158} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":159,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.dll.mvfrm","enqueueingNodeIndex":160} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.ref.dll_4F7EA18A8F1A3B43.mvfrm","enqueuedNodeIndex":308,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)","enqueuedNodeIndex":226,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TestTools.CodeCoverage.Editor.ref.dll_4F7EA18A8F1A3B43.mvfrm","enqueueingNodeIndex":308} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":223,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)","enqueueingNodeIndex":226} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp","enqueuedNodeIndex":224,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)","enqueueingNodeIndex":226} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.rsp2","enqueuedNodeIndex":225,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)","enqueueingNodeIndex":226} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm","enqueuedNodeIndex":231,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)","enqueueingNodeIndex":226} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":230,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm","enqueueingNodeIndex":231} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_B8A961BBD8ABE0FC.mvfrm","enqueuedNodeIndex":309,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)","enqueuedNodeIndex":235,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_B8A961BBD8ABE0FC.mvfrm","enqueueingNodeIndex":309} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":232,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)","enqueueingNodeIndex":235} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp","enqueuedNodeIndex":233,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)","enqueueingNodeIndex":235} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.rsp2","enqueuedNodeIndex":234,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)","enqueueingNodeIndex":235} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm","enqueuedNodeIndex":238,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)","enqueueingNodeIndex":235} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":237,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm","enqueueingNodeIndex":238} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_53B6806BAD4EBBBC.mvfrm","enqueuedNodeIndex":310,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll (+2 others)","enqueuedNodeIndex":242,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_53B6806BAD4EBBBC.mvfrm","enqueueingNodeIndex":310} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":239,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll (+2 others)","enqueueingNodeIndex":242} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp","enqueuedNodeIndex":240,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll (+2 others)","enqueueingNodeIndex":242} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.rsp2","enqueuedNodeIndex":241,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll (+2 others)","enqueueingNodeIndex":242} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm","enqueuedNodeIndex":245,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll (+2 others)","enqueueingNodeIndex":242} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":244,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.dll.mvfrm","enqueueingNodeIndex":245} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Toolchain.Linux-x86_64.ref.dll_1D7A0D228D2803C9.mvfrm","enqueuedNodeIndex":311,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll (+2 others)","enqueuedNodeIndex":262,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Toolchain.Linux-x86_64.ref.dll_1D7A0D228D2803C9.mvfrm","enqueueingNodeIndex":311} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.UnityAdditionalFile.txt","enqueuedNodeIndex":259,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll (+2 others)","enqueueingNodeIndex":262} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp","enqueuedNodeIndex":260,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll (+2 others)","enqueueingNodeIndex":262} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.rsp2","enqueuedNodeIndex":261,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll (+2 others)","enqueueingNodeIndex":262} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm","enqueuedNodeIndex":265,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll (+2 others)","enqueueingNodeIndex":262} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm.rsp","enqueuedNodeIndex":264,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.dll.mvfrm","enqueueingNodeIndex":265} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_B8324D455948C852.mvfrm","enqueuedNodeIndex":312,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)","enqueuedNodeIndex":283,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_B8324D455948C852.mvfrm","enqueueingNodeIndex":312} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":280,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)","enqueueingNodeIndex":283} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp","enqueuedNodeIndex":281,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)","enqueueingNodeIndex":283} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp2","enqueuedNodeIndex":282,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)","enqueueingNodeIndex":283} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm","enqueuedNodeIndex":287,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)","enqueueingNodeIndex":283} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":286,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm","enqueueingNodeIndex":287} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_F54BA3F421A71E21.mvfrm","enqueuedNodeIndex":313,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)","enqueuedNodeIndex":297,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_F54BA3F421A71E21.mvfrm","enqueueingNodeIndex":313} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":294,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)","enqueueingNodeIndex":297} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp","enqueuedNodeIndex":295,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)","enqueueingNodeIndex":297} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp2","enqueuedNodeIndex":296,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)","enqueueingNodeIndex":297} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm","enqueuedNodeIndex":300,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)","enqueueingNodeIndex":297} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":299,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm","enqueueingNodeIndex":300} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_45A2A186C05004D7.mvfrm","enqueuedNodeIndex":314,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)","enqueuedNodeIndex":206,"enqueueingNodeAnnotation":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_45A2A186C05004D7.mvfrm","enqueueingNodeIndex":314} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":203,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)","enqueueingNodeIndex":206} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp","enqueuedNodeIndex":204,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)","enqueueingNodeIndex":206} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.rsp2","enqueuedNodeIndex":205,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)","enqueueingNodeIndex":206} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm","enqueuedNodeIndex":208,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)","enqueueingNodeIndex":206} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":207,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm","enqueueingNodeIndex":208} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEngine.TestRunner.dll","enqueuedNodeIndex":317,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEngine.TestRunner.pdb","enqueuedNodeIndex":318,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEditor.TestRunner.dll","enqueuedNodeIndex":319,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEditor.TestRunner.pdb","enqueuedNodeIndex":320,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Rider.Editor.dll","enqueuedNodeIndex":321,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Rider.Editor.pdb","enqueuedNodeIndex":322,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll","enqueuedNodeIndex":323,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb","enqueuedNodeIndex":324,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll","enqueuedNodeIndex":325,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.pdb","enqueuedNodeIndex":326,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEditor.UI.dll","enqueuedNodeIndex":327,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/UnityEditor.UI.pdb","enqueuedNodeIndex":328,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll","enqueuedNodeIndex":329,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.pdb","enqueuedNodeIndex":330,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Performance.Profile-Analyzer.Editor.dll","enqueuedNodeIndex":331,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Performance.Profile-Analyzer.Editor.pdb","enqueuedNodeIndex":332,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll","enqueuedNodeIndex":333,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb","enqueuedNodeIndex":334,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Settings.Editor.dll","enqueuedNodeIndex":335,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Settings.Editor.pdb","enqueuedNodeIndex":336,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.SysrootPackage.Editor.dll","enqueuedNodeIndex":337,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.SysrootPackage.Editor.pdb","enqueuedNodeIndex":338,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll","enqueuedNodeIndex":339,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.pdb","enqueuedNodeIndex":340,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll","enqueuedNodeIndex":341,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.pdb","enqueuedNodeIndex":342,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.dll","enqueuedNodeIndex":343,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.pdb","enqueuedNodeIndex":344,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.dll","enqueuedNodeIndex":345,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.pdb","enqueuedNodeIndex":346,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.dll","enqueuedNodeIndex":347,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.pdb","enqueuedNodeIndex":348,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll","enqueuedNodeIndex":349,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)","enqueuedNodeIndex":212,"enqueueingNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll","enqueueingNodeIndex":349} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.UnityAdditionalFile.txt","enqueuedNodeIndex":209,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)","enqueueingNodeIndex":212} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp","enqueuedNodeIndex":210,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)","enqueueingNodeIndex":212} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.rsp2","enqueuedNodeIndex":211,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)","enqueueingNodeIndex":212} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm","enqueuedNodeIndex":215,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)","enqueueingNodeIndex":212} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm.rsp","enqueuedNodeIndex":214,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm","enqueueingNodeIndex":215} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb","enqueuedNodeIndex":350,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.dll","enqueuedNodeIndex":351,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb","enqueuedNodeIndex":352,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.dll","enqueuedNodeIndex":353,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TestTools.CodeCoverage.Editor.pdb","enqueuedNodeIndex":354,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll","enqueuedNodeIndex":355,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb","enqueuedNodeIndex":356,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.dll","enqueuedNodeIndex":357,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.pdb","enqueuedNodeIndex":358,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.dll","enqueuedNodeIndex":359,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.pdb","enqueuedNodeIndex":360,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll","enqueuedNodeIndex":361,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.pdb","enqueuedNodeIndex":362,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll","enqueuedNodeIndex":363,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.pdb","enqueuedNodeIndex":364,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.dll","enqueuedNodeIndex":365,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.pdb","enqueuedNodeIndex":366,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.dll","enqueuedNodeIndex":367,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.pdb","enqueuedNodeIndex":368,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.dll","enqueuedNodeIndex":369,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.pdb","enqueuedNodeIndex":370,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.dll","enqueuedNodeIndex":371,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.pdb","enqueuedNodeIndex":372,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.dll","enqueuedNodeIndex":373,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.pdb","enqueuedNodeIndex":374,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","enqueuedNodeIndex":375,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll (+2 others)","enqueuedNodeIndex":304,"enqueueingNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","enqueueingNodeIndex":375} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.UnityAdditionalFile.txt","enqueuedNodeIndex":301,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll (+2 others)","enqueueingNodeIndex":304} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp","enqueuedNodeIndex":302,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll (+2 others)","enqueueingNodeIndex":304} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp2","enqueuedNodeIndex":303,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll (+2 others)","enqueueingNodeIndex":304} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm","enqueuedNodeIndex":316,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll (+2 others)","enqueueingNodeIndex":304} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp","enqueuedNodeIndex":315,"enqueueingNodeAnnotation":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll.mvfrm","enqueueingNodeIndex":316} +{"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb","enqueuedNodeIndex":376,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} +{"msg":"inputSignatureChanged","annotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll (+2 others)","index":304,"changes":[{"key":"Action","value":"\"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetCoreRuntime/dotnet\" exec \"/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp\" \"@Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp2\"","oldvalue":null},{"key":"FileList","value":["/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DeviceSimulatorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.DiagnosticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.EditorToolbarModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.GraphViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PresetsUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.QuickSearchModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneTemplateModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.SceneViewModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIBuilderModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UIElementsSamplesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEditor.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AnimationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.AudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClothModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CommandStateObserverModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ContentLoadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CoreModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.DirectorModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GameCenterModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GraphToolsFoundationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.GridModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.HotReloadModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.IMGUIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.InputModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.LocalizationModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.MarshallingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.Physics2DModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ProfilerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.PropertiesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.StreamingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubstanceModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TLSModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreFontEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextCoreTextEngineModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.TilemapModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIElementsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UIModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UmbraModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsCommonModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityCurlModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VFXModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VehiclesModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VideoModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.VirtualTexturingModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.WindModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.XRModule.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Managed/UnityEngine/UnityEngine.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ComponentModel.Composition.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Core.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Data.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Drawing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.IO.Compression.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Net.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Runtime.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.ServiceModel.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Transactions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Web.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Windows.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.Serialization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/System.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netfx/mscorlib.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/Microsoft.Win32.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.AppContext.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Buffers.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Concurrent.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.NonGeneric.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.Specialized.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Collections.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.TypeConverter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ComponentModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Console.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Data.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Contracts.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Debug.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Process.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.StackTrace.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tools.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.TraceSource.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Diagnostics.Tracing.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Drawing.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Dynamic.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Calendars.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Globalization.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.ZipFile.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Compression.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.Watcher.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.FileSystem.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.IsolatedStorage.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.MemoryMappedFiles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.Pipes.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.IO.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Expressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.Queryable.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Linq.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Memory.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Http.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NameResolution.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.NetworkInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Ping.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Requests.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Security.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.Sockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebHeaderCollection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.Client.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Net.WebSockets.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Numerics.Vectors.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ObjectModel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.DispatchProxy.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.ILGeneration.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.Lightweight.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Emit.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Reflection.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Reader.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.ResourceManager.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Resources.Writer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Handles.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.InteropServices.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Numerics.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Json.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.Serialization.Xml.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Runtime.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Claims.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Csp.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.Primitives.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.Principal.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Security.SecureString.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.Encoding.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Text.RegularExpressions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Overlapped.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Extensions.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.Parallel.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Tasks.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Thread.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.ThreadPool.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.Timer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Threading.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.ValueTuple.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.ReaderWriter.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.XDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XPath.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlDocument.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/compat/2.1.0/shims/netstandard/System.Xml.XmlSerializer.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/NetStandard/ref/2.1.0/netstandard.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Gradle.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/AndroidPlayer/Unity.Android.Types.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll","Library/PackageCache/com.unity.ext.nunit@2.0.3/net40/unity-custom/nunit.framework.dll","Library/PackageCache/com.unity.testtools.codecoverage@1.2.4/lib/ReportGenerator/ReportGeneratorMerged.dll","Library/PackageCache/com.unity.visualscripting@1.8.0/Runtime/VisualScripting.Flow/Dependencies/NCalc/Unity.VisualScripting.Antlr3.Runtime.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.EditorCoroutines.Editor.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.PlasticSCM.Editor.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.Rider.Editor.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.Sysroot.Linux_x86_64.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.SysrootPackage.Editor.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.TestTools.CodeCoverage.Editor.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.Editor.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.TextMeshPro.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.Editor.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.Timeline.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.Toolchain.Linux-x86_64.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.Editor.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Core.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.Editor.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Flow.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.Shared.Editor.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.Editor.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.VisualScripting.State.ref.dll","Library/Bee/artifacts/2400b0aE.dag/Unity.VisualStudio.Editor.ref.dll","Library/Bee/artifacts/2400b0aE.dag/UnityEditor.UI.ref.dll","Library/Bee/artifacts/2400b0aE.dag/UnityEngine.UI.ref.dll","Assets/AsteroidScript.cs","Assets/GameManagerScript.cs","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.Properties.SourceGenerator.dll","/home/andrew/Unity/Hub/Editor/2023.1.8f1/Editor/Data/Tools/Unity.SourceGenerators/Unity.SourceGenerators.dll","Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.rsp"],"oldvalue":[],"dependency":"explicit"}]} +{"msg":"runNodeAction","annotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll (+2 others)","displayName":"Compiling C# (Assembly-CSharp)","index":304} +{"msg":"noderesult","processed_node_count":372,"number_of_nodes_ever_queued":376,"annotation":"Csc Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll (+2 others)","index":304,"exitcode":0,"outputfile":"Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll"} +{"msg":"inputSignatureChanged","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","index":375,"changes":[{"key":"FileList","value":["Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.dll"],"oldvalue":[],"dependency":"explicit"}]} +{"msg":"runNodeAction","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","displayName":"Copying Assembly-CSharp.dll","index":375} +{"msg":"inputSignatureChanged","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb","index":376,"changes":[{"key":"FileList","value":["Library/Bee/artifacts/2400b0aE.dag/Assembly-CSharp.pdb"],"oldvalue":[],"dependency":"explicit"}]} +{"msg":"runNodeAction","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb","displayName":"Copying Assembly-CSharp.pdb","index":376} +{"msg":"noderesult","processed_node_count":373,"number_of_nodes_ever_queued":376,"annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","index":375,"exitcode":0,"outputfile":"Library/ScriptAssemblies/Assembly-CSharp.dll"} +{"msg":"noderesult","processed_node_count":374,"number_of_nodes_ever_queued":376,"annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb","index":376,"exitcode":0,"outputfile":"Library/ScriptAssemblies/Assembly-CSharp.pdb"} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/BuildPlayer.prefs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/BuildPlayer.prefs new file mode 100644 index 00000000..e69de29b diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/BuildSettings.asset b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/BuildSettings.asset new file mode 100644 index 00000000..ec6ce14d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/BuildSettings.asset differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/EditorOnlyScriptingSettings.json b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/EditorOnlyScriptingSettings.json new file mode 100644 index 00000000..b101a404 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/EditorOnlyScriptingSettings.json @@ -0,0 +1 @@ +{"m_DefineSymbols":{"m_Value":{},"m_Initialized":false},"m_AllowUnsafeCode":{"m_Value":false,"m_Initialized":false},"m_ScriptDebugInfoEnabled":{"m_Value":false,"m_Initialized":true}} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/EditorOnlyVirtualTextureState.json b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/EditorOnlyVirtualTextureState.json new file mode 100644 index 00000000..b026ed37 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/EditorOnlyVirtualTextureState.json @@ -0,0 +1 @@ +{"m_VirtualTexturingEnabled":false,"m_VirtualTexturingEnabledInitialized":true} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/EditorSnapSettings.asset b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/EditorSnapSettings.asset new file mode 100644 index 00000000..9f4c226c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/EditorSnapSettings.asset @@ -0,0 +1,20 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 53 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13954, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_SnapEnabled: 0 + m_SnapSettings: + m_SnapValue: {x: 0.25, y: 0.25, z: 0.25} + m_SnapMultiplier: {x: 2048, y: 2048, z: 2048} + m_Rotation: 15 + m_Scale: 1 diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/EditorUserBuildSettings.asset b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/EditorUserBuildSettings.asset new file mode 100644 index 00000000..ed7c377f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/EditorUserBuildSettings.asset differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/InspectorExpandedItems.asset b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/InspectorExpandedItems.asset new file mode 100644 index 00000000..bd05c51f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/InspectorExpandedItems.asset differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/LastSceneManagerSetup.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/LastSceneManagerSetup.txt new file mode 100644 index 00000000..6a5704fe --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/LastSceneManagerSetup.txt @@ -0,0 +1,5 @@ +sceneSetups: +- path: Assets/Scenes/SampleScene.unity + isLoaded: 1 + isActive: 1 + isSubScene: 0 diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/LibraryFormatVersion.txt b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/LibraryFormatVersion.txt new file mode 100644 index 00000000..6185f096 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/LibraryFormatVersion.txt @@ -0,0 +1,2 @@ +unityRebuildLibraryVersion: 11 +unityForwardCompatibleVersion: 40 diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/MonoManager.asset b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/MonoManager.asset new file mode 100644 index 00000000..7cc0930f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/MonoManager.asset differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/.Resources/.collabattributes b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/.Resources/.collabattributes new file mode 100644 index 00000000..c8cb4a6c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/.Resources/.collabattributes @@ -0,0 +1,86 @@ +* text=auto + +# Unity files +*.meta -text merge=unityyamlmerge diff +*.unity -text merge=unityyamlmerge diff +*.asset -text merge=unityyamlmerge diff +*.prefab -text merge=unityyamlmerge diff +*.mat -text merge=unityyamlmerge diff +*.anim -text merge=unityyamlmerge diff +*.controller -text merge=unityyamlmerge diff +*.overrideController -text merge=unityyamlmerge diff +*.physicMaterial -text merge=unityyamlmerge diff +*.physicsMaterial2D -text merge=unityyamlmerge diff +*.playable -text merge=unityyamlmerge diff +*.mask -text merge=unityyamlmerge diff +*.brush -text merge=unityyamlmerge diff +*.flare -text merge=unityyamlmerge diff +*.fontsettings -text merge=unityyamlmerge diff +*.guiskin -text merge=unityyamlmerge diff +*.giparams -text merge=unityyamlmerge diff +*.renderTexture -text merge=unityyamlmerge diff +*.spriteatlas -text merge=unityyamlmerge diff +*.terrainlayer -text merge=unityyamlmerge diff +*.mixer -text merge=unityyamlmerge diff +*.shadervariants -text merge=unityyamlmerge diff + +# Image formats +*.psd filter=lfs diff=lfs merge=lfs -text +*.jpg filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text +*.bmp filter=lfs diff=lfs merge=lfs -text +*.tga filter=lfs diff=lfs merge=lfs -text +*.tiff filter=lfs diff=lfs merge=lfs -text +*.tif filter=lfs diff=lfs merge=lfs -text +*.iff filter=lfs diff=lfs merge=lfs -text +*.pict filter=lfs diff=lfs merge=lfs -text +*.dds filter=lfs diff=lfs merge=lfs -text +*.xcf filter=lfs diff=lfs merge=lfs -text + +# Audio formats +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.ogg filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +*.aiff filter=lfs diff=lfs merge=lfs -text +*.aif filter=lfs diff=lfs merge=lfs -text +*.mod filter=lfs diff=lfs merge=lfs -text +*.it filter=lfs diff=lfs merge=lfs -text +*.s3m filter=lfs diff=lfs merge=lfs -text +*.xm filter=lfs diff=lfs merge=lfs -text + +# Video formats +*.mov filter=lfs diff=lfs merge=lfs -text +*.avi filter=lfs diff=lfs merge=lfs -text +*.asf filter=lfs diff=lfs merge=lfs -text +*.mpg filter=lfs diff=lfs merge=lfs -text +*.mpeg filter=lfs diff=lfs merge=lfs -text +*.mp4 filter=lfs diff=lfs merge=lfs -text + +# 3D formats +*.fbx filter=lfs diff=lfs merge=lfs -text +*.obj filter=lfs diff=lfs merge=lfs -text +*.max filter=lfs diff=lfs merge=lfs -text +*.blend filter=lfs diff=lfs merge=lfs -text +*.dae filter=lfs diff=lfs merge=lfs -text +*.mb filter=lfs diff=lfs merge=lfs -text +*.ma filter=lfs diff=lfs merge=lfs -text +*.3ds filter=lfs diff=lfs merge=lfs -text +*.dfx filter=lfs diff=lfs merge=lfs -text +*.c4d filter=lfs diff=lfs merge=lfs -text +*.lwo filter=lfs diff=lfs merge=lfs -text +*.lwo2 filter=lfs diff=lfs merge=lfs -text +*.abc filter=lfs diff=lfs merge=lfs -text +*.3dm filter=lfs diff=lfs merge=lfs -text + +# Build +*.dll filter=lfs diff=lfs merge=lfs -text +*.pdb filter=lfs diff=lfs merge=lfs -text +*.mdb filter=lfs diff=lfs merge=lfs -text + +# Packaging +*.zip filter=lfs diff=lfs merge=lfs -text +*.7z filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/.Resources/.collabignore b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/.Resources/.collabignore new file mode 100644 index 00000000..db90be04 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/.Resources/.collabignore @@ -0,0 +1,50 @@ +[Ll]ibrary/ +[Tt]emp/ +[Oo]bj/ +[Bb]uild/ +[Bb]uilds/ +[Ll]ogs/ + +# Uncomment this line if you wish to ignore the asset store tools plugin +# [Aa]ssets/AssetStoreTools* + +# Visual Studio cache directory +.vs/ + +# Gradle cache directory +.gradle/ + +# Autogenerated VS/MD/Consulo/Rider/VSCode solution and project files +ExportedObj/ +.consulo/ +.vscode/ +.idea/ +*.csproj +*.unityproj +*.sln +*.suo +*.tmp +*.user +*.userprefs +*.pidb +*.booproj +*.svd +*.pdb +*.mdb +*.opendb +*.VC.db + +# Unity3D generated meta files +*.pidb.meta +*.pdb.meta +*.mdb.meta + +# Unity3D generated file on crash reports +sysinfo.txt + +# Builds +*.apk +*.unitypackage + +# Crashlytics generated file +crashlytics-build.properties diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/.gitattributes b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/.gitattributes new file mode 100644 index 00000000..9b5ea326 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/.gitattributes @@ -0,0 +1,86 @@ +* text=auto + +# Unity files +*.meta -text merge=unityyamlmerge diff +*.unity -text merge=unityyamlmerge diff +*.asset -text merge=unityyamlmerge diff +*.prefab -text merge=unityyamlmerge diff +*.mat -text merge=unityyamlmerge diff +*.anim -text merge=unityyamlmerge diff +*.controller -text merge=unityyamlmerge diff +*.overrideController -text merge=unityyamlmerge diff +*.physicMaterial -text merge=unityyamlmerge diff +*.physicsMaterial2D -text merge=unityyamlmerge diff +*.playable -text merge=unityyamlmerge diff +*.mask -text merge=unityyamlmerge diff +*.brush -text merge=unityyamlmerge diff +*.flare -text merge=unityyamlmerge diff +*.fontsettings -text merge=unityyamlmerge diff +*.guiskin -text merge=unityyamlmerge diff +*.giparams -text merge=unityyamlmerge diff +*.renderTexture -text merge=unityyamlmerge diff +*.spriteatlas -text merge=unityyamlmerge diff +*.terrainlayer -text merge=unityyamlmerge diff +*.mixer -text merge=unityyamlmerge diff +*.shadervariants -text merge=unityyamlmerge diff +# Image formats +*.psd filter=lfs diff=lfs merge=lfs -text +*.jpg filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text +*.bmp filter=lfs diff=lfs merge=lfs -text +*.tga filter=lfs diff=lfs merge=lfs -text +*.tiff filter=lfs diff=lfs merge=lfs -text +*.tif filter=lfs diff=lfs merge=lfs -text +*.iff filter=lfs diff=lfs merge=lfs -text +*.pict filter=lfs diff=lfs merge=lfs -text +*.dds filter=lfs diff=lfs merge=lfs -text +*.xcf filter=lfs diff=lfs merge=lfs -text +# Audio formats +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.ogg filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +*.aiff filter=lfs diff=lfs merge=lfs -text +*.aif filter=lfs diff=lfs merge=lfs -text +*.mod filter=lfs diff=lfs merge=lfs -text +*.it filter=lfs diff=lfs merge=lfs -text +*.s3m filter=lfs diff=lfs merge=lfs -text +*.xm filter=lfs diff=lfs merge=lfs -text +# Video formats +*.mov filter=lfs diff=lfs merge=lfs -text +*.avi filter=lfs diff=lfs merge=lfs -text +*.asf filter=lfs diff=lfs merge=lfs -text +*.mpg filter=lfs diff=lfs merge=lfs -text +*.mpeg filter=lfs diff=lfs merge=lfs -text +*.mp4 filter=lfs diff=lfs merge=lfs -text +# 3D formats +*.fbx filter=lfs diff=lfs merge=lfs -text +*.obj filter=lfs diff=lfs merge=lfs -text +*.max filter=lfs diff=lfs merge=lfs -text +*.blend filter=lfs diff=lfs merge=lfs -text +*.dae filter=lfs diff=lfs merge=lfs -text +*.mb filter=lfs diff=lfs merge=lfs -text +*.ma filter=lfs diff=lfs merge=lfs -text +*.3ds filter=lfs diff=lfs merge=lfs -text +*.dfx filter=lfs diff=lfs merge=lfs -text +*.c4d filter=lfs diff=lfs merge=lfs -text +*.lwo filter=lfs diff=lfs merge=lfs -text +*.lwo2 filter=lfs diff=lfs merge=lfs -text +*.abc filter=lfs diff=lfs merge=lfs -text +*.3dm filter=lfs diff=lfs merge=lfs -text +# Build +*.dll filter=lfs diff=lfs merge=lfs -text +*.pdb filter=lfs diff=lfs merge=lfs -text +*.mdb filter=lfs diff=lfs merge=lfs -text +# Packaging +*.zip filter=lfs diff=lfs merge=lfs -text +*.7z filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +# Collapse Unity-generated files on GitHub +*.asset linguist-generated +*.mat linguist-generated +*.meta linguist-generated +*.prefab linguist-generated +*.unity linguist-generated diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/.signature b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/.signature new file mode 100755 index 00000000..53f3608f --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/.signature @@ -0,0 +1,5 @@ +{ + "timestamp": 1685616397, + "signature": "D0GURmGccoH1to6sP9kx1GWUr5dG4Hamp/KBQXYfLzIYyam6lbNDyiUJB5/IgZYH4IMsKxBBOuPzSof6wRKtZgOa5XWRdJDlItAM+ZjIbBSsA74DJUO+10OAyAb4KDcoaYVwAS/B0pphwNVSFXXRApOx9UBAwKkK23ychLJeBt9+2Qkl++l4gvsOrsKZCTVlEJbFlhfa6YBzfCARsSL3criIp4ZBsN2HVy4IhxttCzZXmOq34Uc9tKRBreNk64LvAHEsk2Xg4XiXGyGsvBODex02FdQm8zsCVZoQX7QUP0ZPFR+9sC/0CQZ50J/q74hDl90ZRXHwDhda+DgDERIpldRna8BvUJ5ylgbeGi5hk5X+8L36FlATB3ejTSA7+20GDqvJJEHjvJ2o7TU6eNRSCaLyM91mhfR4Zv1tkrzKprV9cxQ6B57E403u/dJ8SVQ7XJenK7MgnZKJdxsq3vMVEI4GPVB9i5B42ZtEg88stKq7c1+clWqHdp5Lq9AMn+D6", + "publicKey": "LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQm9qQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FZOEFNSUlCaWdLQ0FZRUFzdUhXYUhsZ0I1cVF4ZEJjTlJKSAordHR4SmoxcVY1NTdvMlZaRE1XaXhYRVBkRTBEMVFkT1JIRXNSS1RscmplUXlERU83ZlNQS0ZwZ1A3MU5TTnJCCkFHM2NFSU45aHNQVDhOVmllZmdWem5QTkVMenFkVmdEbFhpb2VpUnV6OERKWFgvblpmU1JWKytwbk9ySTRibG4KS0twelJlNW14OTc1SjhxZ1FvRktKT0NNRlpHdkJMR2MxSzZZaEIzOHJFODZCZzgzbUovWjBEYkVmQjBxZm13cgo2ZDVFUXFsd0E5Y3JZT1YyV1VpWXprSnBLNmJZNzRZNmM1TmpBcEFKeGNiaTFOaDlRVEhUcU44N0ZtMDF0R1ZwCjVNd1pXSWZuYVRUemEvTGZLelR5U0pka0tldEZMVGdkYXpMYlpzUEE2aHBSK0FJRTJhc0tLTi84UUk1N3UzU2cKL2xyMnZKS1IvU2l5eEN1Q20vQWJkYnJMbXk0WjlSdm1jMGdpclA4T0lLQWxBRWZ2TzV5Z2hSKy8vd1RpTFlzUQp1SllDM0V2UE16ZGdKUzdGR2FscnFLZzlPTCsxVzROY05yNWdveVdSUUJ0cktKaWlTZEJVWmVxb0RvSUY5NHpCCndGbzJJT1JFdXFqcU51M3diMWZIM3p1dGdtalFra3IxVjJhd3hmcExLWlROQWdNQkFBRT0KLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0tCg" +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/CHANGELOG.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/CHANGELOG.md new file mode 100644 index 00000000..0f3a4d06 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/CHANGELOG.md @@ -0,0 +1,566 @@ +# Changelog +All notable changes to this package will be documented in this file. + +## [2.0.5] - 2023-05-31 +Unity Version Control is now available as part of the Version Control Package! You can enable Unity Version Control via Window > Unity Version Control to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Fixed +- Fixed remaining references to 'Plastic SCM' in localized labels. + +## [2.0.4] - 2023-04-14 +Unity Version Control is now available as part of the Version Control Package! You can enable Unity Version Control via Window > Unity Version Control to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Fixed +- Fixed 'Texture2D' does not contain a definition for 'ignoreMipmapLimit' error when installing Unity Version Control on previous Unity Editor Versions +- Fixed broken sign in dialog style when waiting for user to complete sign in +- Fixed NullReferenceException when opening a new project and the user doesn't have a Unity Version Control organization linked to a Unity ID + +## [2.0.3] - 2023-03-29 + +Unity Version Control is now available as part of the Version Control Package! You can enable Unity Version Control via Window > Unity Version Control to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Changed +- Changed the icons for Unity Version Control rebranding +- Changed onboarding workflow + +### Fixed +- Fixed blurry icons in the Unity Version Control window and toolbar button +- Fixed Pending Changes tab not always opening its selected item's location in Project window +- Fixed "Checked-out (changed)" status icon not showing up on Pending Changes tab +- Fixed issue that prevented new packages from being installed unless user enters play mode + +## [2.0.1] - 2023-02-17 + +Unity Version Control is now available as part of the Version Control Package! You can enable Unity Version Control via Window > Unity Version Control to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Changed +- Updated branding from "Plastic SCM" to "Unity Version Control" +- Improved offline experience by disabling the plugin when there is no internet connection + +## [2.0.0] - 2023-01-11 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Changed +- Removed Collab from the package + +## [1.17.7] - 2022-10-28 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Added +- Added offline mode toggle for smoother offline experience + +### Fixed +- Fixed performance issue with FindWorkspaceForPath method called multiple times every frame +- Fixed performance issue with UI.CooldownWindowDelayer.OnUpdate running on project without Plastic SCM workspace + +## [1.17.6] - 2022-10-06 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Changed +- Changed the "Go back to changeset" option in Changesets tab to "Revert to changeset" +- Improved notification banner appearance + +### Fixed +- Fixed editor refresh triggering when a workspace update is in progress +- Fixed pending changes show global ignored as private +- Removed encryption checkbox from create organization dialog + +## [1.17.2] - 2022-07-06 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Added +- Added notification banner on the status bar for live updates + +### Changed +- Renamed "Invite members to workspace" option to "Invite members to organization" + +### Fixed +- Fixed not being able to view changesets in a Gluon workspace +- Fixed not being able to insert carriage return in checkin dialog + +## [1.17.1] - 2022-06-21 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Fixed +- Fixed missing references in synced prefabs + +## [1.17.0] - 2022-06-13 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Added +- Added option to enable changelists and display them in pending changes tab +- Added changelist related options to pending changes context menu + +### Fixed +- Fixed editor hangs when there is no network available +- Fixed existing checkout has locked the workspace error +- Fixed checkin fails over unstable connection + +## [1.15.18] - 2022-05-18 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Fixed +- Fixed editor hang when entering Play Mode + +## [1.15.17] - 2022-04-27 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Added +- Added checkin comment column to Incoming Changes view + +### Changed +- Updated Go Back confirmation message to be consistent with feature +- Updated Create Child Branch dialog to focus on branch name field when opened +- Improved messaging of Subtractive Merge after using Go Back feature + +### Fixed +- Fixed assets not added correctly when Plastic SCM window is not open +- Fixed wrong position of overlay icons on Pending Changes view +- Disallowed Go Back feature to a changeset from another branch + +## [1.15.16] - 2022-03-28 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Added +- Added "Switch to changeset" menu option in changesets view +- Added "Go back to changeset" menu option in changesets view + +### Changed +- Removed category icons from views +- Removed "com.unity.services.core" package dependency + +### Fixed +- Fixed light theme icons used in dark theme after pulling incoming changes +- Fixed "Input string was not in a correct format" error + +## [1.15.15] - 2022-03-09 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Added +- Added checkout option in scene prefab view + +### Changed +- Updated file overlay icon size to adapt to project window zoom level +- Updated the styling of number of items in a category in Gluon incoming changes view + +### Fixed +- Fixed Plastic X not opening from plugin menu +- Fixed error when trying to invite members to proect +- Fixed editor unhandled errors being hijacked by the plugin +- Fixed toolbar icon not displaying incoming changes notification when Plastic window is closed +- Fixed VCCache::instance != NULL error when opening a project with Plastic window opened + +## [1.15.13] - 2022-02-14 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Added +- Added branch name column in changeset view + +### Changed +- Updated checkin comment box to keep the last comment after checkin error + +### Fixed +- Fixed performance regression in large projects due to FindObjectsOfTypeAll calls + +## [1.15.12] - 2022-01-27 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Added +- Added option to "Save Revision as" to the context menu in the changesets view +- Added incoming changes overview bar for Gluon workspace + +### Changed +- Updated the styling for number of items in category for pending changes view +- Updated the styling for number of items in category for changesets view +- Updated the styling for tabs close button +- Updated the color in different sections of the plugin +- Reduced dialog padding for the "Create Branch" dialog +- Updated the display overlay icons to show even if PlasticSCM window is closed +- Updated styling of number of items in incoming changes category +- Improved plugin initialization process and let the plugin functions without needing the Plastic window opened +- Disabled the invite button when user does not have invite permission or not on a cloud repo + +### Fixed +- Fixed size info in incoming changes view does not match actual changes size +- Fixed checkin and checkout options not respecting inspector locked status +- Fixed buttons in inspector view displayed even when Plastic window is closed +- Fixed icon incorrect sizes +- Fixed errors on create branch dialog +- Fixed Newtonsoft.Json.dll conflicts with other external packages +- Fixed editor objects count increasing when hovering over Plastic window or toolbar button +- Fixed ArgumentOutOfRange exception when creating a branch +- Fixed scene reloading not happening after creating a new branch + +## [1.15.7] - 2021-12-02 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Added +- Added option to "Save Revision as" to the context menu in the changesets view +- Added incoming changes overview bar for Gluon workspace + +### Changed +- Moved Plastic Package settings to the Unity Project Settings window +- Refined styling for Updating Workplace success state +- Updated texts for empty state and overview bar +- Removed Incoming Changes notification from empty state +- Updated the text for Forced Checkout option +- Refined the status overlay icons +- Updated the refresh icon on the toolbar +- Updated the texts for empty checkin message dialog + +### Fixed +- Fixed capitalization of Pending Changes and File History tab names +- Fixed the amount of spacing after the Item column title in the Pending Changes tab +- Removed pin striping from line items in File History tab +- Fixed project view context menu and icons missing after Collaborate project migration +- Fixed migrated projects not downloading correctly from Unity Hub + +## [1.15.4] - 2021-11-10 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Added +- Add option to "Add to ignore file" in context menu in the project view +- Added empty state message for Pending Changes tab +- Added success state message for Pending Changes tab +- Added metrics for Branches tab functionalities + +### Changed +- Removed pinstriping in the Gluon Incoming Changes window +- Removed the “Nothing to download” bar from the Incoming Changes window when there are no items to download +- Changed the default metadata columns shown in the Incoming Changes screen +- Updated the alignment of sorting arrows to the right of the column + +### Fixed +- Fixed UI overlays in Project view missing on changed assets when force checkout is disabled +- Fixed console error when selecting object in Scene view hierarchy or creating a new asset +- Fixed NullReferenceException after closing the Plastic SCM window + +## [1.15.1] - 2021-10-21 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Added +- Added visual overview bar to the incoming changes tab +- Added progress dialog for the migration process +- Added Branches tab that shows a list of all branches in the repository +- Added option and dialog to create a child branch from selected branch. +- Added option to switch to another branch +- Added option and dialog to rename a branch +- Added option to delete a branch +- Added a preference to save if the window should open the Branches tab by default +- Added metrics for Plastic SCM installation window usage + +### Changed +- Updated texts for workspace modes selection and checkin comment box +- Updated status bar notification icons + +### Fixed +- Fixed inverted text for the force checkout option +- Fixed typing capital O in checkin comment would open the selected item +- Fixed loading indicator not centered on Plastic SCM installation window +- Fixed installing Plastic SCM would sign out user from the plugin +- Removed extra refresh button on Gluon's Incoming Changes tab +- Fixed loading indicator not centered on Plastic SCM installation window +- Fixed missing Plastic SCM window option when user is not signed in on Unity Hub +- Removed meta file warning message for the deleted Beta folder +- Fixed Plastic SCM menu missing from Project view context menu + +## [1.13.5] - 2021-09-27 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Added +- Added workspace migration from Collab to Plastic which can be done with or without Plastic installed +- Added notification status icons +- Added light and dark mode versions of avatar icon + +### Changed +- Updated texts for migration +- Improved usage analytics around Editor and Plugin version +- Workspace Migration Adjustments + +### Fixed +- Renamed the CoreServices namespace so it doesn't conflict with other packages +- Devex integration to properly depend on Core +- Fixed some situations where the history window would be blank +- Fixed missing Enterprise login link +- Fixed low resolution icons in light theme + +## [1.11.2] - 2021-08-27 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Added +- Added horizontal scroll bar to Changesets list for easier viewing +- Added auto-login for SSO credentials handler +- Added metrics for changeset tab usage +- Added metrics for checkin actions +- Added new Undo icon +- Added missing API documentation +- Added ability to modify assets without checkout +- Added ability to allow empty checkin messages +- Added empty checking message localization +- Added Plastic toolbar button to Unity editor +- Added notification icon for incoming changes to Plastic toolbar button + +### Changed +- Removed the unneeded refresh button from History Tab +- Moved search bar to the top right global icon section in all tabs +- Updated capitalization of options in the Settings context menu +- Updated tab button styling to be consistent with Unity Editor conventions +- Status bar visible across all tabs +- Moved refresh button to the toolbar at the top right corner of the window +- Moved changesets time period selector to the right corner of the window +- Removed "Changes of changeset" header on the Changesets tab +- Moved number of selected items next to "Item" metadata title on the Pending Changes tab +- Improved refresh icon resolution +- Changed changesets detail to appear in vertical column +- Reduced default number of columns in changesets tab +- The number of changesets is no longer displayed in changesets tab +- Changed Launch branch explorer into an icon with tooltip +- Removed the hide changes button in changesets tab +- Moved incoming change prompt and button into a status bar +- Changed "Launch Plastic" to "Launch Plastic SCM" in options menu +- Wording change for plastic installation +- Updated file status icons + +### Fixed +- Fixed a bug where the Texture2D error would pop up after downloading a project +- Fixed a bug when context menu would sometimes disappear +- Fixed small textbox on checkin dialog when launched from context menu +- Fixed a workspace NullReferenceException bug +- Fixed notification icon not showing on Plastic window +- Fixed auto login errors not showing up for users +- Fixed unexpected error message after user switched workspace to a label + +## [1.9.0] - 2021-07-13 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. + +### Added +- Added Checkin and Update confirmation notification +- Added auto sign in when logged into Unity account + +### Changed +- Simplified UI: decluttered UI +- Improved load time performance + +### Fixed +- Fixed view not switching to workspace after creating an Enterprise Gluon workspace +- Fixed contextual menu not showing up in project view +- Fixed SSO renew token after password change +- Fixed some namespace collisions with Antlr3 + +## [1.7.1] - 2021-06-25 + +Plastic SCM for Unity is now available as part of the Version Control Package! You can enable Plastic SCM via Window > Plastic SCM to get started! +If you have previously used the Unity Asset Store Plastic SCM plug-in, you can now simply use this package. Make sure you delete the plug-in from your project. +Removing a previously added Plastic SCM Asset Store Plug-In: +- Select the PlasticSCM folder in the Assets\Plugins folder on the Project tab, then click Edit > Delete +- Close the Unity Editor and open your project again. You will find the Plastic SCM menu item in the Window menu. +### Added +- Added support for inviting other members. This option is available from the gear / settings icon. +- Added support for signing in with Cloud Edition. This is available during the onboarding screen if you have never signed in. +- Added support for turning off Plastic in their project. This option removes the Plastic metadata from your directory. This option is available under Assets > Plastic SCM > Turn off Plastic SCM +- Added notification on the Plastic SCM tab title to indicate incoming changes. Users will no longer need to have the Plastic SCM window visible to know there are incoming changes. +- Auto configuration of SSO +- Added date column in incoming changes +### Changed +- Updating license to better conform with expected customer usage. +- Updated documentation file to meet standards. +- Updated third-party usage. +- No longer requires downloading of the full Plastic client. Basic features will work without additional installation. Features that require the full Plastic client will allow download and install as needed. +- Usability improvements around checking in code +- Improved update workspace tab UX +- Plastic SCM context menu is now available even if the Plastic SCM window is closed +### Fixed +- Stability and performance improvements + +## [1.5.7] - 2021-04-07 +### Unreleased +- The Version Control package will be expanding to include both Collaborate and Plastic SCM version control interfaces. This release is preparing for that move and contains no new functionality or bug fixes for Collaborate. +### Changed +- Collaborate Package renamed to Version Control with changes to package display name and description. +### Fixed +- Fixed NPE when updating the version of the Collab package. + +## [1.3.9] - 2020-07-13 +### Fixed +- Unnecessary use of texture compression in icons that slowed down platform switching +- Update publish button state when selected changes update +- Use colorized icons when changes are available. + +## [1.3.8] - 2020-06-08 +### Fixed +- Fix incorrect priority of error messages +- Fix Collab button being stuck in inprogress state +- Fix error when partially publishing without the window open + +## [1.3.7] - 2020-01-30 +### Changed +- Bulk revert is now supported. +- Collab is blocked in play mode. +### Fixed +- Fixed services window's links to open Collab. + +## [1.3.6] - 2020-01-21 +### Fixed +- Fixed compile errors when removing the NUnit package by removing unnecessary references. + +## [1.3.5] - 2020-01-08 +### Fixed +- Fix "accept mine" / "accept remote" icon swap in conflicts view. + +## [1.3.4] - 2019-12-16 +### Changed +- Window state is no longer restored after the window is closed and opened. +### Fixed +- History tab failing to load on startup if it is left open in the previous session. +- Progress bar percentage not matching the bar. +- History list correctly updates after a new revision is published. +- UI instabilities when restoring or going back to a revision with a different package manifest. +- Improve handling of changes to the project id. + +## [1.3.3] - 2019-12-10 +### Changed +- Disable UI test cases that can be unstable. + +## [1.3.2] - 2019-12-05 +### Changed +- Update UX to UIElements. +- Increased minimum supported version to 2020.1. +- Update Documentation to required standards. + +## [1.2.16] - 2019-02-11 +### Fixed +- Update stylesheet to pass USS validation + +## [1.2.15] - 2018-11-16 +### Changed +- Added support for non-experimental UIElements. + +## [1.2.11] - 2018-09-04 +### Fixed +- Made some performance improvements to reduce impact on ReloadAssemblies. + +## [1.2.9] - 2018-08-13 +### Fixed +- Test issues for the Collab History Window are now fixed. + +## [1.2.7] - 2018-08-07 +### Fixed +- Toolbar drop-down will no longer show up when package is uninstalled. + +## [1.2.6] - 2018-06-15 +### Fixed +- Fixed an issue where Collab's History window wouldn't load properly. + +## [1.2.5] - 2018-05-21 +This is the first release of *Unity Package CollabProxy*. + +### Added +- Collab history and toolbar windows +- Collab view and presenter classes +- Collab Editor tests for view and presenter diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/CHANGELOG.md.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/CHANGELOG.md.meta new file mode 100644 index 00000000..a4837d7a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/CHANGELOG.md.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 47777d81697d65f45befb6ccd55b2324 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/AccessRemoteProjects.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/AccessRemoteProjects.md new file mode 100644 index 00000000..225e7765 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/AccessRemoteProjects.md @@ -0,0 +1,6 @@ +# Access remote projects + +1. In the Unity Hub v3, click **Open** > **Open Remote Project** to see the list of your version control repositories that contain a Unity project. +2. Select the project and click **Next**. +3. Select the Editor version and platform and click the **change version** button. +4. Your local version control workspace will be created for you. The latest version of the project will be downloaded and the Editor will open with the latest version of your Unity project. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/AddMembers.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/AddMembers.md new file mode 100644 index 00000000..1935f8a7 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/AddMembers.md @@ -0,0 +1,13 @@ +# Add team members + +To invite team members to contribute to your project: + + +1. Click the settings menu (gear icon) and click Invite Members to Workspace. + +![Invite members to project](images/InviteMembers.png) + +1. In your DevOps version control dashboard, click Add new user. + +You can also send invitations and add different permission types for each user. + diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/CreateProjects.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/CreateProjects.md new file mode 100644 index 00000000..781d43f2 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/CreateProjects.md @@ -0,0 +1,23 @@ +# Create projects + +To create projects: + +1. In Unity, open the version control window and click on **Create Workspace**. +It will suggest names for your repository (shared files and history) and workspace (your local copy). + +If you wish to use an existing version control repository, click the three dots next to the repository name, and select a repository from the list. + +2. Select the type of workspace that fits your needs. + +* **local workspace** +With this workspace, you can work with branching and merging. + +* **Gluon workspace** +This workspace tailored for artists allows you to pick the files you want to work on and check them back in without updating your whole workspace. + +1. Add asset files associated with your project. +version control will display the project files from the asset folder in the **Pending changes** tab. You can choose specific files to include or add all to the repository by selecting the files and clicking Checkin changes. + +version control will automatically perform a check in for appropriate folders and files – such as package files and project settings – when it’s set up from the Unity Editor. You can view these in the **Changesets tab.** + +Once your initial asset check in is complete, you’re set up with version control for Unity and ready to create. diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/ExistingRepo.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/ExistingRepo.md new file mode 100644 index 00000000..90c19e0f --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/ExistingRepo.md @@ -0,0 +1,15 @@ +# Getting started with an existing Unity version control repository + +Suppose you want to start working on a Unity project in an existing Unity version control repository and already have a Unity version control account linked to your Unity ID. In that case, you will be able to open the project straight from the **Unity Hub**. A workspace will automatically be created for your project on your machine. + +1. In the Unity Hub v3 Beta, click **Open** > **Open remote project** to see the list of your Unity version control repositories that contain a Unity project. +2. Click the project and click **Next**. +3. Click the Editor version and platform and click the **change version** button. +4. In the Editor pop-up, click the **Migrate** button to migrate your local workspace to a Unity version control workspace +5. Once the migration is completed, click the **Open Unity version control** button. + +![Plastic Hub](images/plasticHub.gif) + +## Accessing the Unity version control Window + +You can access the **Unity version control** window in the Unity Editor by clicking **Window** > **Unity version control**. diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/Get started.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/Get started.md new file mode 100644 index 00000000..cbf79b78 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/Get started.md @@ -0,0 +1,8 @@ +# Getting started with Unity version control + +You can use Unity version control directly in Unity and is available via the Version Control package in the Unity Package Manager. + +Learn more about [Unity version control Cloud Edition](https://unity.com/products/plastic-scm). + +* To start with a new version control repository for your project, see [Getting started with a new repository](NewPlasticRepo.md). +* To start from an existing Unity version control repository, see [Getting started with an existing repository](ExistingPlasticRepo.md). \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/GitUsers.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/GitUsers.md new file mode 100644 index 00000000..9a9ec347 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/GitUsers.md @@ -0,0 +1,14 @@ +# Unity version control for Git users + + +| **GIT**| **Unity VC**| **Explanation**| +|:--|:--|:--| +| To Commit| To Check in| To Check in is to submit changes to the repo.| +| Commit| Changeset| Each new change on the history of the repo, grouping several individual file and directory changes.| +| Master| Main| When you create a repo in Unity VC, there's always an "empty" branch. Unity VC calls it Main.| +| To checkout | To update| Downloading content to the workspace (working copy). This is called "update" because in Unity VC, "checkout" has a different meaning.| +|| Checkout| When you checkout a file in Unity VC, you're saying you are going to modify the file.| +|| Exclusive checkout or lock | This is locking a file so nobody can touch it. It’s only useful for non-mergeable files, like binaries, images, or art in a video game.| +| Rebase|| Unity VC handles branching differently than Git. In Unity VC, a rebase is just a merge operation.| +| Repository | Repository| Where the entire history of the project is stored. +| Working copy | Workspace| In Git, you have the working copy and the repository in the exact location. You have a working copy and a .git hidden dir with the repository. In Unity VC, this is slightly different since repositories and workspaces are separated. You can have several workspaces working with the same local repository. \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/Glossary.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/Glossary.md new file mode 100644 index 00000000..2f143a25 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/Glossary.md @@ -0,0 +1,37 @@ +# Glossary + +## General terms + +#### Ignore file + +A special file used in many **Version Control** Systems which specifies files to be excluded from **version control**. In Unity projects, several files can be excluded from **version control**. Using an Ignore File is the best way to achieve this. See [Using external version control systems with Unity](https://docs.unity3d.com/Manual/ExternalVersionControlSystemSupport.html). + +#### Project + +In Unity, you use a project to design and develop a game. A project stores all of the files related to a game, such as the asset and **Scene** files. See [2D or 3D projects](https://docs.unity3d.com/Manual/2Dor3D.html). + +#### Version Control + +A system for managing file changes. You can use Unity in conjunction with most **version control** tools, including **Perforce** , Git, Mercurial, and perforce. See [Version Control](https://docs.unity3d.com/Manual/VersionControl.html). + +## Unity version control terms + +#### Checkin + +Checkin is the act of submitting changes to the repo. You must enter a comment in the text box before you can check in your changes. + +#### Developer Workflow + +Developers have access to the branch explorer directly from inside Unity and easily switch branches. + +#### Gluon Workflow + +Artists can take advantage of the Gluon visualized interface and workflow from inside Unity. + +#### Organization + +The organization handles different sets of repositories in the Cloud. Inside the organization, you can create as many repositories as you need. + +#### Workspace + +Your workspace interacts with the version control, where you download the files and make the required changes for each checkin. diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/MainFeatures.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/MainFeatures.md new file mode 100644 index 00000000..3de5eb92 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/MainFeatures.md @@ -0,0 +1,37 @@ +# Overview of features + +## Pending Changes + +The **Pending Changes** tab allows you to view all pending changes in your workspace. These changes are not checked into the repository. In this tab, you can select which files you want to check in, add a comment, and check in the changes. + +![Pending changes tab](images/PendingChanges.png) + +**Note** : You can check in a specific file using the version control contextual menu in the project view or the **Checkin** button in the **Inspector** window. + +![Inspector window](images/InspectorWindow.png) + +In the example below, the user adds a GameScene. They can check in the scene using the **Pending Changes** tab or the **Checkin** option in the contextual menu. + +![Checkin using contextual menu](images/GamesSceneExample.png) + +## Incoming Changes + +The **Incoming Changes** tab allows you to view all incoming changes and conflicts and update your local project. Any changes made to your project prompts an "**Incoming changes**" notification at the top right of the version control window. + +**Tip** : Check the **Incoming Changes** tab frequently to avoid facing future change conflicts in your team. + +![Incoming changes tab](images/IncomingChanges.gif) + +## Project History + +Use the **Changesets** tab to view all changes made to your project as they occur chronologically, along with who made the changes and when. You can sort by columns and alter the chronological view of the story. + +![Changesets tab](images/ProjectHistory.png) + +Double-click any file in a changeset to go to the **File History** tab, and display every changeset. In the **File History view**, right-click on a change and click **Save the revision as…** to restore the file's former state. This is useful if you had previously deleted some logic that you now need. + +![File history view](images/FileHistory.png) + +You can also view the changes made to a specific file in the **Project view** through a contextual menu, then revert to an earlier revision of the file. + +![Revert changes in project view](images/ProjectView.gif) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/MoreHelp.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/MoreHelp.md new file mode 100644 index 00000000..7caab6bd --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/MoreHelp.md @@ -0,0 +1,6 @@ +# More help + +To find more information on working with the Unity version control plug-in, see [Getting started with Unity Version control](https://docs.unity3d.com/2022.1/Documentation/Manual/PlasticSCMPluginGettingStarted.html). + +You can also post and find questions related to Unity version control in the [Unity forum](https://forum.unity.com/forums/plastic-scm.605/). + diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/NewRepo.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/NewRepo.md new file mode 100644 index 00000000..32290560 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/NewRepo.md @@ -0,0 +1,24 @@ +# Getting started with a new version control repository + +**Note**: To start from an existing version control repository, see [Getting started with an existing version control repository](ExistingRepo.md). + +You can walk through a straightforward onboarding wizard when creating a repository for your Unity project. This new wizard will help you: + +* Set up your account and configure your repository for your Unity project, enabling you to sync to a version control Cloud Edition repository. +* Generate a standard ignore file that prevents unnecessary components of your Unity project from being checked in. +* Automatically do the first check-in so that your repository is in sync with your local changes. + +1. Open your Unity project. +2. To access the version control window in the Unity Editor, click **Window** > **version control**: + ![version control window](images/AccessingPlastic.png) + +3. In the version control onboarding window, complete the steps to continue: + ![Onboarding](images/Onboarding.png) + +Unity connects your project to your version control Cloud repository; version control automatically creates an ignore file in the workspace for Unity projects so it doesn't track files that shouldn't be part of the repository. It also creates a standard automatic checkin during the initial setup. So now you're all set to start using version control! + +![Automatic setup](images/AutomaticSetup.png) + +**Note**: Basic version control actions, such as viewing pending changes, checking in changes, and viewing changesets, don’t require a version control Client install. However, if you want to use more advanced features, such as branching and diffing changeset, you will be prompted to download the version control client (if you have not already done so): + +![Advanced features](images/AdvancedFeatures.png) \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/QuickStartGuide.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/QuickStartGuide.md new file mode 100644 index 00000000..3c790b30 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/QuickStartGuide.md @@ -0,0 +1,16 @@ +# Quick start guide + +The Version Control package will allow you to use Unity version control for your projects in the Unity Editor. + +Unity VC integrates version control in Unity that will abstract version control complexity. It will also enable you to work collaboratively on more complex projects by providing additional VCS features such as branching, locking, merging, and a standalone GUI. + +The Version Control package follows the Unity support schedule. Currently, supported versions are: + +* 2020.3 +* 2021.3 +* 2022.2 +* 2023.1 +* 2023.2 + + +[Getting started with Unity version control](StartPlasticForUnity.md) diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/ReconnectCB.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/ReconnectCB.md new file mode 100644 index 00000000..5de7af3b --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/ReconnectCB.md @@ -0,0 +1,10 @@ +# Connect Unity Cloud Build + +Unity Cloud Build is a [continuous integration](https://docs.unity3d.com/2022.2/Documentation/Manual/UnityCloudBuild.html#automated-build-generation) that automatically creates multiplatform builds in the Cloud in minutes. You can point Cloud Build toward your version control system to: + +* Automate new builds +* Build faster +* Catch problems earlier +* Iterate on your builds more efficiently with agility. + +To get started, see [Pay as you go with Cloud Build](https://docs.unity3d.com/2022.2/Documentation/Manual/UnityCloudBuildMeteredBilling.html). diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/TableOfContents.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/TableOfContents.md new file mode 100644 index 00000000..e6a10dc6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/TableOfContents.md @@ -0,0 +1,20 @@ + [About version control](index.md) + +* [Quick start guide](QuickStartGuide.md) + * [Create projects](CreateProjects.md) + * [Access remote projects](AccessRemoteProjects.md) + * [Add team members](AddMembers.md) + * [Connect Cloud Build](ReconnectCB.md) +* [Get started with Unity version control](StartPlasticForUnity.md) + * [Get started with a new version control repository](NewRepo.md) + * [Get started with an existing version control repository](ExistingRepo.md) +* [Main features](MainFeatures.md) + * [Pending Changes](MainFeatures.md#pending-changes) + * [Incoming Changes](MainFeatures.md#incoming-changes) + * [Project History](MainFeatures.md#project-history) +* [Unity version control for Git users](GitUsers.md) +* [Glossary](Glossary.md) + * [General terms](Glossary.md#general-terms) + * [version control terms](Glossary.md#unity-version-control-terms) +* [More help](MoreHelp.md) + diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/AdvancedFeatures.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/AdvancedFeatures.png new file mode 100644 index 00000000..4e330d7c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/AdvancedFeatures.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/AutomaticSetup.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/AutomaticSetup.png new file mode 100644 index 00000000..50f4233d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/AutomaticSetup.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/FileHistory.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/FileHistory.png new file mode 100644 index 00000000..dacf4aaa Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/FileHistory.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/GameSceneExample.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/GameSceneExample.png new file mode 100644 index 00000000..12274cd1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/GameSceneExample.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/GamesSceneExample.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/GamesSceneExample.png new file mode 100644 index 00000000..9c7cbc58 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/GamesSceneExample.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/IncomingChanges.gif b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/IncomingChanges.gif new file mode 100644 index 00000000..9b220a8a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/IncomingChanges.gif differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/InspectorWindow.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/InspectorWindow.png new file mode 100644 index 00000000..c15be666 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/InspectorWindow.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/InviteMembers.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/InviteMembers.png new file mode 100644 index 00000000..da00679c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/InviteMembers.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/Onboarding.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/Onboarding.png new file mode 100644 index 00000000..a9ef0384 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/Onboarding.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/PendingChanges.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/PendingChanges.png new file mode 100644 index 00000000..9e338bba Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/PendingChanges.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/ProjectHistory.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/ProjectHistory.png new file mode 100644 index 00000000..b301c3fb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/ProjectHistory.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/ProjectView.gif b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/ProjectView.gif new file mode 100644 index 00000000..725497d7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/ProjectView.gif differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/plasticHub.gif b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/plasticHub.gif new file mode 100644 index 00000000..6fcd9032 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/images/plasticHub.gif differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/index.md b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/index.md new file mode 100644 index 00000000..b6a714b0 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Documentation~/index.md @@ -0,0 +1,7 @@ +# About Version Control + +The Version Control package provides an in-editor interface for teams to work with Unity version control (Unity VC). +## Unity VC + +Unity VC plug-in for Unity is a free Unity plug-in that gives you the ability to use Unity VC, a leading version control solution, directly in Unity. Get started with [Unity VC](QuickStartGuide.md). + diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor.meta new file mode 100644 index 00000000..db0c3699 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3eedd97b804f5a546a8817f8be60e318 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM.meta new file mode 100644 index 00000000..d4e75762 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d5ae383aa416ba14e800dff2526122ed +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/ApplicationDataPath.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/ApplicationDataPath.cs new file mode 100644 index 00000000..2eedda08 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/ApplicationDataPath.cs @@ -0,0 +1,24 @@ +using UnityEngine; + +namespace Unity.PlasticSCM.Editor +{ + internal static class ApplicationDataPath + { + internal static string Get() + { + return mApplicationDataPath ?? Application.dataPath; + } + + internal static void InitializeForTesting(string applicationDataPath) + { + mApplicationDataPath = applicationDataPath; + } + + internal static void Reset() + { + mApplicationDataPath = null; + } + + static string mApplicationDataPath; + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/ApplicationDataPath.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/ApplicationDataPath.cs.meta new file mode 100644 index 00000000..cf3e096f --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/ApplicationDataPath.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 50503d5b64dbddc48a0bcba68901b3d6 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssemblyInfo.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssemblyInfo.cs new file mode 100644 index 00000000..645ab618 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssemblyInfo.cs @@ -0,0 +1,5 @@ +using System.Runtime.CompilerServices; +using UnityEngine; + +[assembly: InternalsVisibleTo("Unity.PlasticSCM.EditorTests")] +[assembly: InternalsVisibleTo("Unity.PlasticSCM.DevTools")] \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssemblyInfo.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssemblyInfo.cs.meta new file mode 100644 index 00000000..3f98d5cc --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssemblyInfo.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d50ac3212a7ff5a4795bf609a2a20350 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu.meta new file mode 100644 index 00000000..f795ce31 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d3f8e034331c39c4f823ac31228dc4d9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetFilesFilterPatternsMenuBuilder.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetFilesFilterPatternsMenuBuilder.cs new file mode 100644 index 00000000..efa89b11 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetFilesFilterPatternsMenuBuilder.cs @@ -0,0 +1,257 @@ +using Codice.Client.BaseCommands; +using PlasticGui; +using PlasticGui.WorkspaceWindow.Items; +using Unity.PlasticSCM.Editor.UI; + +namespace Unity.PlasticSCM.Editor.AssetMenu +{ + internal interface IAssetFilesFilterPatternsMenuOperations + { + void AddFilesFilterPatterns( + FilterTypes type, FilterActions action, FilterOperationType operation); + } + + internal class AssetFilesFilterPatternsMenuBuilder + { + internal AssetFilesFilterPatternsMenuBuilder( + int ignoredMenuItemsPriority, + int hiddenChangesMenuItemsPriority) + { + mIgnoredMenuItemsPriority = ignoredMenuItemsPriority; + mHiddenChangesMenuItemsPriority = hiddenChangesMenuItemsPriority; + + mIgnoredSubmenuItem = string.Format( + "{0}/{1}", + PlasticLocalization.GetString(PlasticLocalization.Name.PrefixUnityVersionControlMenu), + PlasticLocalization.GetString(PlasticLocalization.Name.MenuAddToIgnoreList)); + + mHiddenChangesSubmenuItem = string.Format( + "{0}/{1}", + PlasticLocalization.GetString(PlasticLocalization.Name.PrefixUnityVersionControlMenu), + PlasticLocalization.GetString(PlasticLocalization.Name.MenuAddToHiddenChangesList)); + } + + internal void SetOperations( + IAssetFilesFilterPatternsMenuOperations operations) + { + mOperations = operations; + } + + internal void UpdateMenuItems(FilterMenuActions actions) + { + UpdateIgnoredMenuItems(actions); + UpdateHiddenChangesMenuItems(actions); + + HandleMenuItem.UpdateAllMenus(); + } + + internal void RemoveMenuItems() + { + RemoveIgnoredMenuItems(); + RemoveHiddenChangesMenuItems(); + } + + void IgnoredByName_Click() + { + if (mOperations == null) + ShowWindow.Plastic(); + + mOperations.AddFilesFilterPatterns( + FilterTypes.Ignored, FilterActions.ByName, + GetIgnoredFilterOperationType()); + } + + void IgnoredByExtension_Click() + { + if (mOperations == null) + ShowWindow.Plastic(); + + mOperations.AddFilesFilterPatterns( + FilterTypes.Ignored, FilterActions.ByExtension, + GetIgnoredFilterOperationType()); + } + + void IgnoredByFullPath_Click() + { + if (mOperations == null) + ShowWindow.Plastic(); + + mOperations.AddFilesFilterPatterns( + FilterTypes.Ignored, FilterActions.ByFullPath, + GetIgnoredFilterOperationType()); + } + + void HiddenChangesByName_Click() + { + if (mOperations == null) + ShowWindow.Plastic(); + + mOperations.AddFilesFilterPatterns( + FilterTypes.HiddenChanges, FilterActions.ByName, + GetHiddenChangesFilterOperationType()); + } + + void HiddenChangesByExtension_Click() + { + if (mOperations == null) + ShowWindow.Plastic(); + + mOperations.AddFilesFilterPatterns( + FilterTypes.HiddenChanges, FilterActions.ByExtension, + GetHiddenChangesFilterOperationType()); + } + + void HiddenChangesByFullPath_Click() + { + if (mOperations == null) + ShowWindow.Plastic(); + + mOperations.AddFilesFilterPatterns( + FilterTypes.HiddenChanges, FilterActions.ByFullPath, + GetHiddenChangesFilterOperationType()); + } + + void UpdateIgnoredMenuItems(FilterMenuActions actions) + { + RemoveIgnoredMenuItems(); + + if (!actions.Operations.HasFlag(FilterMenuOperations.Ignore)) + { + HandleMenuItem.AddMenuItem( + mIgnoredSubmenuItem, + mIgnoredMenuItemsPriority, + DisabledMenuItem_Click, ValidateDisabledMenuItem); + return; + } + + mIgnoredByNameMenuItem = GetIgnoredMenuItemName(actions.FilterByName); + mIgnoredByExtensionMenuItem = GetIgnoredMenuItemName(actions.FilterByExtension); + mIgnoredByFullPathMenuItem = GetIgnoredMenuItemName(actions.FilterByFullPath); + + HandleMenuItem.AddMenuItem( + mIgnoredByNameMenuItem, + mIgnoredMenuItemsPriority, + IgnoredByName_Click, ValidateEnabledMenuItem); + + if (!actions.Operations.HasFlag(FilterMenuOperations.IgnoreByExtension)) + HandleMenuItem.AddMenuItem( + mIgnoredByExtensionMenuItem, + mIgnoredMenuItemsPriority, + IgnoredByExtension_Click, ValidateEnabledMenuItem); + + HandleMenuItem.AddMenuItem( + mIgnoredByFullPathMenuItem, + mIgnoredMenuItemsPriority, + IgnoredByFullPath_Click, ValidateEnabledMenuItem); + } + + void UpdateHiddenChangesMenuItems(FilterMenuActions actions) + { + RemoveHiddenChangesMenuItems(); + + if (!actions.Operations.HasFlag(FilterMenuOperations.HideChanged)) + { + HandleMenuItem.AddMenuItem( + mHiddenChangesSubmenuItem, + mHiddenChangesMenuItemsPriority, + DisabledMenuItem_Click, ValidateDisabledMenuItem); + return; + } + + mHiddenChangesByNameMenuItem = GetHiddenChangesMenuItemName(actions.FilterByName); + mHiddenChangesByExtensionMenuItem = GetHiddenChangesMenuItemName(actions.FilterByExtension); + mHiddenChangesByFullPathMenuItem = GetHiddenChangesMenuItemName(actions.FilterByFullPath); + + HandleMenuItem.AddMenuItem( + mHiddenChangesByNameMenuItem, + mIgnoredMenuItemsPriority, + HiddenChangesByName_Click, ValidateEnabledMenuItem); + + if (actions.Operations.HasFlag(FilterMenuOperations.HideChangedByExtension)) + HandleMenuItem.AddMenuItem( + mHiddenChangesByExtensionMenuItem, + mIgnoredMenuItemsPriority, + HiddenChangesByExtension_Click, ValidateEnabledMenuItem); + + HandleMenuItem.AddMenuItem( + mHiddenChangesByFullPathMenuItem, + mIgnoredMenuItemsPriority, + HiddenChangesByFullPath_Click, ValidateEnabledMenuItem); + } + + void RemoveIgnoredMenuItems() + { + HandleMenuItem.RemoveMenuItem(mIgnoredSubmenuItem); + HandleMenuItem.RemoveMenuItem(mIgnoredByNameMenuItem); + HandleMenuItem.RemoveMenuItem(mIgnoredByExtensionMenuItem); + HandleMenuItem.RemoveMenuItem(mIgnoredByFullPathMenuItem); + } + + void RemoveHiddenChangesMenuItems() + { + HandleMenuItem.RemoveMenuItem(mHiddenChangesSubmenuItem); + HandleMenuItem.RemoveMenuItem(mHiddenChangesByNameMenuItem); + HandleMenuItem.RemoveMenuItem(mHiddenChangesByExtensionMenuItem); + HandleMenuItem.RemoveMenuItem(mHiddenChangesByFullPathMenuItem); + } + + FilterOperationType GetIgnoredFilterOperationType() + { + if (mIgnoredByNameMenuItem.StartsWith(PlasticLocalization.GetString( + PlasticLocalization.Name.MenuAddToIgnoreList))) + { + return FilterOperationType.Add; + } + + return FilterOperationType.Remove; + } + + FilterOperationType GetHiddenChangesFilterOperationType() + { + if (mHiddenChangesByNameMenuItem.StartsWith(PlasticLocalization.GetString( + PlasticLocalization.Name.MenuAddToHiddenChangesList))) + { + return FilterOperationType.Add; + } + + return FilterOperationType.Remove; + } + + void DisabledMenuItem_Click() { } + + bool ValidateEnabledMenuItem() { return true; } + + bool ValidateDisabledMenuItem() { return false; } + + string GetIgnoredMenuItemName(string filterPattern) + { + return UnityMenuItem.GetText( + mIgnoredSubmenuItem, + UnityMenuItem.EscapedText(filterPattern)); + } + + string GetHiddenChangesMenuItemName(string filterPattern) + { + return UnityMenuItem.GetText( + mHiddenChangesSubmenuItem, + UnityMenuItem.EscapedText(filterPattern)); + } + + IAssetFilesFilterPatternsMenuOperations mOperations; + + string mIgnoredSubmenuItem; + string mHiddenChangesSubmenuItem; + + string mIgnoredByNameMenuItem; + string mHiddenChangesByNameMenuItem; + + string mIgnoredByExtensionMenuItem; + string mHiddenChangesByExtensionMenuItem; + + string mIgnoredByFullPathMenuItem; + string mHiddenChangesByFullPathMenuItem; + + readonly int mIgnoredMenuItemsPriority; + readonly int mHiddenChangesMenuItemsPriority; + } +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetFilesFilterPatternsMenuBuilder.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetFilesFilterPatternsMenuBuilder.cs.meta new file mode 100644 index 00000000..52e23d4e --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetFilesFilterPatternsMenuBuilder.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b4eb3fe08d1dc86419dee5ddcc40baae +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuItems.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuItems.cs new file mode 100644 index 00000000..d6330c63 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuItems.cs @@ -0,0 +1,317 @@ +using UnityEditor; +using UnityEditor.VersionControl; + +using Codice.CM.Common; +using Codice.Client.BaseCommands.EventTracking; +using PlasticGui; +using PlasticGui.WorkspaceWindow.Items; +using Unity.PlasticSCM.Editor.AssetsOverlays.Cache; +using Unity.PlasticSCM.Editor.UI; +using Unity.PlasticSCM.Editor.Tool; + +namespace Unity.PlasticSCM.Editor.AssetMenu +{ + internal class AssetMenuItems + { + internal static void Enable( + WorkspaceInfo wkInfo, + IAssetStatusCache assetStatusCache) + { + if (mIsEnabled) + return; + + mWkInfo = wkInfo; + mAssetStatusCache = assetStatusCache; + + mIsEnabled = true; + + mAssetSelection = new ProjectViewAssetSelection(UpdateFilterMenuItems); + + mFilterMenuBuilder = new AssetFilesFilterPatternsMenuBuilder( + IGNORE_MENU_ITEMS_PRIORITY, + HIDDEN_MENU_ITEMS_PRIORITY); + + AddMenuItems(); + } + + internal static void Disable() + { + mIsEnabled = false; + + RemoveMenuItems(); + + if (mAssetSelection != null) + mAssetSelection.Dispose(); + + mWkInfo = null; + mAssetStatusCache = null; + mAssetSelection = null; + mFilterMenuBuilder = null; + mOperations = null; + } + + internal static void BuildOperations( + WorkspaceInfo wkInfo, + WorkspaceWindow workspaceWindow, + IViewSwitcher viewSwitcher, + IHistoryViewLauncher historyViewLauncher, + GluonGui.ViewHost viewHost, + PlasticGui.WorkspaceWindow.NewIncomingChangesUpdater incomingChangesUpdater, + IAssetStatusCache assetStatusCache, + IMergeViewLauncher mergeViewLauncher, + PlasticGui.Gluon.IGluonViewSwitcher gluonViewSwitcher, + LaunchTool.IShowDownloadPlasticExeWindow showDownloadPlasticExeWindow, + EditorWindow parentWindow, + bool isGluonMode) + { + if (!mIsEnabled) + Enable(wkInfo, assetStatusCache); + + AssetOperations assetOperations = new AssetOperations( + wkInfo, + workspaceWindow, + viewSwitcher, + historyViewLauncher, + viewHost, + incomingChangesUpdater, + mAssetStatusCache, + mergeViewLauncher, + gluonViewSwitcher, + parentWindow, + mAssetSelection, + showDownloadPlasticExeWindow, + isGluonMode); + + mOperations = assetOperations; + mFilterMenuBuilder.SetOperations(assetOperations); + } + + static void RemoveMenuItems() + { + mFilterMenuBuilder.RemoveMenuItems(); + + HandleMenuItem.RemoveMenuItem( + PlasticLocalization.GetString(PlasticLocalization.Name.PrefixUnityVersionControlMenu)); + + HandleMenuItem.UpdateAllMenus(); + } + + static void UpdateFilterMenuItems() + { + AssetList assetList = ((AssetOperations.IAssetSelection) + mAssetSelection).GetSelectedAssets(); + + SelectedPathsGroupInfo info = AssetsSelection.GetSelectedPathsGroupInfo( + mWkInfo.ClientPath, assetList, mAssetStatusCache); + + FilterMenuActions actions = + assetList.Count != info.SelectedCount ? + new FilterMenuActions() : + FilterMenuUpdater.GetMenuActions(info); + + mFilterMenuBuilder.UpdateMenuItems(actions); + } + + static void AddMenuItems() + { + // TODO: Try removing this + // Somehow first item always disappears. So this is a filler item + HandleMenuItem.AddMenuItem( + GetPlasticMenuItemName(PlasticLocalization.Name.PendingChangesPlasticMenu), + PENDING_CHANGES_MENU_ITEM_PRIORITY, + PendingChanges, ValidatePendingChanges); + HandleMenuItem.AddMenuItem( + GetPlasticMenuItemName(PlasticLocalization.Name.PendingChangesPlasticMenu), + PENDING_CHANGES_MENU_ITEM_PRIORITY, + PendingChanges, ValidatePendingChanges); + HandleMenuItem.AddMenuItem( + GetPlasticMenuItemName(PlasticLocalization.Name.AddPlasticMenu), + ADD_MENU_ITEM_PRIORITY, + Add, ValidateAdd); + HandleMenuItem.AddMenuItem( + GetPlasticMenuItemName(PlasticLocalization.Name.CheckoutPlasticMenu), + CHECKOUT_MENU_ITEM_PRIORITY, + Checkout, ValidateCheckout); + HandleMenuItem.AddMenuItem( + GetPlasticMenuItemName(PlasticLocalization.Name.CheckinPlasticMenu), + CHECKIN_MENU_ITEM_PRIORITY, + Checkin, ValidateCheckin); + HandleMenuItem.AddMenuItem( + GetPlasticMenuItemName(PlasticLocalization.Name.UndoPlasticMenu), + UNDO_MENU_ITEM_PRIORITY, + Undo, ValidateUndo); + + UpdateFilterMenuItems(); + + HandleMenuItem.AddMenuItem( + GetPlasticMenuItemName(PlasticLocalization.Name.DiffPlasticMenu), + GetPlasticShortcut.ForAssetDiff(), + DIFF_MENU_ITEM_PRIORITY, + Diff, ValidateDiff); + HandleMenuItem.AddMenuItem( + GetPlasticMenuItemName(PlasticLocalization.Name.HistoryPlasticMenu), + GetPlasticShortcut.ForHistory(), + HISTORY_MENU_ITEM_PRIORITY, + History, ValidateHistory); + + HandleMenuItem.UpdateAllMenus(); + } + + static void PendingChanges() + { + ShowWindow.Plastic(); + + mOperations.ShowPendingChanges(); + } + + static bool ValidatePendingChanges() + { + return true; + } + + static void Add() + { + if (mOperations == null) + ShowWindow.Plastic(); + + mOperations.Add(); + } + + static bool ValidateAdd() + { + return ShouldMenuItemBeEnabled( + mWkInfo.ClientPath, mAssetSelection, mAssetStatusCache, + AssetMenuOperations.Add); + } + + static void Checkout() + { + if (mOperations == null) + ShowWindow.Plastic(); + + mOperations.Checkout(); + } + + static bool ValidateCheckout() + { + return ShouldMenuItemBeEnabled( + mWkInfo.ClientPath, mAssetSelection, mAssetStatusCache, + AssetMenuOperations.Checkout); + } + + static void Checkin() + { + TrackFeatureUseEvent.For( + PlasticGui.Plastic.API.GetRepositorySpec(mWkInfo), + TrackFeatureUseEvent.Features.ContextMenuCheckinOption); + + if (mOperations == null) + ShowWindow.Plastic(); + + mOperations.Checkin(); + } + + static bool ValidateCheckin() + { + return ShouldMenuItemBeEnabled( + mWkInfo.ClientPath, mAssetSelection, mAssetStatusCache, + AssetMenuOperations.Checkin); + } + + static void Undo() + { + if (mOperations == null) + ShowWindow.Plastic(); + + mOperations.Undo(); + } + + static bool ValidateUndo() + { + return ShouldMenuItemBeEnabled( + mWkInfo.ClientPath, mAssetSelection, mAssetStatusCache, + AssetMenuOperations.Undo); + } + + static void Diff() + { + if (mOperations == null) + ShowWindow.Plastic(); + + mOperations.ShowDiff(); + } + + static bool ValidateDiff() + { + return ShouldMenuItemBeEnabled( + mWkInfo.ClientPath, mAssetSelection, mAssetStatusCache, + AssetMenuOperations.Diff); + } + + static void History() + { + ShowWindow.Plastic(); + + mOperations.ShowHistory(); + } + + static bool ValidateHistory() + { + return ShouldMenuItemBeEnabled( + mWkInfo.ClientPath, mAssetSelection, mAssetStatusCache, + AssetMenuOperations.History); + } + + static bool ShouldMenuItemBeEnabled( + string wkPath, + AssetOperations.IAssetSelection assetSelection, + IAssetStatusCache statusCache, + AssetMenuOperations operation) + { + AssetList assetList = assetSelection.GetSelectedAssets(); + + if (assetList.Count == 0) + return false; + + SelectedAssetGroupInfo selectedGroupInfo = SelectedAssetGroupInfo. + BuildFromAssetList(wkPath, assetList, statusCache); + + if (assetList.Count != selectedGroupInfo.SelectedCount) + return false; + + AssetMenuOperations operations = AssetMenuUpdater. + GetAvailableMenuOperations(selectedGroupInfo); + + return operations.HasFlag(operation); + } + + static string GetPlasticMenuItemName(PlasticLocalization.Name name) + { + return string.Format("{0}/{1}", + PlasticLocalization.GetString(PlasticLocalization.Name.PrefixUnityVersionControlMenu), + PlasticLocalization.GetString(name)); + } + + static IAssetMenuOperations mOperations; + + static ProjectViewAssetSelection mAssetSelection; + static AssetFilesFilterPatternsMenuBuilder mFilterMenuBuilder; + + static bool mIsEnabled; + static IAssetStatusCache mAssetStatusCache; + static WorkspaceInfo mWkInfo; + + const int BASE_MENU_ITEM_PRIORITY = 19; // Puts Plastic SCM right below Create menu + + // incrementing the "order" param by 11 causes the menu system to add a separator + const int PENDING_CHANGES_MENU_ITEM_PRIORITY = BASE_MENU_ITEM_PRIORITY; + const int ADD_MENU_ITEM_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 11; + const int CHECKOUT_MENU_ITEM_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 12; + const int CHECKIN_MENU_ITEM_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 13; + const int UNDO_MENU_ITEM_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 14; + const int IGNORE_MENU_ITEMS_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 25; + const int HIDDEN_MENU_ITEMS_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 26; + const int DIFF_MENU_ITEM_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 37; + const int HISTORY_MENU_ITEM_PRIORITY = PENDING_CHANGES_MENU_ITEM_PRIORITY + 38; + } +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuItems.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuItems.cs.meta new file mode 100644 index 00000000..c70e70cc --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuItems.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7c8a8e3e4456f9149905cf2c80aa41a9 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuOperations.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuOperations.cs new file mode 100644 index 00000000..5647f7c5 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuOperations.cs @@ -0,0 +1,224 @@ +using System; + +using UnityEditor.VersionControl; + +using Codice; +using Codice.Client.Commands.WkTree; +using Unity.PlasticSCM.Editor.AssetsOverlays.Cache; +using Unity.PlasticSCM.Editor.AssetsOverlays; +using Unity.PlasticSCM.Editor.AssetUtils; + +namespace Unity.PlasticSCM.Editor.AssetMenu +{ + [Flags] + internal enum AssetMenuOperations : byte + { + None = 0, + Checkout = 1 << 0, + Diff = 1 << 1, + History = 1 << 2, + Add = 1 << 3, + Checkin = 1 << 4, + Undo = 1 << 5, + } + + internal class SelectedAssetGroupInfo + { + internal int SelectedCount; + + internal bool IsControlledSelection; + internal bool IsCheckedInSelection; + internal bool IsCheckedOutSelection; + internal bool IsPrivateSelection; + internal bool IsAddedSelection; + internal bool IsFileSelection; + internal bool HasAnyAddedInSelection; + internal bool HasAnyRemoteLockedInSelection; + + internal static SelectedAssetGroupInfo BuildFromAssetList( + string wkPath, + AssetList assetList, + IAssetStatusCache statusCache) + { + bool isCheckedInSelection = true; + bool isControlledSelection = true; + bool isCheckedOutSelection = true; + bool isPrivateSelection = true; + bool isAddedSelection = true; + bool isFileSelection = true; + bool hasAnyAddedInSelection = false; + bool hasAnyRemoteLockedInSelection = false; + + int selectedCount = 0; + + foreach (Asset asset in assetList) + { + string fullPath = AssetsPath.GetFullPathUnderWorkspace. + ForAsset(wkPath, asset.path); + + if (fullPath == null) + continue; + + SelectedAssetGroupInfo singleFileGroupInfo = BuildFromSingleFile( + fullPath, asset.isFolder, statusCache); + + if (!singleFileGroupInfo.IsCheckedInSelection) + isCheckedInSelection = false; + + if (!singleFileGroupInfo.IsControlledSelection) + isControlledSelection = false; + + if (!singleFileGroupInfo.IsCheckedOutSelection) + isCheckedOutSelection = false; + + if (!singleFileGroupInfo.IsPrivateSelection) + isPrivateSelection = false; + + if (!singleFileGroupInfo.IsAddedSelection) + isAddedSelection = false; + + if (!singleFileGroupInfo.IsFileSelection) + isFileSelection = false; + + if (singleFileGroupInfo.HasAnyAddedInSelection) + hasAnyAddedInSelection = true; + + if (singleFileGroupInfo.HasAnyRemoteLockedInSelection) + hasAnyRemoteLockedInSelection = true; + + selectedCount++; + } + + return new SelectedAssetGroupInfo() + { + IsCheckedInSelection = isCheckedInSelection, + IsCheckedOutSelection = isCheckedOutSelection, + IsControlledSelection = isControlledSelection, + IsPrivateSelection = isPrivateSelection, + IsAddedSelection = isAddedSelection, + IsFileSelection = isFileSelection, + HasAnyAddedInSelection = hasAnyAddedInSelection, + HasAnyRemoteLockedInSelection = hasAnyRemoteLockedInSelection, + SelectedCount = selectedCount, + }; + } + + internal static SelectedAssetGroupInfo BuildFromSingleFile( + string fullPath, + bool isDirectory, + IAssetStatusCache statusCache) + { + bool isCheckedInSelection = true; + bool isControlledSelection = true; + bool isCheckedOutSelection = true; + bool isPrivateSelection = true; + bool isAddedSelection = true; + bool isFileSelection = true; + bool hasAnyAddedInSelection = false; + bool hasAnyRemoteLockedInSelection = false; + + WorkspaceTreeNode wkTreeNode = + PlasticGui.Plastic.API.GetWorkspaceTreeNode(fullPath); + + if (isDirectory) + isFileSelection = false; + + if (CheckWorkspaceTreeNodeStatus.IsPrivate(wkTreeNode)) + isControlledSelection = false; + else + isPrivateSelection = false; + + if (CheckWorkspaceTreeNodeStatus.IsCheckedOut(wkTreeNode)) + isCheckedInSelection = false; + else + isCheckedOutSelection = false; + + if (CheckWorkspaceTreeNodeStatus.IsAdded(wkTreeNode)) + hasAnyAddedInSelection = true; + else + isAddedSelection = false; + + AssetStatus assetStatus = statusCache.GetStatus(fullPath); + + if (ClassifyAssetStatus.IsLockedRemote(assetStatus)) + hasAnyRemoteLockedInSelection = true; + + return new SelectedAssetGroupInfo() + { + IsCheckedInSelection = isCheckedInSelection, + IsCheckedOutSelection = isCheckedOutSelection, + IsControlledSelection = isControlledSelection, + IsPrivateSelection = isPrivateSelection, + IsAddedSelection = isAddedSelection, + IsFileSelection = isFileSelection, + HasAnyAddedInSelection = hasAnyAddedInSelection, + HasAnyRemoteLockedInSelection = hasAnyRemoteLockedInSelection, + SelectedCount = 1, + }; + } + } + + internal interface IAssetMenuOperations + { + void ShowPendingChanges(); + void Add(); + void Checkout(); + void Checkin(); + void Undo(); + void ShowDiff(); + void ShowHistory(); + } + + internal static class AssetMenuUpdater + { + internal static AssetMenuOperations GetAvailableMenuOperations( + SelectedAssetGroupInfo info) + { + AssetMenuOperations result = AssetMenuOperations.None; + + if (info.SelectedCount == 0) + { + return result; + } + + if (info.IsControlledSelection && + info.IsCheckedInSelection && + info.IsFileSelection && + !info.HasAnyRemoteLockedInSelection) + { + result |= AssetMenuOperations.Checkout; + } + + if (info.IsFileSelection && + info.IsPrivateSelection) + { + result |= AssetMenuOperations.Add; + } + + if (info.IsFileSelection && + info.IsControlledSelection && + info.IsCheckedOutSelection) + { + result |= AssetMenuOperations.Checkin; + result |= AssetMenuOperations.Undo; + } + + if (info.SelectedCount == 1 && + info.IsControlledSelection && + !info.HasAnyAddedInSelection && + info.IsFileSelection) + { + result |= AssetMenuOperations.Diff; + } + + if (info.SelectedCount == 1 && + info.IsControlledSelection && + !info.HasAnyAddedInSelection) + { + result |= AssetMenuOperations.History; + } + + return result; + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuOperations.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuOperations.cs.meta new file mode 100644 index 00000000..49aae3ad --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetMenuOperations.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c456fa791a741a045a8a99ee73af2ae6 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetOperations.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetOperations.cs new file mode 100644 index 00000000..642deaa6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetOperations.cs @@ -0,0 +1,323 @@ +using System.IO; +using System.Collections.Generic; + +using UnityEditor; +using UnityEditor.VersionControl; + +using Codice.Client.BaseCommands; +using Codice.Client.BaseCommands.EventTracking; +using Codice.Client.Commands; +using Codice.Client.Commands.WkTree; +using Codice.Client.Common; +using Codice.Client.Common.Threading; +using Codice.CM.Common; +using GluonGui; +using PlasticGui; +using PlasticGui.Gluon; +using PlasticGui.WorkspaceWindow; +using PlasticGui.WorkspaceWindow.Diff; +using PlasticGui.WorkspaceWindow.Items; +using Unity.PlasticSCM.Editor.AssetMenu.Dialogs; +using Unity.PlasticSCM.Editor.AssetsOverlays.Cache; +using Unity.PlasticSCM.Editor.AssetUtils; +using Unity.PlasticSCM.Editor.Tool; +using Unity.PlasticSCM.Editor.UI; +using Unity.PlasticSCM.Editor.Views.PendingChanges.Dialogs; + +using GluonCheckoutOperation = GluonGui.WorkspaceWindow.Views.WorkspaceExplorer.Explorer.Operations.CheckoutOperation; +using GluonUndoCheckoutOperation = GluonGui.WorkspaceWindow.Views.WorkspaceExplorer.Explorer.Operations.UndoCheckoutOperation; +using GluonAddoperation = GluonGui.WorkspaceWindow.Views.WorkspaceExplorer.Explorer.Operations.AddOperation; + +namespace Unity.PlasticSCM.Editor.AssetMenu +{ + internal class AssetOperations : + IAssetMenuOperations, + IAssetFilesFilterPatternsMenuOperations + { + internal interface IAssetSelection + { + AssetList GetSelectedAssets(); + } + + internal AssetOperations( + WorkspaceInfo wkInfo, + IWorkspaceWindow workspaceWindow, + IViewSwitcher viewSwitcher, + IHistoryViewLauncher historyViewLauncher, + ViewHost viewHost, + NewIncomingChangesUpdater newIncomingChangesUpdater, + IAssetStatusCache assetStatusCache, + IMergeViewLauncher mergeViewLauncher, + IGluonViewSwitcher gluonViewSwitcher, + EditorWindow parentWindow, + IAssetSelection assetSelection, + LaunchTool.IShowDownloadPlasticExeWindow showDownloadPlasticExeWindow, + bool isGluonMode) + { + mWkInfo = wkInfo; + mWorkspaceWindow = workspaceWindow; + mViewSwitcher = viewSwitcher; + mHistoryViewLauncher = historyViewLauncher; + mViewHost = viewHost; + mNewIncomingChangesUpdater = newIncomingChangesUpdater; + mAssetStatusCache = assetStatusCache; + mMergeViewLauncher = mergeViewLauncher; + mGluonViewSwitcher = gluonViewSwitcher; + mAssetSelection = assetSelection; + mShowDownloadPlasticExeWindow = showDownloadPlasticExeWindow; + mIsGluonMode = isGluonMode; + mParentWindow = parentWindow; + + mGuiMessage = new UnityPlasticGuiMessage(); + mProgressControls = new EditorProgressControls(mGuiMessage); + } + + void IAssetMenuOperations.ShowPendingChanges() + { + mViewSwitcher.ShowPendingChanges(); + } + + void IAssetMenuOperations.Add() + { + List selectedPaths = GetSelectedPaths.ForOperation( + mWkInfo.ClientPath, + mAssetSelection.GetSelectedAssets(), + mAssetStatusCache, + AssetMenuOperations.Add); + + if (mIsGluonMode) + { + GluonAddoperation.Add( + mViewHost, + mProgressControls, + mGuiMessage, + selectedPaths.ToArray(), + false, + RefreshAsset.VersionControlCache); + return; + } + + AddOperation.Run( + mWorkspaceWindow, + mProgressControls, + null, + null, + selectedPaths, + false, + mNewIncomingChangesUpdater, + RefreshAsset.VersionControlCache); + } + + void IAssetMenuOperations.Checkout() + { + List selectedPaths = GetSelectedPaths.ForOperation( + mWkInfo.ClientPath, + mAssetSelection.GetSelectedAssets(), + mAssetStatusCache, + AssetMenuOperations.Checkout); + + if (mIsGluonMode) + { + GluonCheckoutOperation.Checkout( + mViewHost, + mProgressControls, + mGuiMessage, + selectedPaths.ToArray(), + false, + RefreshAsset.VersionControlCache); + return; + } + + CheckoutOperation.Checkout( + mWorkspaceWindow, + null, + mProgressControls, + selectedPaths, + mNewIncomingChangesUpdater, + RefreshAsset.VersionControlCache); + } + + void IAssetMenuOperations.Checkin() + { + List selectedPaths = GetSelectedPaths.ForOperation( + mWkInfo.ClientPath, + mAssetSelection.GetSelectedAssets(), + mAssetStatusCache, + AssetMenuOperations.Checkin); + + if (!CheckinDialog.CheckinPaths( + mWkInfo, + selectedPaths, + mAssetStatusCache, + mIsGluonMode, + mParentWindow, + mWorkspaceWindow, + mViewHost, + mGuiMessage, + mMergeViewLauncher, + mGluonViewSwitcher)) + return; + + RefreshAsset.UnityAssetDatabase(); + } + + void IAssetMenuOperations.Undo() + { + List selectedPaths = GetSelectedPaths.ForOperation( + mWkInfo.ClientPath, + mAssetSelection.GetSelectedAssets(), + mAssetStatusCache, + AssetMenuOperations.Undo); + + SaveAssets.ForPathsWithoutConfirmation(selectedPaths); + + if (mIsGluonMode) + { + GluonUndoCheckoutOperation.UndoCheckout( + mWkInfo, + mViewHost, + mProgressControls, + selectedPaths.ToArray(), + false, + RefreshAsset.UnityAssetDatabase); + return; + } + + UndoCheckoutOperation.Run( + mWorkspaceWindow, + null, + mProgressControls, + selectedPaths, + mNewIncomingChangesUpdater, + RefreshAsset.UnityAssetDatabase); + } + + void IAssetMenuOperations.ShowDiff() + { + if (mShowDownloadPlasticExeWindow.Show( + mWkInfo, + mIsGluonMode, + TrackFeatureUseEvent.Features.InstallPlasticCloudFromShowDiff, + TrackFeatureUseEvent.Features.InstallPlasticEnterpriseFromFromShowDiff, + TrackFeatureUseEvent.Features.CancelPlasticInstallationFromFromShowDiff)) + return; + + string selectedPath = AssetsSelection.GetSelectedPath( + mWkInfo.ClientPath, + mAssetSelection.GetSelectedAssets()); + + DiffInfo diffInfo = null; + + IThreadWaiter waiter = ThreadWaiter.GetWaiter(10); + waiter.Execute( + /*threadOperationDelegate*/ delegate + { + string symbolicName = GetSymbolicName(selectedPath); + string extension = Path.GetExtension(selectedPath); + + diffInfo = PlasticGui.Plastic.API.BuildDiffInfoForDiffWithPrevious( + selectedPath, symbolicName, selectedPath, extension, mWkInfo); + }, + /*afterOperationDelegate*/ delegate + { + if (waiter.Exception != null) + { + ExceptionsHandler.DisplayException(waiter.Exception); + return; + } + + DiffOperation.DiffWithPrevious( + diffInfo, + null, + null); + }); + } + + void IAssetMenuOperations.ShowHistory() + { + if (mShowDownloadPlasticExeWindow.Show( + mWkInfo, + mIsGluonMode, + TrackFeatureUseEvent.Features.InstallPlasticCloudFromShowHistory, + TrackFeatureUseEvent.Features.InstallPlasticEnterpriseFromShowHistory, + TrackFeatureUseEvent.Features.CancelPlasticInstallationFromShowHistory)) + return; + + Asset selectedAsset = AssetsSelection.GetSelectedAsset( + mWkInfo.ClientPath, + mAssetSelection.GetSelectedAssets()); + + string selectedPath = Path.GetFullPath(selectedAsset.path); + + WorkspaceTreeNode node = PlasticGui.Plastic.API. + GetWorkspaceTreeNode(selectedPath); + + mHistoryViewLauncher.ShowHistoryView( + node.RepSpec, + node.RevInfo.ItemId, + selectedPath, + selectedAsset.isFolder); + } + + void IAssetFilesFilterPatternsMenuOperations.AddFilesFilterPatterns( + FilterTypes type, + FilterActions action, + FilterOperationType operation) + { + List selectedPaths = AssetsSelection.GetSelectedPaths( + mWkInfo.ClientPath, + mAssetSelection.GetSelectedAssets()); + + string[] rules = FilterRulesGenerator.GenerateRules( + selectedPaths, mWkInfo.ClientPath, action, operation); + + bool isApplicableToAllWorkspaces = !mIsGluonMode; + bool isAddOperation = operation == FilterOperationType.Add; + + FilterRulesConfirmationData filterRulesConfirmationData = + FilterRulesConfirmationDialog.AskForConfirmation( + rules, isAddOperation, isApplicableToAllWorkspaces, mParentWindow); + + AddFilesFilterPatternsOperation.Run( + mWkInfo, mWorkspaceWindow, type, operation, filterRulesConfirmationData); + } + + static string GetSymbolicName(string selectedPath) + { + WorkspaceTreeNode node = PlasticGui.Plastic.API. + GetWorkspaceTreeNode(selectedPath); + + string branchName = string.Empty; + BranchInfoCache.TryGetBranchName( + node.RepSpec, node.RevInfo.BranchId, out branchName); + + string userName = PlasticGui.Plastic.API.GetUserName( + node.RepSpec.Server, node.RevInfo.Owner); + + string symbolicName = string.Format( + "cs:{0}@{1} {2} {3}", + node.RevInfo.Changeset, + string.Format("br:{0}", branchName), + userName, + "Workspace Revision"); + + return symbolicName; + } + + readonly WorkspaceInfo mWkInfo; + readonly IViewSwitcher mViewSwitcher; + readonly IHistoryViewLauncher mHistoryViewLauncher; + readonly IWorkspaceWindow mWorkspaceWindow; + readonly ViewHost mViewHost; + readonly NewIncomingChangesUpdater mNewIncomingChangesUpdater; + readonly IAssetStatusCache mAssetStatusCache; + readonly IMergeViewLauncher mMergeViewLauncher; + readonly IGluonViewSwitcher mGluonViewSwitcher; + readonly bool mIsGluonMode; + readonly GuiMessage.IGuiMessage mGuiMessage; + readonly EditorProgressControls mProgressControls; + readonly EditorWindow mParentWindow; + readonly IAssetSelection mAssetSelection; + readonly LaunchTool.IShowDownloadPlasticExeWindow mShowDownloadPlasticExeWindow; + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetOperations.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetOperations.cs.meta new file mode 100644 index 00000000..d6ca916e --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetOperations.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2c8b452bcd72d8248a3297ff656f0a7a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetsSelection.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetsSelection.cs new file mode 100644 index 00000000..2b5174e7 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetsSelection.cs @@ -0,0 +1,141 @@ +using System.Collections.Generic; +using System.IO; + +using UnityEditor.VersionControl; + +using PlasticGui.WorkspaceWindow.Items; +using Unity.PlasticSCM.Editor.AssetsOverlays; +using Unity.PlasticSCM.Editor.AssetsOverlays.Cache; +using Unity.PlasticSCM.Editor.AssetUtils; + +namespace Unity.PlasticSCM.Editor.AssetMenu +{ + internal static class AssetsSelection + { + internal static Asset GetSelectedAsset( + string wkPath, + AssetList assetList) + { + if (assetList.Count == 0) + return null; + + foreach (Asset asset in assetList) + { + if (AssetsPath.GetFullPathUnderWorkspace. + ForAsset(wkPath, asset.path) == null) + continue; + + return asset; + } + + return null; + } + + internal static string GetSelectedPath( + string wkPath, + AssetList assetList) + { + Asset result = GetSelectedAsset(wkPath, assetList); + + if (result == null) + return null; + + return Path.GetFullPath(result.path); + } + + internal static List GetSelectedPaths( + string wkPath, + AssetList assetList) + { + List result = new List(); + + foreach (Asset asset in assetList) + { + string fullPath = AssetsPath.GetFullPathUnderWorkspace. + ForAsset(wkPath, asset.path); + + if (fullPath == null) + continue; + + result.Add(fullPath); + } + + return result; + } + + internal static SelectedPathsGroupInfo GetSelectedPathsGroupInfo( + string wkPath, + AssetList assetList, + IAssetStatusCache statusCache) + { + SelectedPathsGroupInfo result = new SelectedPathsGroupInfo(); + + if (assetList.Count == 0) + return result; + + result.IsRootSelected = false; + result.IsCheckedoutEverySelected = true; + result.IsDirectoryEverySelected = true; + result.IsCheckedinEverySelected = true; + result.IsChangedEverySelected = true; + + foreach (Asset asset in assetList) + { + string fullPath = AssetsPath.GetFullPathUnderWorkspace. + ForAsset(wkPath, asset.path); + + if (fullPath == null) + continue; + + if (MetaPath.IsMetaPath(fullPath)) + fullPath = MetaPath.GetPathFromMetaPath(fullPath); + + AssetStatus status = statusCache.GetStatus(fullPath); + string assetName = GetAssetName(asset); + + result.IsCheckedoutEverySelected &= ClassifyAssetStatus.IsCheckedOut(status); + result.IsDirectoryEverySelected &= asset.isFolder; + result.IsCheckedinEverySelected &= false; // TODO: not implemented yet + result.IsChangedEverySelected &= false; // TODO: not implemented yet + + result.IsAnyDirectorySelected |= asset.isFolder; + result.IsAnyPrivateSelected |= ClassifyAssetStatus.IsPrivate(status); + + result.FilterInfo.IsAnyIgnoredSelected |= ClassifyAssetStatus.IsIgnored(status); + result.FilterInfo.IsAnyHiddenChangedSelected |= ClassifyAssetStatus.IsHiddenChanged(status); + + result.SelectedCount++; + + if (result.SelectedCount == 1) + { + result.FirstIsControlled = ClassifyAssetStatus.IsControlled(status); + result.FirstIsDirectory = asset.isFolder; + + result.FilterInfo.CommonName = assetName; + result.FilterInfo.CommonExtension = Path.GetExtension(assetName); + result.FilterInfo.CommonFullPath = asset.assetPath; + continue; + } + + if (result.FilterInfo.CommonName != assetName) + result.FilterInfo.CommonName = null; + + if (result.FilterInfo.CommonExtension != Path.GetExtension(assetName)) + result.FilterInfo.CommonExtension = null; + + if (result.FilterInfo.CommonFullPath != asset.assetPath) + result.FilterInfo.CommonFullPath = null; + } + + return result; + } + + static string GetAssetName(Asset asset) + { + if (asset.isFolder) + return Path.GetFileName(Path.GetDirectoryName(asset.path)); + + return asset.fullName; + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetsSelection.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetsSelection.cs.meta new file mode 100644 index 00000000..314aee89 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/AssetsSelection.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1686ac2e1d109ed43bf2dec74fed784f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs.meta new file mode 100644 index 00000000..8148c12a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f5d6c6c129fff0140a040d43aedb9547 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialog.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialog.cs new file mode 100644 index 00000000..d441a181 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialog.cs @@ -0,0 +1,383 @@ +using System; +using System.Collections.Generic; +using System.IO; + +using UnityEditor; +using UnityEngine; + +using Codice.Client.BaseCommands.EventTracking; +using Codice.Client.Common; +using Codice.CM.Common; +using GluonGui; +using PlasticGui; +using PlasticGui.Gluon; + +using Unity.PlasticSCM.Editor.AssetsOverlays; +using Unity.PlasticSCM.Editor.AssetsOverlays.Cache; +using Unity.PlasticSCM.Editor.AssetUtils; +using Unity.PlasticSCM.Editor.UI; +using Unity.PlasticSCM.Editor.UI.Progress; +using Unity.PlasticSCM.Editor.UI.Tree; + +namespace Unity.PlasticSCM.Editor.AssetMenu.Dialogs +{ + internal class CheckinDialog : PlasticDialog + { + protected override Rect DefaultRect + { + get + { + var baseRect = base.DefaultRect; + return new Rect(baseRect.x, baseRect.y, 700, 450); + } + } + + protected override string GetTitle() + { + return PlasticLocalization.GetString( + PlasticLocalization.Name.CheckinChanges); + } + + internal static bool CheckinPaths( + WorkspaceInfo wkInfo, + List paths, + IAssetStatusCache assetStatusCache, + bool isGluonMode, + EditorWindow parentWindow, + IWorkspaceWindow workspaceWindow, + ViewHost viewHost, + GuiMessage.IGuiMessage guiMessage, + IMergeViewLauncher mergeViewLauncher, + IGluonViewSwitcher gluonViewSwitcher) + { + MetaCache metaCache = new MetaCache(); + metaCache.Build(paths); + + CheckinDialog dialog = Create( + wkInfo, + paths, + assetStatusCache, + metaCache, + isGluonMode, + new ProgressControlsForDialogs(), + workspaceWindow, + viewHost, + guiMessage, + mergeViewLauncher, + gluonViewSwitcher); + + return dialog.RunModal(parentWindow) == ResponseType.Ok; + } + + protected override void OnModalGUI() + { + Title(PlasticLocalization.GetString( + PlasticLocalization.Name.CheckinComment)); + + GUI.SetNextControlName(CHECKIN_TEXTAREA_NAME); + + mComment = GUILayout.TextArea( + mComment, + EditorStyles.textArea, + GUILayout.MinHeight(120)); + + if (!mTextAreaFocused) + { + EditorGUI.FocusTextInControl(CHECKIN_TEXTAREA_NAME); + mTextAreaFocused = true; + } + + Title(PlasticLocalization.GetString(PlasticLocalization.Name.Files)); + + DoFileList( + mWkInfo, + mPaths, + mAssetStatusCache, + mMetaCache); + + DrawProgressForDialogs.For( + mProgressControls.ProgressData); + + DoButtonsArea(); + + mProgressControls.ForcedUpdateProgress(this); + } + + void DoFileList( + WorkspaceInfo wkInfo, + List paths, + IAssetStatusCache assetStatusCache, + MetaCache metaCache) + { + mFileListScrollPosition = GUILayout.BeginScrollView( + mFileListScrollPosition, + EditorStyles.helpBox, + GUILayout.ExpandHeight(true)); + + foreach (string path in paths) + { + if (MetaPath.IsMetaPath(path)) + continue; + + Texture fileIcon = Directory.Exists(path) ? + Images.GetDirectoryIcon() : + Images.GetFileIcon(path); + + string label = WorkspacePath.GetWorkspaceRelativePath( + wkInfo.ClientPath, path); + + if (metaCache.HasMeta(path)) + label = string.Concat(label, UnityConstants.TREEVIEW_META_LABEL); + + AssetsOverlays.AssetStatus assetStatus = + assetStatusCache.GetStatus(path); + + Rect selectionRect = EditorGUILayout.GetControlRect(); + + DoListViewItem(selectionRect, fileIcon, label, assetStatus); + } + + GUILayout.EndScrollView(); + } + + void DoListViewItem( + Rect itemRect, + Texture fileIcon, + string label, + AssetsOverlays.AssetStatus statusToDraw) + { + Texture overlayIcon = DrawAssetOverlay.DrawOverlayIcon. + GetOverlayIcon(statusToDraw); + + itemRect = DrawTreeViewItem.DrawIconLeft( + itemRect, + UnityConstants.TREEVIEW_ROW_HEIGHT, + fileIcon, + overlayIcon); + + GUI.Label(itemRect, label); + } + + void DoButtonsArea() + { + using (new EditorGUILayout.HorizontalScope()) + { + GUILayout.FlexibleSpace(); + + if (Application.platform == RuntimePlatform.WindowsEditor) + { + DoCheckinButton(); + DoCancelButton(); + return; + } + + DoCancelButton(); + DoCheckinButton(); + } + } + + void DoCheckinButton() + { + GUI.enabled = !string.IsNullOrEmpty(mComment) && !mIsRunningCheckin; + + try + { + if (!AcceptButton(PlasticLocalization.GetString( + PlasticLocalization.Name.CheckinButton))) + return; + } + finally + { + if (!mSentCheckinTrackEvent) + { + TrackFeatureUseEvent.For( + PlasticGui.Plastic.API.GetRepositorySpec(mWkInfo), + TrackFeatureUseEvent.Features.ContextMenuCheckinDialogCheckin); + + mSentCheckinTrackEvent = true; + } + + GUI.enabled = true; + } + + OkButtonWithCheckinAction(); + } + + void DoCancelButton() + { + if (!NormalButton(PlasticLocalization.GetString( + PlasticLocalization.Name.CancelButton))) + return; + + if (!mSentCancelTrackEvent) + { + TrackFeatureUseEvent.For( + PlasticGui.Plastic.API.GetRepositorySpec(mWkInfo), + TrackFeatureUseEvent.Features.ContextMenuCheckinDialogCancel); + + mSentCancelTrackEvent = true; + } + + CancelButtonAction(); + } + + void OkButtonWithCheckinAction() + { + bool isCancelled; + SaveAssets.ForPathsWithConfirmation(mPaths, out isCancelled); + + if (isCancelled) + return; + + mIsRunningCheckin = true; + + mPaths.AddRange(mMetaCache.GetExistingMeta(mPaths)); + + if (mIsGluonMode) + { + CheckinDialogOperations.CheckinPathsPartial( + mWkInfo, + mPaths, + mComment, + mViewHost, + this, + mGuiMessage, + mProgressControls, + mGluonViewSwitcher); + return; + } + + CheckinDialogOperations.CheckinPaths( + mWkInfo, + mPaths, + mComment, + mWorkspaceWindow, + this, + mGuiMessage, + mProgressControls, + mMergeViewLauncher); + } + + static CheckinDialog Create( + WorkspaceInfo wkInfo, + List paths, + IAssetStatusCache assetStatusCache, + MetaCache metaCache, + bool isGluonMode, + ProgressControlsForDialogs progressControls, + IWorkspaceWindow workspaceWindow, + ViewHost viewHost, + GuiMessage.IGuiMessage guiMessage, + IMergeViewLauncher mergeViewLauncher, + IGluonViewSwitcher gluonViewSwitcher) + { + var instance = CreateInstance(); + instance.IsResizable = true; + instance.minSize = new Vector2(520, 370); + instance.mWkInfo = wkInfo; + instance.mPaths = paths; + instance.mAssetStatusCache = assetStatusCache; + instance.mMetaCache = metaCache; + instance.mIsGluonMode = isGluonMode; + instance.mProgressControls = progressControls; + instance.mWorkspaceWindow = workspaceWindow; + instance.mViewHost = viewHost; + instance.mGuiMessage = guiMessage; + instance.mMergeViewLauncher = mergeViewLauncher; + instance.mGluonViewSwitcher = gluonViewSwitcher; + instance.mEscapeKeyAction = instance.CancelButtonAction; + return instance; + } + + WorkspaceInfo mWkInfo; + List mPaths; + IAssetStatusCache mAssetStatusCache; + MetaCache mMetaCache; + bool mIsGluonMode; + bool mTextAreaFocused; + string mComment; + + bool mIsRunningCheckin; + Vector2 mFileListScrollPosition; + + // IMGUI evaluates every frame, need to make sure feature tracks get sent only once + bool mSentCheckinTrackEvent = false; + bool mSentCancelTrackEvent = false; + + ProgressControlsForDialogs mProgressControls; + + IWorkspaceWindow mWorkspaceWindow; + ViewHost mViewHost; + IMergeViewLauncher mMergeViewLauncher; + IGluonViewSwitcher mGluonViewSwitcher; + GuiMessage.IGuiMessage mGuiMessage; + + const string CHECKIN_TEXTAREA_NAME = "checkin_textarea"; + + class MetaCache + { + internal bool HasMeta(string path) + { + return mCache.Contains(MetaPath.GetMetaPath(path)); + } + + internal List GetExistingMeta(List paths) + { + List result = new List(); + + foreach (string path in paths) + { + string metaPath = MetaPath.GetMetaPath(path); + + if (!mCache.Contains(metaPath)) + continue; + + result.Add(metaPath); + } + + return result; + } + + internal void Build(List paths) + { + HashSet indexedKeys = BuildIndexedKeys(paths); + + for (int i = paths.Count - 1; i >= 0; i--) + { + string currentPath = paths[i]; + + if (!MetaPath.IsMetaPath(currentPath)) + continue; + + string realPath = MetaPath.GetPathFromMetaPath(currentPath); + + if (!indexedKeys.Contains(realPath)) + continue; + + // found foo.c and foo.c.meta + // with the same chage types - move .meta to cache + mCache.Add(currentPath); + paths.RemoveAt(i); + } + } + + static HashSet BuildIndexedKeys(List paths) + { + HashSet result = new HashSet(); + + foreach (string path in paths) + { + if (MetaPath.IsMetaPath(path)) + continue; + + result.Add(path); + } + + return result; + } + + HashSet mCache = + new HashSet(); + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialog.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialog.cs.meta new file mode 100644 index 00000000..207c66f9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialog.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 678db227e4ffec949980d309c0532b08 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialogOperations.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialogOperations.cs new file mode 100644 index 00000000..684c07ef --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialogOperations.cs @@ -0,0 +1,143 @@ +using System; +using System.Collections.Generic; + +using Codice.Client.BaseCommands; +using Codice.Client.Commands.CheckIn; +using Codice.Client.Common; +using Codice.Client.Common.Threading; +using Codice.Client.GameUI.Checkin; +using Codice.CM.Common; + +using GluonGui; + +using PlasticGui; +using PlasticGui.Gluon; +using PlasticGui.WorkspaceWindow.PendingChanges; + +namespace Unity.PlasticSCM.Editor.AssetMenu.Dialogs +{ + internal static class CheckinDialogOperations + { + internal static void CheckinPaths( + WorkspaceInfo wkInfo, + List paths, + string comment, + IWorkspaceWindow workspaceWindow, + CheckinDialog dialog, + GuiMessage.IGuiMessage guiMessage, + IProgressControls progressControls, + IMergeViewLauncher mergeViewLauncher) + { + BaseCommandsImpl baseCommands = new BaseCommandsImpl(); + + progressControls.ShowProgress("Checkin in files"); + + IThreadWaiter waiter = ThreadWaiter.GetWaiter(50); + waiter.Execute( + /*threadOperationDelegate*/ delegate + { + CheckinParams ciParams = new CheckinParams(); + ciParams.paths = paths.ToArray(); + ciParams.comment = comment; + ciParams.time = DateTime.MinValue; + ciParams.flags = CheckinFlags.Recurse | CheckinFlags.ProcessSymlinks; + + baseCommands.CheckIn(ciParams); + }, + /*afterOperationDelegate*/ delegate + { + progressControls.HideProgress(); + ((IPlasticDialogCloser)dialog).CloseDialog(); + + if (waiter.Exception is CmClientMergeNeededException) + { + // we need to explicitly call EditorWindow.Close() to ensure + // that the dialog is closed before asking the user + dialog.Close(); + + if (!UserWantsToShowIncomingView(guiMessage)) + return; + + ShowIncomingChanges.FromCheckin( + wkInfo, + mergeViewLauncher, + progressControls); + + return; + } + + if (waiter.Exception != null) + { + ExceptionsHandler.DisplayException(waiter.Exception); + return; + } + + workspaceWindow.RefreshView(ViewType.PendingChangesView); + workspaceWindow.RefreshView(ViewType.HistoryView); + }); + } + + internal static void CheckinPathsPartial( + WorkspaceInfo wkInfo, + List paths, + string comment, + ViewHost viewHost, + CheckinDialog dialog, + GuiMessage.IGuiMessage guiMessage, + IProgressControls progressControls, + IGluonViewSwitcher gluonViewSwitcher) + { + BaseCommandsImpl baseCommands = new BaseCommandsImpl(); + + progressControls.ShowProgress(PlasticLocalization.GetString( + PlasticLocalization.Name.CheckinInFilesProgress)); + + IThreadWaiter waiter = ThreadWaiter.GetWaiter(50); + waiter.Execute( + /*threadOperationDelegate*/ delegate + { + baseCommands.PartialCheckin(wkInfo, paths, comment); + }, + /*afterOperationDelegate*/ delegate + { + progressControls.HideProgress(); + + ((IPlasticDialogCloser)dialog).CloseDialog(); + + if (waiter.Exception is CheckinConflictsException) + { + // we need to explicitly call EditorWindow.Close() to ensure + // that the dialog is closed before asking the user + dialog.Close(); + + if (!UserWantsToShowIncomingView(guiMessage)) + return; + + gluonViewSwitcher.ShowIncomingChangesView(); + return; + } + + if (waiter.Exception != null) + { + ExceptionsHandler.DisplayException(waiter.Exception); + return; + } + + viewHost.RefreshView(ViewType.CheckinView); + viewHost.RefreshView(ViewType.HistoryView); + }); + } + + static bool UserWantsToShowIncomingView(GuiMessage.IGuiMessage guiMessage) + { + GuiMessage.GuiMessageResponseButton result = guiMessage.ShowQuestion( + PlasticLocalization.GetString(PlasticLocalization.Name.CheckinConflictsTitle), + PlasticLocalization.GetString(PlasticLocalization.Name.UnityCheckinConflictsExplanation), + PlasticLocalization.GetString(PlasticLocalization.Name.CheckinShowIncomingChangesView), + PlasticLocalization.GetString(PlasticLocalization.Name.CancelButton), + null); + + return result == GuiMessage.GuiMessageResponseButton.Positive; + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialogOperations.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialogOperations.cs.meta new file mode 100644 index 00000000..13761abf --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/Dialogs/CheckinDialogOperations.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c44a2ac668da0a04d9e567739215b2eb +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/ProjectViewAssetSelection.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/ProjectViewAssetSelection.cs new file mode 100644 index 00000000..a1285323 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/ProjectViewAssetSelection.cs @@ -0,0 +1,61 @@ +using System; + +using UnityEditor; +using UnityEditor.VersionControl; + +using Unity.PlasticSCM.Editor.AssetUtils; + +namespace Unity.PlasticSCM.Editor.AssetMenu +{ + internal class ProjectViewAssetSelection : AssetOperations.IAssetSelection + { + internal ProjectViewAssetSelection(Action assetSelectionChangedAction) + { + mAssetSelectionChangedAction = assetSelectionChangedAction; + + Selection.selectionChanged += SelectionChanged; + } + + internal void Dispose() + { + Selection.selectionChanged -= SelectionChanged; + } + + void SelectionChanged() + { + // Selection.selectionChanged gets triggered on both + // project view and scene view. We only want to trigger + // the action if user selects on project view (has assets) + if (HasSelectedAssets()) + mAssetSelectionChangedAction(); + } + + AssetList AssetOperations.IAssetSelection.GetSelectedAssets() + { + if (Selection.assetGUIDs.Length == 0) + return new AssetList(); + + AssetList result = new AssetList(); + + foreach (string guid in Selection.assetGUIDs) + { + string assetPath = AssetsPath.GetFullPath.ForGuid(guid); + + if (string.IsNullOrEmpty(assetPath)) + continue; + + result.Add(new Asset(assetPath)); + } + + return result; + } + + bool HasSelectedAssets() + { + // Objects in project view have GUIDs, objects in scene view don't + return Selection.assetGUIDs.Length > 0; + } + + Action mAssetSelectionChangedAction; + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/ProjectViewAssetSelection.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/ProjectViewAssetSelection.cs.meta new file mode 100644 index 00000000..d9c9ac9b --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetMenu/ProjectViewAssetSelection.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b8a49294ba135a2408fd1b26bcda6f97 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays.meta new file mode 100644 index 00000000..5ae28412 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 491c192b16f732b4983b4a539908ad32 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/AssetStatus.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/AssetStatus.cs new file mode 100644 index 00000000..46f22d6f --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/AssetStatus.cs @@ -0,0 +1,102 @@ +using System; + +namespace Unity.PlasticSCM.Editor.AssetsOverlays +{ + [Flags] + internal enum AssetStatus + { + None = 0, + Private = 1 << 0, + Ignored = 1 << 2, + Added = 1 << 3, + Checkout = 1 << 4, + Controlled = 1 << 5, + UpToDate = 1 << 6, + OutOfDate = 1 << 7, + Conflicted = 1 << 8, + DeletedOnServer = 1 << 9, + Locked = 1 << 10, + LockedRemote = 1 << 11, + HiddenChanged = 1 << 12, + } + + internal class LockStatusData + { + internal readonly AssetStatus Status; + internal readonly string LockedBy; + internal readonly string WorkspaceName; + + internal LockStatusData( + AssetStatus status, + string lockedBy, + string workspaceName) + { + Status = status; + LockedBy = lockedBy; + WorkspaceName = workspaceName; + } + } + + internal class ClassifyAssetStatus + { + internal static bool IsPrivate(AssetStatus status) + { + return ContainsAny(status, AssetStatus.Private); + } + + internal static bool IsIgnored(AssetStatus status) + { + return ContainsAny(status, AssetStatus.Ignored); + } + + internal static bool IsControlled(AssetStatus status) + { + return ContainsAny(status, AssetStatus.Controlled); + } + + internal static bool IsLocked(AssetStatus status) + { + return ContainsAny(status, AssetStatus.Locked); + } + + internal static bool IsLockedRemote(AssetStatus status) + { + return ContainsAny(status, AssetStatus.LockedRemote); + } + + internal static bool IsOutOfDate(AssetStatus status) + { + return ContainsAny(status, AssetStatus.OutOfDate); + } + + internal static bool IsDeletedOnServer(AssetStatus status) + { + return ContainsAny(status, AssetStatus.DeletedOnServer); + } + + internal static bool IsConflicted(AssetStatus status) + { + return ContainsAny(status, AssetStatus.Conflicted); + } + + internal static bool IsAdded(AssetStatus status) + { + return ContainsAny(status, AssetStatus.Added); + } + + internal static bool IsCheckedOut(AssetStatus status) + { + return ContainsAny(status, AssetStatus.Checkout); + } + + internal static bool IsHiddenChanged(AssetStatus status) + { + return ContainsAny(status, AssetStatus.HiddenChanged); + } + + static bool ContainsAny(AssetStatus status, AssetStatus matchTo) + { + return (status & matchTo) != AssetStatus.None; + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/AssetStatus.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/AssetStatus.cs.meta new file mode 100644 index 00000000..602a0a95 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/AssetStatus.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 062535eac3e5dd1409b6a50b0d043e2c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache.meta new file mode 100644 index 00000000..1001b1eb --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6a94a55dca335c547ac65bd4b85d2a55 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/AssetStatusCache.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/AssetStatusCache.cs new file mode 100644 index 00000000..8ee7325d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/AssetStatusCache.cs @@ -0,0 +1,60 @@ +using Codice.CM.Common; + +namespace Unity.PlasticSCM.Editor.AssetsOverlays.Cache +{ + internal interface IAssetStatusCache + { + AssetStatus GetStatus(string fullPath); + LockStatusData GetLockStatusData(string fullPath); + void Clear(); + } + + internal class AssetStatusCache : IAssetStatusCache + { + internal AssetStatusCache( + WorkspaceInfo wkInfo, + bool isGluonMode) + { + mLocalStatusCache = new LocalStatusCache(wkInfo); + + mRemoteStatusCache = new RemoteStatusCache( + wkInfo, + isGluonMode, + ProjectWindow.Repaint); + + mLockStatusCache = new LockStatusCache( + wkInfo, + ProjectWindow.Repaint); + } + + AssetStatus IAssetStatusCache.GetStatus(string fullPath) + { + AssetStatus localStatus = mLocalStatusCache.GetStatus(fullPath); + + if (!ClassifyAssetStatus.IsControlled(localStatus)) + return localStatus; + + AssetStatus remoteStatus = mRemoteStatusCache.GetStatus(fullPath); + + AssetStatus lockStatus = mLockStatusCache.GetStatus(fullPath); + + return localStatus | remoteStatus | lockStatus; + } + + LockStatusData IAssetStatusCache.GetLockStatusData(string fullPath) + { + return mLockStatusCache.GetLockStatusData(fullPath); + } + + void IAssetStatusCache.Clear() + { + mLocalStatusCache.Clear(); + mRemoteStatusCache.Clear(); + mLockStatusCache.Clear(); + } + + readonly LocalStatusCache mLocalStatusCache; + readonly RemoteStatusCache mRemoteStatusCache; + readonly LockStatusCache mLockStatusCache; + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/AssetStatusCache.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/AssetStatusCache.cs.meta new file mode 100644 index 00000000..101a0005 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/AssetStatusCache.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 3f227b28cf424364489edd67fce697bc +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/BuildPathDictionary.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/BuildPathDictionary.cs new file mode 100644 index 00000000..b655ac65 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/BuildPathDictionary.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; + +using Codice.Utils; + +namespace Unity.PlasticSCM.Editor.AssetsOverlays.Cache +{ + internal static class BuildPathDictionary + { + internal static Dictionary ForPlatform() + { + if (PlatformIdentifier.IsWindows()) + return new Dictionary( + StringComparer.OrdinalIgnoreCase); + + return new Dictionary(); + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/BuildPathDictionary.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/BuildPathDictionary.cs.meta new file mode 100644 index 00000000..4a3cb1a2 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/BuildPathDictionary.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9c963b5d17c74314eb7105e71377cdb8 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LocalStatusCache.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LocalStatusCache.cs new file mode 100644 index 00000000..d17ba1ad --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LocalStatusCache.cs @@ -0,0 +1,75 @@ +using System.Collections.Generic; + +using Codice; +using Codice.Client.BaseCommands; +using Codice.Client.Commands.WkTree; +using Codice.CM.Common; +using PlasticGui.WorkspaceWindow; + +namespace Unity.PlasticSCM.Editor.AssetsOverlays.Cache +{ + internal class LocalStatusCache + { + internal LocalStatusCache(WorkspaceInfo wkInfo) + { + mWkInfo = wkInfo; + } + + internal AssetStatus GetStatus(string fullPath) + { + AssetStatus result; + + if (mStatusByPathCache.TryGetValue(fullPath, out result)) + return result; + + result = CalculateStatus( + fullPath, + mWkInfo.ClientPath, + FilterManager.Get().GetIgnoredFilter(), + FilterManager.Get().GetHiddenChangesFilter()); + + mStatusByPathCache.Add(fullPath, result); + + return result; + } + + internal void Clear() + { + mStatusByPathCache.Clear(); + } + + static AssetStatus CalculateStatus( + string fullPath, + string wkPath, + IgnoredFilesFilter ignoredFilter, + HiddenChangesFilesFilter hiddenChangesFilter) + { + WorkspaceTreeNode treeNode = PlasticGui.Plastic.API.GetWorkspaceTreeNode(fullPath); + + if (CheckWorkspaceTreeNodeStatus.IsPrivate(treeNode)) + { + return ignoredFilter.IsIgnored(fullPath) ? + AssetStatus.Ignored : AssetStatus.Private; + } + + if (CheckWorkspaceTreeNodeStatus.IsAdded(treeNode)) + return AssetStatus.Added; + + AssetStatus result = AssetStatus.Controlled; + + if (CheckWorkspaceTreeNodeStatus.IsCheckedOut(treeNode) && + !CheckWorkspaceTreeNodeStatus.IsDirectory(treeNode)) + result |= AssetStatus.Checkout; + + if (hiddenChangesFilter.IsHiddenChanged(fullPath)) + result |= AssetStatus.HiddenChanged; + + return result; + } + + Dictionary mStatusByPathCache = + BuildPathDictionary.ForPlatform(); + + readonly WorkspaceInfo mWkInfo; + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LocalStatusCache.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LocalStatusCache.cs.meta new file mode 100644 index 00000000..a52983fd --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LocalStatusCache.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 226459a134855504d841db6b61519d2b +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LockStatusCache.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LockStatusCache.cs new file mode 100644 index 00000000..e68d46f4 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LockStatusCache.cs @@ -0,0 +1,220 @@ +using System; +using System.Collections.Generic; + +using Codice; +using Codice.Client.BaseCommands; +using Codice.Client.Commands.WkTree; +using Codice.Client.Common; +using Codice.Client.Common.Locks; +using Codice.Client.Common.Threading; +using Codice.Client.Common.WkTree; +using Codice.CM.Common; +using Codice.Utils; + +namespace Unity.PlasticSCM.Editor.AssetsOverlays.Cache +{ + internal class LockStatusCache + { + internal LockStatusCache( + WorkspaceInfo wkInfo, + Action repaintProjectWindow) + { + mWkInfo = wkInfo; + mRepaintProjectWindow = repaintProjectWindow; + } + + internal AssetStatus GetStatus(string fullPath) + { + LockStatusData lockStatusData = GetLockStatusData(fullPath); + + if (lockStatusData == null) + return AssetStatus.None; + + return lockStatusData.Status; + } + + internal LockStatusData GetLockStatusData(string fullPath) + { + lock (mLock) + { + if (mStatusByPathCache == null) + { + mStatusByPathCache = BuildPathDictionary.ForPlatform(); + + mCurrentCancelToken.Cancel(); + mCurrentCancelToken = new CancelToken(); + AsyncCalculateStatus(mCurrentCancelToken); + + return null; + } + + LockStatusData result; + + if (mStatusByPathCache.TryGetValue(fullPath, out result)) + return result; + + return null; + } + } + + internal void Clear() + { + lock (mLock) + { + mCurrentCancelToken.Cancel(); + + mStatusByPathCache = null; + } + } + + void AsyncCalculateStatus(CancelToken cancelToken) + { + Dictionary statusByPathCache = null; + + IThreadWaiter waiter = ThreadWaiter.GetWaiter(50); + waiter.Execute( + /*threadOperationDelegate*/ delegate + { + + Dictionary> lockCandidates = + new Dictionary>(); + + FillLockCandidates.ForTree(mWkInfo, lockCandidates); + + if (cancelToken.IsCancelled()) + return; + + Dictionary lockInfoByNode = + SearchLocks.GetLocksInfo(mWkInfo, lockCandidates); + + if (cancelToken.IsCancelled()) + return; + + statusByPathCache = BuildStatusByNodeCache. + ForLocks(mWkInfo.ClientPath, lockInfoByNode); + }, + /*afterOperationDelegate*/ delegate + { + if (waiter.Exception != null) + { + ExceptionsHandler.LogException( + "LockStatusCache", + waiter.Exception); + return; + } + + if (cancelToken.IsCancelled()) + return; + + lock (mLock) + { + mStatusByPathCache = statusByPathCache; + } + + mRepaintProjectWindow(); + }); + } + + static class FillLockCandidates + { + internal static void ForTree( + WorkspaceInfo wkInfo, + Dictionary> lockCandidates) + { + WorkspaceTreeNode rootNode = CmConnection.Get().GetWorkspaceTreeHandler(). + GetWorkspaceTree(wkInfo, wkInfo.ClientPath, true); + + Queue pendingDirectories = new Queue(); + pendingDirectories.Enqueue(rootNode); + + while (pendingDirectories.Count > 0) + { + WorkspaceTreeNode directoryNode = pendingDirectories.Dequeue(); + + ForChildren(directoryNode, pendingDirectories, lockCandidates); + } + } + + static void ForChildren( + WorkspaceTreeNode directoryNode, + Queue pendingDirectories, + Dictionary> lockCandidates) + { + if (!directoryNode.HasChildren) + return; + + foreach (WorkspaceTreeNode child in directoryNode.Children) + { + if (CheckWorkspaceTreeNodeStatus.IsDirectory(child)) + { + pendingDirectories.Enqueue(child); + continue; + } + + if (CheckWorkspaceTreeNodeStatus.IsAdded(child)) + continue; + + List nodes = null; + if (!lockCandidates.TryGetValue(child.RepSpec, out nodes)) + { + nodes = new List(); + lockCandidates.Add(child.RepSpec, nodes); + } + + nodes.Add(child); + } + } + } + + static class BuildStatusByNodeCache + { + internal static Dictionary ForLocks( + string wkPath, + Dictionary lockInfoByNode) + { + Dictionary result = + BuildPathDictionary.ForPlatform(); + + LockOwnerNameResolver nameResolver = new LockOwnerNameResolver(); + + foreach (WorkspaceTreeNode node in lockInfoByNode.Keys) + { + LockStatusData lockStatusData = BuildLockStatusData( + node, lockInfoByNode[node], nameResolver); + + string nodeWkPath = WorkspacePath.GetWorkspacePathFromCmPath( + wkPath, + WorkspaceNodeOperations.GetCmPath(node), + PathHelper.GetDirectorySeparatorChar(wkPath)); + + result.Add(nodeWkPath, lockStatusData); + } + + return result; + } + + static LockStatusData BuildLockStatusData( + WorkspaceTreeNode node, + LockInfo lockInfo, + LockOwnerNameResolver nameResolver) + { + AssetStatus status = CheckWorkspaceTreeNodeStatus.IsCheckedOut(node) ? + AssetStatus.Locked : AssetStatus.LockedRemote; + + return new LockStatusData( + status, + nameResolver.GetSeidName(lockInfo.SEIDData), + LockWkInfo.GetWkCleanName(lockInfo)); + } + } + + CancelToken mCurrentCancelToken = new CancelToken(); + + Dictionary mStatusByPathCache; + + readonly WorkspaceInfo mWkInfo; + readonly Action mRepaintProjectWindow; + + static object mLock = new object(); + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LockStatusCache.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LockStatusCache.cs.meta new file mode 100644 index 00000000..d3ccaddd --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/LockStatusCache.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 953c29d2e0dece647a64940343c91547 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/RemoteStatusCache.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/RemoteStatusCache.cs new file mode 100644 index 00000000..5e198beb --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/RemoteStatusCache.cs @@ -0,0 +1,177 @@ +using System; +using System.Collections.Generic; + +using Codice.Client.BaseCommands; +using Codice.Client.Commands; +using Codice.Client.Common; +using Codice.Client.Common.Threading; +using Codice.Client.GameUI; +using Codice.Client.GameUI.Update; +using Codice.CM.Common; +using Codice.CM.Common.Merge; +using Codice.Utils; +using GluonGui.WorkspaceWindow.Views; + +namespace Unity.PlasticSCM.Editor.AssetsOverlays.Cache +{ + internal class RemoteStatusCache + { + internal RemoteStatusCache( + WorkspaceInfo wkInfo, + bool isGluonMode, + Action repaintProjectWindow) + { + mWkInfo = wkInfo; + mIsGluonMode = isGluonMode; + mRepaintProjectWindow = repaintProjectWindow; + } + + internal AssetStatus GetStatus(string fullPath) + { + if (!mIsGluonMode) + return AssetStatus.UpToDate; + + lock(mLock) + { + if (mStatusByPathCache == null) + { + mStatusByPathCache = BuildPathDictionary.ForPlatform(); + + mCurrentCancelToken.Cancel(); + mCurrentCancelToken = new CancelToken(); + AsyncCalculateStatus(mCurrentCancelToken); + + return AssetStatus.UpToDate; + } + + AssetStatus result; + if (mStatusByPathCache.TryGetValue(fullPath, out result)) + return result; + + return AssetStatus.UpToDate; + } + } + + internal void Clear() + { + lock (mLock) + { + mCurrentCancelToken.Cancel(); + mStatusByPathCache = null; + } + } + + void AsyncCalculateStatus(CancelToken cancelToken) + { + Dictionary statusByPathCache = null; + + IThreadWaiter waiter = ThreadWaiter.GetWaiter(50); + waiter.Execute( + /*threadOperationDelegate*/ delegate + { + OutOfDateItems outOfDateItems = + OutOfDateUpdater.CalculateOutOfDateItems( + mWkInfo, new List(), + OutOfDateCalculator.Options.IsIncomingChanges); + + if (cancelToken.IsCancelled()) + return; + + statusByPathCache = BuildStatusByPathCache. + ForOutOfDateItems(outOfDateItems, mWkInfo.ClientPath); + }, + /*afterOperationDelegate*/ delegate + { + if (waiter.Exception != null) + { + ExceptionsHandler.LogException( + "RemoteStatusCache", + waiter.Exception); + return; + } + + if (cancelToken.IsCancelled()) + return; + + lock (mLock) + { + mStatusByPathCache = statusByPathCache; + } + + mRepaintProjectWindow(); + }); + } + + static class BuildStatusByPathCache + { + internal static Dictionary ForOutOfDateItems( + OutOfDateItems outOfDateItems, + string wkPath) + { + Dictionary result = + BuildPathDictionary.ForPlatform(); + + if (outOfDateItems == null) + return result; + + foreach (OutOfDateItemsByMount diffs in + outOfDateItems.GetOutOfDateItemsByMountList()) + { + foreach (Difference diff in diffs.Changed) + { + if (diff is DiffXlinkChanged) + continue; + + string path = GetPathForDiff(wkPath, diffs.Mount, diff.Path); + result.Add(path, AssetStatus.OutOfDate); + } + + foreach (Difference diff in diffs.Deleted) + { + string path = GetPathForDiff(wkPath, diffs.Mount, diff.Path); + result.Add(path, AssetStatus.DeletedOnServer); + } + } + + foreach (GluonFileConflict fileConflict in + outOfDateItems.GetFileConflicts()) + { + string path = GetPathForConflict(wkPath, fileConflict.CmPath); + result.Add(path, AssetStatus.Conflicted); + } + + return result; + } + + static string GetPathForDiff( + string wkPath, + MountPointWithPath mountPoint, + string cmSubPath) + { + return WorkspacePath.GetWorkspacePathFromCmPath( + wkPath, + WorkspacePath.ComposeMountPath(mountPoint.MountPath, cmSubPath), + PathHelper.GetDirectorySeparatorChar(wkPath)); + } + + static string GetPathForConflict( + string wkPath, + string cmPath) + { + return WorkspacePath.GetWorkspacePathFromCmPath( + wkPath, cmPath, + PathHelper.GetDirectorySeparatorChar(wkPath)); + } + } + + CancelToken mCurrentCancelToken = new CancelToken(); + + Dictionary mStatusByPathCache; + + readonly Action mRepaintProjectWindow; + readonly bool mIsGluonMode; + readonly WorkspaceInfo mWkInfo; + + static object mLock = new object(); + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/RemoteStatusCache.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/RemoteStatusCache.cs.meta new file mode 100644 index 00000000..cb8963e6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/RemoteStatusCache.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: a9acb575a60d7e045ad7fadd3e3e137d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/SearchLocks.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/SearchLocks.cs new file mode 100644 index 00000000..9d8be635 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/SearchLocks.cs @@ -0,0 +1,120 @@ +using System; +using System.Collections.Generic; + +using Codice.Client.Commands.WkTree; +using Codice.Client.Common; +using Codice.Client.Common.Locks; +using Codice.Client.Common.WkTree; +using Codice.CM.Common; +using Codice.CM.WorkspaceServer.DataStore.Guids; + +namespace Unity.PlasticSCM.Editor.AssetsOverlays.Cache +{ + internal static class SearchLocks + { + internal static Dictionary GetLocksInfo( + WorkspaceInfo wkInfo, + Dictionary> locksCandidates) + { + Dictionary result = + new Dictionary(); + + Dictionary> locksByItemByServer = + new Dictionary>( + StringComparer.InvariantCultureIgnoreCase); + + foreach (KeyValuePair> each in locksCandidates) + { + FillRepositoryLocks( + wkInfo, each.Key, each.Value, + locksByItemByServer, result); + } + + return result; + } + + static void FillRepositoryLocks( + WorkspaceInfo wkInfo, + RepositorySpec repSpec, + List candidates, + Dictionary> locksByItemByServer, + Dictionary locks) + { + if (candidates.Count == 0) + return; + + LockRule lockRule = ServerLocks.GetLockRule(repSpec); + + if (lockRule == null) + return; + + candidates = GetLockableCandidates(candidates, lockRule); + + if (candidates.Count == 0) + return; + + Dictionary serverlocksByItem = + ServerLocks.GetServerLocksByItem( + repSpec.Server, locksByItemByServer); + + if (serverlocksByItem == null || serverlocksByItem.Count == 0) + return; + + IList candidatesGuids = GetCandidatesGuids( + wkInfo, repSpec, candidates); + + for (int index = 0; index < candidates.Count; index++) + { + LockInfo serverLock; + if (!serverlocksByItem.TryGetValue( + candidatesGuids[index], out serverLock)) + continue; + + locks[candidates[index]] = serverLock; + } + } + + static List GetLockableCandidates( + List candidates, + LockRule lockRule) + { + List result = new List(); + + LockedFilesFilter filter = new LockedFilesFilter(lockRule.Rules); + + foreach (WorkspaceTreeNode candidate in candidates) + { + string cmPath = WorkspaceNodeOperations.GetCmPath(candidate); + + if (cmPath == null) + { + //The node could not be on the head tree (like copied items) so when we + //cannot calculate the path we assume that it's lockable. + result.Add(candidate); + continue; + } + + if (filter.IsLockable(cmPath)) + result.Add(candidate); + } + + return result; + } + + static IList GetCandidatesGuids( + WorkspaceInfo wkInfo, + RepositorySpec repSpec, + List candidates) + { + RepositoryInfo repInfo = RepositorySpecResolverProvider. + Get().GetRepInfo(repSpec); + + IList ids = new List(candidates.Count); + + foreach (WorkspaceTreeNode candidate in candidates) + ids.Add(candidate.RevInfo.ItemId); + + return GuidResolver.Get().GetObjectGuids(repInfo, wkInfo, ids); + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/SearchLocks.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/SearchLocks.cs.meta new file mode 100644 index 00000000..5b37b165 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/Cache/SearchLocks.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: cef27b0c65987be4384e16c988465aca +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/DrawAssetOverlay.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/DrawAssetOverlay.cs new file mode 100644 index 00000000..d3988576 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/DrawAssetOverlay.cs @@ -0,0 +1,251 @@ +using System; + +using UnityEditor; +using UnityEngine; + +using PlasticGui; +using Unity.PlasticSCM.Editor.AssetsOverlays.Cache; +using Unity.PlasticSCM.Editor.AssetUtils; +using Unity.PlasticSCM.Editor.UI; + +namespace Unity.PlasticSCM.Editor.AssetsOverlays +{ + internal static class DrawAssetOverlay + { + internal static void Enable( + string wkPath, + IAssetStatusCache assetStatusCache) + { + if (mIsEnabled) + return; + + mWkPath = wkPath; + mAssetStatusCache = assetStatusCache; + + mIsEnabled = true; + + mRepaintProjectWindow = ProjectWindow.Repaint; + + EditorApplication.projectWindowItemOnGUI += OnProjectWindowItemGUI; + + mRepaintProjectWindow(); + } + + internal static void Disable() + { + mIsEnabled = false; + + EditorApplication.projectWindowItemOnGUI -= OnProjectWindowItemGUI; + + mRepaintProjectWindow(); + + mWkPath = null; + mAssetStatusCache = null; + } + + internal static void ClearCache() + { + if (mAssetStatusCache != null) + mAssetStatusCache.Clear(); + + mRepaintProjectWindow(); + } + + internal static string GetStatusString(AssetStatus assetStatus) + { + if (ClassifyAssetStatus.IsPrivate(assetStatus)) + return PlasticLocalization.GetString( + PlasticLocalization.Name.Private); + + if (ClassifyAssetStatus.IsIgnored(assetStatus)) + return PlasticLocalization.GetString( + PlasticLocalization.Name.StatusIgnored); + + if (ClassifyAssetStatus.IsAdded(assetStatus)) + return PlasticLocalization.GetString( + PlasticLocalization.Name.StatusAdded); + + if (ClassifyAssetStatus.IsConflicted(assetStatus)) + return PlasticLocalization.GetString( + PlasticLocalization.Name.StatusConflicted); + + if (ClassifyAssetStatus.IsDeletedOnServer(assetStatus)) + return PlasticLocalization.GetString( + PlasticLocalization.Name.StatusDeletedOnServer); + + if (ClassifyAssetStatus.IsLockedRemote(assetStatus)) + return PlasticLocalization.GetString( + PlasticLocalization.Name.StatusLockedRemote); + + if (ClassifyAssetStatus.IsOutOfDate(assetStatus)) + return PlasticLocalization.GetString( + PlasticLocalization.Name.StatusOutOfDate); + + if (ClassifyAssetStatus.IsLocked(assetStatus)) + return PlasticLocalization.GetString( + PlasticLocalization.Name.StatusLockedMe); + + if (ClassifyAssetStatus.IsCheckedOut(assetStatus)) + return PlasticLocalization.GetString( + PlasticLocalization.Name.StatusCheckout); + + return string.Empty; + } + + internal static string GetTooltipText( + AssetStatus statusValue, + LockStatusData lockStatusData) + { + string statusText = GetStatusString(statusValue); + + if (lockStatusData == null) + return statusText; + + // example: + // Changed by: + // * dani_pen@hotmail.com + // * workspace wkLocal" + + char bulletCharacter = '\u25cf'; + + string line1 = PlasticLocalization.GetString( + PlasticLocalization.Name.AssetOverlayTooltipStatus, statusText); + + string line2 = string.Format("{0} {1}", + bulletCharacter, + lockStatusData.LockedBy); + + string line3 = string.Format("{0} {1}", + bulletCharacter, + PlasticLocalization.GetString( + PlasticLocalization.Name.AssetOverlayTooltipWorkspace, + lockStatusData.WorkspaceName)); + + return string.Format( + "{0}" + Environment.NewLine + + "{1}" + Environment.NewLine + + "{2}", + line1, + line2, + line3); + } + + static void OnProjectWindowItemGUI(string guid, Rect selectionRect) + { + if (string.IsNullOrEmpty(guid)) + return; + + if (Event.current.type != EventType.Repaint) + return; + + string fullPath = AssetsPath.GetFullPathUnderWorkspace. + ForGuid(mWkPath, guid); + + if (fullPath == null) + return; + + AssetStatus assetStatus = mAssetStatusCache.GetStatus(fullPath); + + LockStatusData lockStatusData = + ClassifyAssetStatus.IsLockedRemote(assetStatus) ? + mAssetStatusCache.GetLockStatusData(fullPath) : + null; + + string tooltipText = GetTooltipText( + assetStatus, + lockStatusData); + + DrawOverlayIcon.ForStatus( + selectionRect, + assetStatus, + tooltipText); + } + + internal static class DrawOverlayIcon + { + internal static void ForStatus( + Rect selectionRect, + AssetStatus status, + string tooltipText) + { + Texture overlayIcon = GetOverlayIcon(status); + + if (overlayIcon == null) + return; + + Rect overlayRect = OverlayRect.GetOverlayRect( + selectionRect, + OVERLAY_ICON_OFFSET); + + GUI.DrawTexture( + overlayRect, overlayIcon, ScaleMode.ScaleToFit); + + Rect tooltipRect = GetTooltipRect(selectionRect, overlayRect); + + GUI.Label(tooltipRect, new GUIContent(string.Empty, tooltipText)); + } + + internal static Texture GetOverlayIcon(AssetStatus assetStatus) + { + if (ClassifyAssetStatus.IsPrivate(assetStatus)) + return Images.GetPrivatedOverlayIcon(); + + if (ClassifyAssetStatus.IsIgnored(assetStatus)) + return Images.GetIgnoredOverlayIcon(); + + if (ClassifyAssetStatus.IsAdded(assetStatus)) + return Images.GetAddedOverlayIcon(); + + if (ClassifyAssetStatus.IsConflicted(assetStatus)) + return Images.GetConflictedOverlayIcon(); + + if (ClassifyAssetStatus.IsDeletedOnServer(assetStatus)) + return Images.GetDeletedRemoteOverlayIcon(); + + if (ClassifyAssetStatus.IsLockedRemote(assetStatus)) + return Images.GetLockedRemoteOverlayIcon(); + + if (ClassifyAssetStatus.IsOutOfDate(assetStatus)) + return Images.GetOutOfSyncOverlayIcon(); + + if (ClassifyAssetStatus.IsLocked(assetStatus)) + return Images.GetLockedLocalOverlayIcon(); + + if (ClassifyAssetStatus.IsCheckedOut(assetStatus)) + return Images.GetCheckedOutOverlayIcon(); + + return null; + } + + static Rect Inflate(Rect rect, float width, float height) + { + return new Rect( + rect.x - width, + rect.y - height, + rect.width + 2f * width, + rect.height + 2f * height); + } + + static Rect GetTooltipRect( + Rect selectionRect, + Rect overlayRect) + { + if (selectionRect.width > selectionRect.height) + { + return overlayRect; + } + + return Inflate(overlayRect, 3f, 3f); + } + } + + static Action mRepaintProjectWindow; + + static bool mIsEnabled; + static IAssetStatusCache mAssetStatusCache; + static string mWkPath; + + const float OVERLAY_ICON_OFFSET = 20f; + } +} + diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/DrawAssetOverlay.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/DrawAssetOverlay.cs.meta new file mode 100644 index 00000000..62389ce6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetOverlays/DrawAssetOverlay.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d30dfeb72257204458e1e8e1576b84ba +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets.meta new file mode 100644 index 00000000..2d50bc60 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b01e5a3d2517b904698dbc9fa0df727f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images.meta new file mode 100644 index 00000000..63f947f5 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8697b23ed1b3db0448e2580433ae07d7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninemail.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninemail.png new file mode 100644 index 00000000..8c20609f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninemail.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninemail.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninemail.png.meta new file mode 100644 index 00000000..f1d2d4f0 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninemail.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: d24e7e0b75e1a244bb9687d6fd4315ef +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninemail@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninemail@2x.png new file mode 100644 index 00000000..fae13d7b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninemail@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninemail@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninemail@2x.png.meta new file mode 100644 index 00000000..18cd0ccd --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninemail@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: ddf2e76e8a1f88f46ae1e42277850b48 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigningoogle.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigningoogle.png new file mode 100644 index 00000000..89b1c93d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigningoogle.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigningoogle.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigningoogle.png.meta new file mode 100644 index 00000000..3001ae07 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigningoogle.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: f09eae8c0ea04254b90c5386a034a225 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninunity.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninunity.png new file mode 100644 index 00000000..177c2e90 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninunity.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninunity.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninunity.png.meta new file mode 100644 index 00000000..36679aad --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/buttonssosigninunity.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: f9161c6c9e06dc445ada3ee16d991f90 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_buttonssosigninemail.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_buttonssosigninemail.png new file mode 100644 index 00000000..7cc1302b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_buttonssosigninemail.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_buttonssosigninemail.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_buttonssosigninemail.png.meta new file mode 100644 index 00000000..6f933493 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_buttonssosigninemail.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 3086d66a563317b40a20a20da2c64ac0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_buttonssosigninemail@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_buttonssosigninemail@2x.png new file mode 100644 index 00000000..9de04471 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_buttonssosigninemail@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_buttonssosigninemail@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_buttonssosigninemail@2x.png.meta new file mode 100644 index 00000000..f644f0d9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_buttonssosigninemail@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 144aa74618b85974a9a50f612c2fa8fd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedlocal.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedlocal.png new file mode 100644 index 00000000..65d98182 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedlocal.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedlocal.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedlocal.png.meta new file mode 100644 index 00000000..d4896a5c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedlocal.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 0c6a2a64ca9f9c946a7dbbd1674cf5bd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedlocal@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedlocal@2x.png new file mode 100644 index 00000000..3cdcd5cd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedlocal@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedlocal@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedlocal@2x.png.meta new file mode 100644 index 00000000..5065dc41 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedlocal@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 02800fb9cff14da47a04572790384d8b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedoverlay.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedoverlay.png new file mode 100644 index 00000000..4ae9e895 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedoverlay.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedoverlay.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedoverlay.png.meta new file mode 100644 index 00000000..83c12b75 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedoverlay.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 73d124bf77e463c45942d14136745d9f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedoverlay@2x.png new file mode 100644 index 00000000..42e1641a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedoverlay@2x.png.meta new file mode 100644 index 00000000..15c9d01d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconaddedoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: a6fbd5a181bc51e42a61a73fe8d727c8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconbranch.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconbranch.png new file mode 100644 index 00000000..d6f17814 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconbranch.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconbranch.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconbranch.png.meta new file mode 100644 index 00000000..f3c5e3e5 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconbranch.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 612c5e166a121e3449dad067fbdc37a4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconbranch@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconbranch@2x.png new file mode 100644 index 00000000..9b519ece Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconbranch@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconbranch@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconbranch@2x.png.meta new file mode 100644 index 00000000..aaa84f6e --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconbranch@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 874d8401331ede14087e8d8d486ddda6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconcheckedoutlocaloverlay.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconcheckedoutlocaloverlay.png new file mode 100644 index 00000000..5fdb35de Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconcheckedoutlocaloverlay.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconcheckedoutlocaloverlay.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconcheckedoutlocaloverlay.png.meta new file mode 100644 index 00000000..4eb7efb6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconcheckedoutlocaloverlay.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: bb1928aff4fd4cf44af1f629dc14ef9b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconcheckedoutlocaloverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconcheckedoutlocaloverlay@2x.png new file mode 100644 index 00000000..5981ce20 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconcheckedoutlocaloverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconcheckedoutlocaloverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconcheckedoutlocaloverlay@2x.png.meta new file mode 100644 index 00000000..3f9bbc1a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconcheckedoutlocaloverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 8d98ab6168c3e91439339f1908b8fe97 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconclosebutton.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconclosebutton.png new file mode 100644 index 00000000..586fcd72 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconclosebutton.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconclosebutton.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconclosebutton.png.meta new file mode 100644 index 00000000..2766cd2e --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconclosebutton.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 9cadde7a0d5f9024ab3f2cd5f6a740d6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconclosebutton@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconclosebutton@2x.png new file mode 100644 index 00000000..388d00f7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconclosebutton@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconclosebutton@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconclosebutton@2x.png.meta new file mode 100644 index 00000000..08865e6d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconclosebutton@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 0525793900d728a42936791a8a6de63b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflicted.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflicted.png new file mode 100644 index 00000000..84712ed9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflicted.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflicted.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflicted.png.meta new file mode 100644 index 00000000..fac5f12d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflicted.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 881798b77426a8f47b533dcc4767e9e5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflicted@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflicted@2x.png new file mode 100644 index 00000000..bd60db89 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflicted@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflicted@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflicted@2x.png.meta new file mode 100644 index 00000000..92760107 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflicted@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 65f0e363b74cf5845ab8c3fbc14f39ac +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictedoverlay.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictedoverlay.png new file mode 100644 index 00000000..63d0621f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictedoverlay.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictedoverlay.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictedoverlay.png.meta new file mode 100644 index 00000000..5f365b90 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictedoverlay.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: a892bcc7ae1871447926b3c44d158763 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictedoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictedoverlay@2x.png new file mode 100644 index 00000000..dda07004 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictedoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictedoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictedoverlay@2x.png.meta new file mode 100644 index 00000000..bc5cb918 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictedoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: a3ced8f7044b9de4787602a9e9b20ea7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictresolvedoverlay.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictresolvedoverlay.png new file mode 100644 index 00000000..f767f358 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictresolvedoverlay.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictresolvedoverlay.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictresolvedoverlay.png.meta new file mode 100644 index 00000000..c0d17000 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictresolvedoverlay.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 056ee72c467a4e24d87541d42839ca72 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictresolvedoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictresolvedoverlay@2x.png new file mode 100644 index 00000000..ccb81e85 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictresolvedoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictresolvedoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictresolvedoverlay@2x.png.meta new file mode 100644 index 00000000..d1a9b8c2 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconconflictresolvedoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 4a231ba0e81e63849a8f985c228e8acd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedlocaloverlay.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedlocaloverlay.png new file mode 100644 index 00000000..5e4a5595 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedlocaloverlay.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedlocaloverlay.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedlocaloverlay.png.meta new file mode 100644 index 00000000..e0549ca9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedlocaloverlay.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 4da274d970a82a943ae3979e7833f3dd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedlocaloverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedlocaloverlay@2x.png new file mode 100644 index 00000000..b0384733 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedlocaloverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedlocaloverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedlocaloverlay@2x.png.meta new file mode 100644 index 00000000..c29a6fe5 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedlocaloverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 92b204cca46037444ab18ba6701f86f7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremote.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremote.png new file mode 100644 index 00000000..d591cb37 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremote.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremote.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremote.png.meta new file mode 100644 index 00000000..82c63c37 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremote.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 23e66f7264c74424889342127f229577 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremote@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremote@2x.png new file mode 100644 index 00000000..a7f7ac81 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremote@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremote@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremote@2x.png.meta new file mode 100644 index 00000000..f0028e2f --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremote@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 626b9cddb29049e4cac50cd87b419945 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremoteoverlay.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremoteoverlay.png new file mode 100644 index 00000000..b1b83e84 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremoteoverlay.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremoteoverlay.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremoteoverlay.png.meta new file mode 100644 index 00000000..4367d4de --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremoteoverlay.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 3de8a0634e55df8499c88204001cb0dd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremoteoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremoteoverlay@2x.png new file mode 100644 index 00000000..e20c09c5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremoteoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremoteoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremoteoverlay@2x.png.meta new file mode 100644 index 00000000..cb3bd8d2 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_icondeletedremoteoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 2cfbf6619eb047545a425e8a31732c83 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconemptygravatar.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconemptygravatar.png new file mode 100644 index 00000000..436cc1df Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconemptygravatar.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconemptygravatar.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconemptygravatar.png.meta new file mode 100644 index 00000000..7476d281 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconemptygravatar.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 9aebd705574f9e642aef1e5f59b3e4d8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconemptygravatar@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconemptygravatar@2x.png new file mode 100644 index 00000000..d7f2e3c2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconemptygravatar@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconemptygravatar@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconemptygravatar@2x.png.meta new file mode 100644 index 00000000..7c1700e9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconemptygravatar@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 0ac55f9f886d827408c102bdf33c5ff7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedlocaloverlay.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedlocaloverlay.png new file mode 100644 index 00000000..76a07b35 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedlocaloverlay.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedlocaloverlay.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedlocaloverlay.png.meta new file mode 100644 index 00000000..0312182a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedlocaloverlay.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 71c45f80bffdb9145ad2c456254c862e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedlocaloverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedlocaloverlay@2x.png new file mode 100644 index 00000000..491e10a6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedlocaloverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedlocaloverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedlocaloverlay@2x.png.meta new file mode 100644 index 00000000..12f5a830 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedlocaloverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: ae53a7884da90e94eb5dfeab594b746c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedremoteoverlay.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedremoteoverlay.png new file mode 100644 index 00000000..b344c71e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedremoteoverlay.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedremoteoverlay.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedremoteoverlay.png.meta new file mode 100644 index 00000000..f000b71c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedremoteoverlay.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 1046ed65e6aaffb4391378f6d08d6c14 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedremoteoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedremoteoverlay@2x.png new file mode 100644 index 00000000..084829d0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedremoteoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedremoteoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedremoteoverlay@2x.png.meta new file mode 100644 index 00000000..43913dd5 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconlockedremoteoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 2bb4e96f5d0b02c468932d665a015c54 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsync.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsync.png new file mode 100644 index 00000000..c22a070d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsync.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsync.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsync.png.meta new file mode 100644 index 00000000..e8a965ce --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsync.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 0e80bd0b4a8196f46acf73711b9505ec +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsync@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsync@2x.png new file mode 100644 index 00000000..dd2d7391 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsync@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsync@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsync@2x.png.meta new file mode 100644 index 00000000..6d1f3758 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsync@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: f82dfc5fc3c5a8f4080a3550427019c8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsyncoverlay.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsyncoverlay.png new file mode 100644 index 00000000..9f4f441d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsyncoverlay.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsyncoverlay.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsyncoverlay.png.meta new file mode 100644 index 00000000..7a037066 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsyncoverlay.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: dc633de6e6e7415448c7568418239a9d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsyncoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsyncoverlay@2x.png new file mode 100644 index 00000000..b4489466 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsyncoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsyncoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsyncoverlay@2x.png.meta new file mode 100644 index 00000000..7c6ea077 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconoutofsyncoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 4d7e6e570e9d65a4c9a994783a0652e2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyconflict.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyconflict.png new file mode 100644 index 00000000..ee5865a8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyconflict.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyconflict.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyconflict.png.meta new file mode 100644 index 00000000..3632a85a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyconflict.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 51582ae5ea51fa14996791a550f89473 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyconflict@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyconflict@2x.png new file mode 100644 index 00000000..4ababa03 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyconflict@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyconflict@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyconflict@2x.png.meta new file mode 100644 index 00000000..6e17e418 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyconflict@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 23743f0c0ed1e6546808a5d645c2a6a5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyincoming.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyincoming.png new file mode 100644 index 00000000..3da22768 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyincoming.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyincoming.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyincoming.png.meta new file mode 100644 index 00000000..d99d02f4 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyincoming.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: f31d2c855644aad4cb2030bce12859f6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyincoming@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyincoming@2x.png new file mode 100644 index 00000000..ebd267c9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyincoming@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyincoming@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyincoming@2x.png.meta new file mode 100644 index 00000000..1aded819 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticnotifyincoming@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: c5fc116b3271b5947808130b2212cd60 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticview.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticview.png new file mode 100644 index 00000000..40e8f659 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticview.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticview.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticview.png.meta new file mode 100644 index 00000000..4f6027d5 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticview.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 519d97e745e55f041b609f3666cbc037 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: f8e3a80d377cb5148bddca0d49e2ed54 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticview@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticview@2x.png new file mode 100644 index 00000000..f4a0ac8d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticview@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticview@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticview@2x.png.meta new file mode 100644 index 00000000..3d747ed4 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconplasticview@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 3168140d6f409d0448447f18568d9482 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: c3a3cc66c2dec5c42827c966aaba2c6c + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconprivateoverlay.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconprivateoverlay.png new file mode 100644 index 00000000..9d6948b4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconprivateoverlay.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconprivateoverlay.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconprivateoverlay.png.meta new file mode 100644 index 00000000..6ac7e2d8 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconprivateoverlay.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 059fb5367594a3343814dc25ace454b3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconprivateoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconprivateoverlay@2x.png new file mode 100644 index 00000000..2f3491b0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconprivateoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconprivateoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconprivateoverlay@2x.png.meta new file mode 100644 index 00000000..1d2ab2b3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconprivateoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 7f854f490da24e54f9e8383e446b5d81 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconundo.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconundo.png new file mode 100644 index 00000000..29b05104 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconundo.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconundo.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconundo.png.meta new file mode 100644 index 00000000..878e30c0 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconundo.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 691dc543ff5b9ca44bf846657ba04161 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconundo@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconundo@2x.png new file mode 100644 index 00000000..57894e05 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconundo@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconundo@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconundo@2x.png.meta new file mode 100644 index 00000000..d25d2866 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_iconundo@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 6d6088174bb906b49ad8428526ee337b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_ignoredoverlay.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_ignoredoverlay.png new file mode 100644 index 00000000..cfb4623d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_ignoredoverlay.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_ignoredoverlay.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_ignoredoverlay.png.meta new file mode 100644 index 00000000..9748d8af --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_ignoredoverlay.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 0f5597de928ba6547895c4cdb9fa4185 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_ignoredoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_ignoredoverlay@2x.png new file mode 100644 index 00000000..c1f30d78 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_ignoredoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_ignoredoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_ignoredoverlay@2x.png.meta new file mode 100644 index 00000000..13ddb096 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_ignoredoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 68fafd0a2acc3774988418f657bf7b68 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_loading.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_loading.png new file mode 100644 index 00000000..a38ff00a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_loading.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_loading.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_loading.png.meta new file mode 100644 index 00000000..1f2bbc7d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_loading.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: d58e94bfb1bac774dbb8ca9c2597ef2e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_loading@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_loading@2x.png new file mode 100644 index 00000000..dec17793 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_loading@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_loading@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_loading@2x.png.meta new file mode 100644 index 00000000..fd019f6f --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_loading@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 7ee48c5fba4919649a8a6094cbead669 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_refresh.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_refresh.png new file mode 100644 index 00000000..6fe52c37 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_refresh.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_refresh.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_refresh.png.meta new file mode 100644 index 00000000..fcf89758 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_refresh.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 92b8c447daf4d4b41a0ec148d1091261 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_refresh@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_refresh@2x.png new file mode 100644 index 00000000..98f2b33f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_refresh@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_refresh@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_refresh@2x.png.meta new file mode 100644 index 00000000..ec16f897 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_refresh@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 602b72d4617c3694aa94419fc1b68e04 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclose.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclose.png new file mode 100644 index 00000000..2513cd90 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclose.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclose.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclose.png.meta new file mode 100644 index 00000000..7f22dc1a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclose.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 6975ee4c1f40caf4da8dd733ee2cfeaf +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclosehover.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclosehover.png new file mode 100644 index 00000000..c4849657 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclosehover.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclosehover.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclosehover.png.meta new file mode 100644 index 00000000..54caa07e --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclosehover.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 6a9d211bea1bc4a429d86cbb2d0b0a3e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclosehover@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclosehover@2x.png new file mode 100644 index 00000000..d53900ad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclosehover@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclosehover@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclosehover@2x.png.meta new file mode 100644 index 00000000..75e3e6b5 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_secondarytabclosehover@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 9aa4348290784b2468144a97eb15d8d7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step1.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step1.png new file mode 100644 index 00000000..412edd6f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step1.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step1.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step1.png.meta new file mode 100644 index 00000000..917dad71 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step1.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 38236a82ff44aaa4b972248479d5f970 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5c7c8d8922b532249b982e4c0365d653 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step1@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step1@2x.png new file mode 100644 index 00000000..b5d623b4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step1@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step1@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step1@2x.png.meta new file mode 100644 index 00000000..f04b5842 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step1@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: c8a69ecdf54ac8e4b873466605de27ff +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: dbad3d69da696d44da71467b14affbec + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step2.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step2.png new file mode 100644 index 00000000..4776eb12 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step2.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step2.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step2.png.meta new file mode 100644 index 00000000..496e33eb --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step2.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 897c3a3f5c4038345a7143573bbb4a40 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: a39662d1ab72e624fa6636e50f298916 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step2@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step2@2x.png new file mode 100644 index 00000000..5aab9e40 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step2@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step2@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step2@2x.png.meta new file mode 100644 index 00000000..fa24db6b --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step2@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: cdb88fdb0cf46b244a667edaff21c7df +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: cae3485a947b3ad41ab4e005cebf5fc7 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step3.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step3.png new file mode 100644 index 00000000..3b0741c0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step3.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step3.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step3.png.meta new file mode 100644 index 00000000..9025793a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step3.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 46930b20180b59e46b73494adf53abbb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 1cf775c54c8394c47a53536f1e461c1a + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step3@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step3@2x.png new file mode 100644 index 00000000..cfd244ae Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step3@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step3@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step3@2x.png.meta new file mode 100644 index 00000000..93699c9e --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_step3@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: c9ed6d6ea2f9657409bfa068d4846139 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 468c37b67528e174ab69506f5c140403 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_stepok.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_stepok.png new file mode 100644 index 00000000..c7b5d83d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_stepok.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_stepok.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_stepok.png.meta new file mode 100644 index 00000000..af4b9664 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_stepok.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: be423a54b981d38428de82ad12534629 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 8ec904eb4adfda84d9669b386557c8ff + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_stepok@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_stepok@2x.png new file mode 100644 index 00000000..6172eb0e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_stepok@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_stepok@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_stepok@2x.png.meta new file mode 100644 index 00000000..c916cce6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/d_stepok@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 3494dc956dfd7174abc07060940a2848 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 914a29fa17201064fb558eba2fdc6047 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedlocal.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedlocal.png new file mode 100644 index 00000000..bc4d15c8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedlocal.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedlocal.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedlocal.png.meta new file mode 100644 index 00000000..79b03419 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedlocal.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 9a1ab8af8c446204e989a90f18305caf +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedlocal@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedlocal@2x.png new file mode 100644 index 00000000..99f22f23 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedlocal@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedlocal@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedlocal@2x.png.meta new file mode 100644 index 00000000..37e2c70a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedlocal@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: a67b58d6cddcd4345b1e001340de5a76 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedoverlay@2x.png new file mode 100644 index 00000000..4e17e119 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedoverlay@2x.png.meta new file mode 100644 index 00000000..ae09afe6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconaddedoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 74ef721fef79c44489d4e3edb0ab0c01 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconbranch.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconbranch.png new file mode 100644 index 00000000..940a619e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconbranch.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconbranch.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconbranch.png.meta new file mode 100644 index 00000000..9b28fae4 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconbranch.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: a6219d44b6fc910449f7c3fee45db5c5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconbranch@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconbranch@2x.png new file mode 100644 index 00000000..5682980b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconbranch@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconbranch@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconbranch@2x.png.meta new file mode 100644 index 00000000..8eda23a7 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconbranch@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: e45389a8a97044d4caf408f252370632 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconcheckedoutlocaloverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconcheckedoutlocaloverlay@2x.png new file mode 100644 index 00000000..7b762ce1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconcheckedoutlocaloverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconcheckedoutlocaloverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconcheckedoutlocaloverlay@2x.png.meta new file mode 100644 index 00000000..2d93fb95 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconcheckedoutlocaloverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 3999034958d54364da380a8839a11050 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconclosebutton.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconclosebutton.png new file mode 100644 index 00000000..bec9a7eb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconclosebutton.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconclosebutton.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconclosebutton.png.meta new file mode 100644 index 00000000..85a3aa81 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconclosebutton.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 13527793884104b46b7446fd7464c3ed +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 82c6d4c8cabb9d04f9eaf4ca9fe33bf0 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflicted.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflicted.png new file mode 100644 index 00000000..97a22a58 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflicted.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflicted.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflicted.png.meta new file mode 100644 index 00000000..9ea97c9f --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflicted.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: d1c88f142eee55b4eb2b2cfd7b3624ce +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflicted@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflicted@2x.png new file mode 100644 index 00000000..b5debbe6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflicted@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflicted@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflicted@2x.png.meta new file mode 100644 index 00000000..6c6d2738 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflicted@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: f95f697d66d238446b1ab717def09945 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflictedoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflictedoverlay@2x.png new file mode 100644 index 00000000..d30adbe4 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflictedoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflictedoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflictedoverlay@2x.png.meta new file mode 100644 index 00000000..2ccd23f3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflictedoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 5679a74364f6b4440ab7e7aed55cd95e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflictresolvedoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflictresolvedoverlay@2x.png new file mode 100644 index 00000000..598ebde2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflictresolvedoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflictresolvedoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflictresolvedoverlay@2x.png.meta new file mode 100644 index 00000000..08b3186a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconconflictresolvedoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 309b1d5a294fd6c43ae9cf77656c1852 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeleted.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeleted.png new file mode 100644 index 00000000..a5d32f5c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeleted.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeleted.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeleted.png.meta new file mode 100644 index 00000000..cfcfcd72 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeleted.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 77a39e873655d3c4b93d0b7696397b83 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 00077e01d1a00d94c9c06cca9b22804e + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedlocaloverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedlocaloverlay@2x.png new file mode 100644 index 00000000..1e780867 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedlocaloverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedlocaloverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedlocaloverlay@2x.png.meta new file mode 100644 index 00000000..a32d461a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedlocaloverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: a3e491f99ea3ad74f8731ca93e84c497 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremote.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremote.png new file mode 100644 index 00000000..e3258db0 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremote.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremote.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremote.png.meta new file mode 100644 index 00000000..fe2d7537 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremote.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: b85a4b2ec6433d04895612d791edc260 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremote@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremote@2x.png new file mode 100644 index 00000000..022190ff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremote@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremote@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremote@2x.png.meta new file mode 100644 index 00000000..25f754a0 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremote@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 70e3ce8ad01f39248a3ea97a35bcf238 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremoteoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremoteoverlay@2x.png new file mode 100644 index 00000000..e18cfc25 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremoteoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremoteoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremoteoverlay@2x.png.meta new file mode 100644 index 00000000..11c3b01d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/icondeletedremoteoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: d5c3277b1dbad9448b46c2ec87a2cef8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconemptygravatar.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconemptygravatar.png new file mode 100644 index 00000000..59b734fd Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconemptygravatar.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconemptygravatar.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconemptygravatar.png.meta new file mode 100644 index 00000000..518284b9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconemptygravatar.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 91976e8b9ce0f0341838727acd55621c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconemptygravatar@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconemptygravatar@2x.png new file mode 100644 index 00000000..2b5d928f Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconemptygravatar@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconemptygravatar@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconemptygravatar@2x.png.meta new file mode 100644 index 00000000..2c61d564 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconemptygravatar@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: da545229eea36164d8b8cba2f75a1143 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconlockedlocaloverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconlockedlocaloverlay@2x.png new file mode 100644 index 00000000..9e52486c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconlockedlocaloverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconlockedlocaloverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconlockedlocaloverlay@2x.png.meta new file mode 100644 index 00000000..de010593 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconlockedlocaloverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: b528c1b33a65cf94ea74f830b54c9acb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconlockedremoteoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconlockedremoteoverlay@2x.png new file mode 100644 index 00000000..4852251a Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconlockedremoteoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconlockedremoteoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconlockedremoteoverlay@2x.png.meta new file mode 100644 index 00000000..60e52842 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconlockedremoteoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: f73a7d8758d7be04588b15637d94b5a8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconmergelink.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconmergelink.png new file mode 100644 index 00000000..3c903ab6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconmergelink.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconmergelink.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconmergelink.png.meta new file mode 100644 index 00000000..55c04ea2 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconmergelink.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 120bf54dff785a0429b068b814e9c12a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 51133015e8cc06a4f93e26b9c867c6b7 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconmoved.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconmoved.png new file mode 100644 index 00000000..0a8fdfe8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconmoved.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconmoved.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconmoved.png.meta new file mode 100644 index 00000000..b6d860f5 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconmoved.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 8a6cca56e2b63344eb4769cd92d93ffb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: bc35d29e7eb93be45b838123254b4817 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsync.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsync.png new file mode 100644 index 00000000..ae840999 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsync.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsync.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsync.png.meta new file mode 100644 index 00000000..56d1130f --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsync.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 636d03a8834e3ed4cac3a1cb4b82deaf +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsync@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsync@2x.png new file mode 100644 index 00000000..3cb1207c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsync@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsync@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsync@2x.png.meta new file mode 100644 index 00000000..37681fc6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsync@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: d7094718bdac022428dd29244922d06b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsyncoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsyncoverlay@2x.png new file mode 100644 index 00000000..f8577d39 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsyncoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsyncoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsyncoverlay@2x.png.meta new file mode 100644 index 00000000..83deac65 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconoutofsyncoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 3728580c149181a44b359e89f6edacae +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplastic.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplastic.png new file mode 100644 index 00000000..80aa47a8 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplastic.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplastic.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplastic.png.meta new file mode 100644 index 00000000..dd31eb66 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplastic.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 3042b019b052942a1baf7aa49d7ca6bb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: d9b5aff1687365c4594054ad50a85208 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyconflict.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyconflict.png new file mode 100644 index 00000000..e9d6ca49 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyconflict.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyconflict.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyconflict.png.meta new file mode 100644 index 00000000..8927e512 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyconflict.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: a916ed6819efd014588f58e3cfc48196 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyconflict@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyconflict@2x.png new file mode 100644 index 00000000..dfe04998 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyconflict@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyconflict@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyconflict@2x.png.meta new file mode 100644 index 00000000..16299866 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyconflict@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 6e0a54826ffc3ee46b0aa3e1c1575a69 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyincoming.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyincoming.png new file mode 100644 index 00000000..422d0cc2 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyincoming.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyincoming.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyincoming.png.meta new file mode 100644 index 00000000..8be2b03c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyincoming.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 1e6c9635b80f973488d8335a081c905f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyincoming@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyincoming@2x.png new file mode 100644 index 00000000..5f5db638 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyincoming@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyincoming@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyincoming@2x.png.meta new file mode 100644 index 00000000..45104d85 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticnotifyincoming@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: ae869fe6797f4454cbbf417d87ff637c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticview.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticview.png new file mode 100644 index 00000000..836724e7 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticview.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticview.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticview.png.meta new file mode 100644 index 00000000..5f7f6b4a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticview.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: dcb2ee37925b97e438ae244996d81a55 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 7c561411695e1df4f9aff8eb33039699 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticview@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticview@2x.png new file mode 100644 index 00000000..3142dbad Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticview@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticview@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticview@2x.png.meta new file mode 100644 index 00000000..a52fbc1d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconplasticview@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 97a4e2b6ae08b1140a5ba9e22953e029 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 21556f2e15f899945a3a0e228074cca7 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconpressedclosebutton.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconpressedclosebutton.png new file mode 100644 index 00000000..04fac2b5 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconpressedclosebutton.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconpressedclosebutton.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconpressedclosebutton.png.meta new file mode 100644 index 00000000..d73f8d38 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconpressedclosebutton.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 94fe868620119564f9474f40cd6145aa +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: aa638c69e6242ec4b8eb19471573021d + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconprivateoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconprivateoverlay@2x.png new file mode 100644 index 00000000..bf2fcfc6 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconprivateoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconprivateoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconprivateoverlay@2x.png.meta new file mode 100644 index 00000000..a71339c8 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconprivateoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 40685941c1361aa4a957b61174bce3f6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconrepository.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconrepository.png new file mode 100644 index 00000000..8279df08 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconrepository.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconrepository.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconrepository.png.meta new file mode 100644 index 00000000..79423e0a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconrepository.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: ed64f3a17f2ede646be21ed6edc9161a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 8173c07773604c94cb603c52c81f07c2 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconundo.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconundo.png new file mode 100644 index 00000000..480d96fe Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconundo.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconundo.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconundo.png.meta new file mode 100644 index 00000000..5aa99f82 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconundo.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 98773313eabe35543bfdbf542ccea271 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconundo@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconundo@2x.png new file mode 100644 index 00000000..5cc43829 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconundo@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconundo@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconundo@2x.png.meta new file mode 100644 index 00000000..8f9a16ae --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/iconundo@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 0dfbb2b6ddcdd254da80e3418498b3a6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ignored.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ignored.png new file mode 100644 index 00000000..07adffff Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ignored.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ignored.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ignored.png.meta new file mode 100644 index 00000000..b2e03901 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ignored.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 595bc97bc8e1e0b46bd4c2148ba3723a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 655ad771794337e4ab6f861606074414 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ignoredoverlay@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ignoredoverlay@2x.png new file mode 100644 index 00000000..194fef18 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ignoredoverlay@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ignoredoverlay@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ignoredoverlay@2x.png.meta new file mode 100644 index 00000000..3a7d10bf --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ignoredoverlay@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 999d04c0ea94ccc41b3d80788160695b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/loading.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/loading.png new file mode 100644 index 00000000..8e8913e3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/loading.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/loading.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/loading.png.meta new file mode 100644 index 00000000..b042595c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/loading.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: c6b1bcaa3f4767141acd747384dbb276 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/loading@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/loading@2x.png new file mode 100644 index 00000000..f4dc7ad1 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/loading@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/loading@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/loading@2x.png.meta new file mode 100644 index 00000000..f5b75c58 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/loading@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 5dbc069eb79bd4d43840847264d6d956 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/notondisk.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/notondisk.png new file mode 100644 index 00000000..cfb6efee Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/notondisk.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/notondisk.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/notondisk.png.meta new file mode 100644 index 00000000..26edea26 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/notondisk.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: b205f4b28f59dda49af458b35d8a3ff3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: e02a96272b03dc940a5c97cdd9c80cbb + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ok.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ok.png new file mode 100644 index 00000000..de885fbb Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ok.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ok.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ok.png.meta new file mode 100644 index 00000000..8035cd55 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/ok.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 3238dca1e9ea9fb4aa64b28298ba6dbd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 98326ccc2ab8d1d448abb288e6f22fd5 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/refresh.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/refresh.png new file mode 100644 index 00000000..22751b5d Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/refresh.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/refresh.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/refresh.png.meta new file mode 100644 index 00000000..5ff74315 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/refresh.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 6f6a4c6bd7cdc654d9d91f7de72afcb6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/refresh@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/refresh@2x.png new file mode 100644 index 00000000..dcda2823 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/refresh@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/refresh@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/refresh@2x.png.meta new file mode 100644 index 00000000..a215c4b0 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/refresh@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 59571f82a0dc1a14da606dc0df6f8ea7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/secondarytabclose.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/secondarytabclose.png new file mode 100644 index 00000000..206b27d3 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/secondarytabclose.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/secondarytabclose.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/secondarytabclose.png.meta new file mode 100644 index 00000000..4afe0f46 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/secondarytabclose.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 03cefa94d5aa9d74993fb2138af9d607 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/secondarytabclosehover.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/secondarytabclosehover.png new file mode 100644 index 00000000..ebc1263c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/secondarytabclosehover.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/secondarytabclosehover.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/secondarytabclosehover.png.meta new file mode 100644 index 00000000..184b1d40 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/secondarytabclosehover.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 8fac55fff4ce5fa40a7b2efefc0e617a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step1.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step1.png new file mode 100644 index 00000000..52d51f6e Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step1.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step1.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step1.png.meta new file mode 100644 index 00000000..44ca0df9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step1.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 9ce84ff0fdeb13d4a83f077d075dd9a5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 2a5833ff9c679be418315674ccb7482f + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step1@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step1@2x.png new file mode 100644 index 00000000..40ffb08b Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step1@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step1@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step1@2x.png.meta new file mode 100644 index 00000000..34bd4564 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step1@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: affeade9874cf2347abb155e8d0db4d8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 4f1b6ce3688a9a64e86dee209943d725 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step2.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step2.png new file mode 100644 index 00000000..15e8706c Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step2.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step2.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step2.png.meta new file mode 100644 index 00000000..2b334d9a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step2.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: cd0b17b71a5c498428ee91dee8a78a88 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 979066fc4d9879f44a7ee41dfc9beb3a + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step2@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step2@2x.png new file mode 100644 index 00000000..150b7a24 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step2@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step2@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step2@2x.png.meta new file mode 100644 index 00000000..29ef221b --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step2@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 0029170d14ce6c04c9f45c22cdae5559 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: d060e84faa6847747b65b345817e0e2d + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step3.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step3.png new file mode 100644 index 00000000..51c7bebc Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step3.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step3.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step3.png.meta new file mode 100644 index 00000000..8cf05cf4 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step3.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 69899ed144c8eea4baea48b858b37746 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 4f466ecde62957f4299e26e9078e5bca + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step3@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step3@2x.png new file mode 100644 index 00000000..21b175a9 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step3@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step3@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step3@2x.png.meta new file mode 100644 index 00000000..2818b94a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/step3@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 36e6970b84831434a9eac79abd03700b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 44240d8e1e3c23b40828b1dbc1373d17 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/stepok.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/stepok.png new file mode 100644 index 00000000..a0542f35 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/stepok.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/stepok.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/stepok.png.meta new file mode 100644 index 00000000..c6a85240 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/stepok.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: d4780dc1205c7c7478c970d8c61d24e8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 67fb1e5b278a0184bb092fad0b765884 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/stepok@2x.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/stepok@2x.png new file mode 100644 index 00000000..c9955d44 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/stepok@2x.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/stepok@2x.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/stepok@2x.png.meta new file mode 100644 index 00000000..cfb816a9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/stepok@2x.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: be340a165cb9c8d4cb50f1deeb51d4ea +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: e76902e05813dfe40936af244bf847b6 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/xlink.png b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/xlink.png new file mode 100644 index 00000000..656e2517 Binary files /dev/null and b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/xlink.png differ diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/xlink.png.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/xlink.png.meta new file mode 100644 index 00000000..6d07b9f4 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Images/xlink.png.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 556a2f3b046024d4c9621c1b4be5f0c1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 2 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: XboxOne + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 0fdb91cf53f55e240a89d1b7263f1c0b + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts.meta new file mode 100644 index 00000000..c7ac7ef9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ceb47f1768ea33a4984627a59921a4ee +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/CreatedOrganizationPanel.uxml b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/CreatedOrganizationPanel.uxml new file mode 100644 index 00000000..fd6625ec --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/CreatedOrganizationPanel.uxml @@ -0,0 +1,11 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/OrganizationPanel.uxml.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/OrganizationPanel.uxml.meta new file mode 100644 index 00000000..e51c925e --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/OrganizationPanel.uxml.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b6420407edc75d04f89d57eb2fcc314b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 13804, guid: 0000000000000000e000000000000000, type: 0} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/PlasticWindow.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/PlasticWindow.meta new file mode 100644 index 00000000..19ea6606 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/PlasticWindow.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f4277b8a08d36f84dacdc200bc870669 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/PlasticWindow/StatusBar.uxml b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/PlasticWindow/StatusBar.uxml new file mode 100644 index 00000000..2e70645d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/PlasticWindow/StatusBar.uxml @@ -0,0 +1,10 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/WaitingSignInPanel.uxml.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/WaitingSignInPanel.uxml.meta new file mode 100644 index 00000000..1cecd794 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Layouts/WaitingSignInPanel.uxml.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 913c727eecab25c489fa2adbad9c9ab8 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 13804, guid: 0000000000000000e000000000000000, type: 0} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles.meta new file mode 100644 index 00000000..7503d2ae --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5355983268a982c46bd52eb66f19b1b9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/Base.uss b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/Base.uss new file mode 100644 index 00000000..4fe1c1f8 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/Base.uss @@ -0,0 +1,140 @@ +.collapse { + display: none; +} + +.hide { + visibility: hidden; +} + +.row { + flex-direction: row; +} + +.row-reverse { + flex-direction: row-reverse; +} + +.column { + flex-direction: column; +} + +.flex-container { + display: flex; +} + +.grow { + flex-grow: 1; +} + +.grow-max { + flex-grow: 10; +} + +.parent-vertical-center{ + width: 100%; + height: 100%; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} + +.elements-vertical-center{ + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} + +.horizontally-centered { + justify-content: center; +} + +.align-end { + justify-content: flex-end; +} + +.align-center{ + justify-content: center; +} + +.align-vertical-center{ + flex-direction: row; + align-items: center; +} + +.align-start { + justify-content: flex-start; +} + +.main { + margin-top: 10px; + padding-left: 25px; + padding-right: 20px; +} + +.title { + margin: 10px 0px; + font-size: 18px; +} + +.error { + color: #FF0000; +} + +.anchor { + color: #2196F3; + padding: 0px; + margin: 0px; + background-color: transparent; + border-width: 0px; +} + +.classic-button { + padding: 7px; + margin-top: 10px; + height: 30px; +} + +.alert-label { + color: red; +} + +.footer { + position: absolute; + margin: 20px 10px 0px 10px; + bottom: 5px; +} + +.container { + padding: 10px; + border-bottom-width: 1px; + border-bottom-color: #999999; +} + +.container.last { + border-bottom-width: 0px; +} + +.sub-section { + margin-left: 10px; +} + +Button { + cursor: link; +} + +Label { + white-space: normal; +} + +TextField { + margin-left: 0px; + margin-top: 3px; + margin-right: 10px; + margin-bottom: 3px; +} + +Toggle { + margin-left: 0px; +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/Base.uss.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/Base.uss.meta new file mode 100644 index 00000000..6607819d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/Base.uss.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: bdf4f3d05dd541fa829ffa06bfbc8d0c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0} + disableValidation: 0 diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/DownloadPlasticExeWindow.uss b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/DownloadPlasticExeWindow.uss new file mode 100644 index 00000000..038dc2d9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/DownloadPlasticExeWindow.uss @@ -0,0 +1,32 @@ +@import "Base.uss"; + +#container { + margin-top: 20px; + margin-right: 20px; + margin-bottom: 20px; + margin-left: 20px; +} + +#footer { + display: flex; + flex-direction: row; + margin-top: 15px; + margin-left: 20px; +} + +#title { + -unity-font-style: bold; +} + +#progressControlsContainer { + height: 15px; +} + +Label { + white-space: normal; + margin-bottom: 10px; +} + +Button { + width: 180px; +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/DownloadPlasticExeWindow.uss.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/DownloadPlasticExeWindow.uss.meta new file mode 100644 index 00000000..398ed324 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/DownloadPlasticExeWindow.uss.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 3073089003718474ab284d743790fbb2 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0} + disableValidation: 0 diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/OrganizationPanel.uss b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/OrganizationPanel.uss new file mode 100644 index 00000000..53976bbf --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/OrganizationPanel.uss @@ -0,0 +1,28 @@ +@import "Base.uss"; + +.organization-section { + margin: 10px 0px; +} + +.organization-right { + width: auto; + min-width: 70px; + margin-left: 0px; +} + +.organization-left{ + flex: auto; + margin-top: 3px; +} + +#openUnityDashboardButton { + margin-top: 5px; + margin-bottom: 5px; + height: 30px; + color: white; + background-color: black; +} + +#joinSingleOrganizationButton{ + height: 19px; +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/OrganizationPanel.uss.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/OrganizationPanel.uss.meta new file mode 100644 index 00000000..613e54c6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/OrganizationPanel.uss.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 642639f75f2dfbd4ab01e6708b58f304 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0} + disableValidation: 0 diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/ProgressControlsForDialogs.uss b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/ProgressControlsForDialogs.uss new file mode 100644 index 00000000..7c1c5769 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/ProgressControlsForDialogs.uss @@ -0,0 +1,5 @@ +@import "Base.uss"; + +#Status { + color: red; +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/ProgressControlsForDialogs.uss.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/ProgressControlsForDialogs.uss.meta new file mode 100644 index 00000000..69e4cc22 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/ProgressControlsForDialogs.uss.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e05b9be8556f5ae41aa78140b83146d5 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0} + disableValidation: 0 diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/SignInPanel.uss b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/SignInPanel.uss new file mode 100644 index 00000000..cc611c87 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/SignInPanel.uss @@ -0,0 +1,25 @@ +@import "Base.uss"; + +.sign-in-buttons { + margin-top: 5px; + margin-bottom: 5px; + height: 30px; +} + +#iconUnity, #iconEmail { + width: 32px; + height: 32px +} + +#unityIDButton { + color: white; + background-color: black; +} + +#signUpLabel{ + margin-top: 3px; +} + +#privacyStatement { + align-self: flex-start; +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/SignInPanel.uss.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/SignInPanel.uss.meta new file mode 100644 index 00000000..e985a415 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/SignInPanel.uss.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c673e4e20ea67ab40a4661592f51aa99 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0} + disableValidation: 0 diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/SignInWithEmailPanel.uss b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/SignInWithEmailPanel.uss new file mode 100644 index 00000000..15b716b1 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/SignInWithEmailPanel.uss @@ -0,0 +1,32 @@ +@import "Base.uss"; + +#windowContainer { + height: 100%; + flex-grow: 1; + flex-direction: row; + margin-bottom: 30px; +} + +#loginContainer TextField { + flex-direction: column; + font-size: 14px; +} + +#emailNotification, #passwordNotification { + height: 15px; + margin-bottom: 5px; +} + +#progressContainer { + height: 15px; + margin-top: 15px; +} + +#signIn, +#back { + width: 125px; +} + +#signUpNeededNotificationLabel{ + color: red; +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/SignInWithEmailPanel.uss.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/SignInWithEmailPanel.uss.meta new file mode 100644 index 00000000..13fbc29d --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/SignInWithEmailPanel.uss.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b37675bc656348c429a6c56b2eda1345 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0} + disableValidation: 0 diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/TabView.uss b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/TabView.uss new file mode 100644 index 00000000..b06fb2d3 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/TabView.uss @@ -0,0 +1,31 @@ +@import "Base.uss"; + +#TabView, +#ContentArea { + height: 100%; +} + +#TabArea { + margin-top: 10px; + margin-left: 15px; +} + +.tab-button { + padding-bottom: 2px; + margin-bottom: 0px; + border-width: 0px; + border-radius: 0px; + + font-size: 15px; + background-color: rgba(1, 1, 1, 0); +} + +#TabArea .tab-button:hover { + border-bottom-color: #2196F3; + border-bottom-width: 0.25px; +} + +#TabArea .tab-button.active { + border-bottom-color: #2196F3; + border-bottom-width: 1.5px; +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/TabView.uss.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/TabView.uss.meta new file mode 100644 index 00000000..db9b8895 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/TabView.uss.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 88da5407899aaaf448a40c85888108ae +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0} + disableValidation: 0 diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/TeamEditionConfigurationWindow.uss b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/TeamEditionConfigurationWindow.uss new file mode 100644 index 00000000..df4806e1 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/TeamEditionConfigurationWindow.uss @@ -0,0 +1,26 @@ +@import "Base.uss"; + +#configurationServerInfoSection { + margin-bottom: 40px; +} + +#spinnerLabel { + margin-left: 2px; +} + +#connectedLabel { + -unity-text-align: middle-right; +} + +#credentialsOk { + -unity-text-align: middle-right; +} + +#plasticConfigurationTitle { + font-size: 18px; + margin-bottom: 10px; +} + +.credentials { + width: 265px; +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/TeamEditionConfigurationWindow.uss.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/TeamEditionConfigurationWindow.uss.meta new file mode 100644 index 00000000..e443cdfe --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/TeamEditionConfigurationWindow.uss.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1cd69f37df825af4385cd9efe745fc30 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0} + disableValidation: 0 diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/WaitingSignInPanel.uss b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/WaitingSignInPanel.uss new file mode 100644 index 00000000..c3ebc906 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/WaitingSignInPanel.uss @@ -0,0 +1,11 @@ +@import "Base.uss"; + +#wait { + margin-top: 20px; + padding-top: 40px; +} + +#progressContainer { + padding-top: 3px; + margin-right: 50%; +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/WaitingSignInPanel.uss.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/WaitingSignInPanel.uss.meta new file mode 100644 index 00000000..d6a6d9db --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Assets/Styles/WaitingSignInPanel.uss.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 90945345530e7174eb4f0575a0bec0bf +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0} + disableValidation: 0 diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils.meta new file mode 100644 index 00000000..92b82ebd --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b32be061a815d6947bc3594cdcb94a1c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/AssetsPath.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/AssetsPath.cs new file mode 100644 index 00000000..0946f2f0 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/AssetsPath.cs @@ -0,0 +1,117 @@ +using System.IO; +using System.Reflection; + +using UnityEditor; +using UnityEngine; + +using Codice.Client.Common; +using Codice.Utils; +using PlasticGui; + +namespace Unity.PlasticSCM.Editor.AssetUtils +{ + internal static class AssetsPath + { + internal static class GetFullPath + { + internal static string ForObject(Object obj) + { + string relativePath = AssetDatabase.GetAssetPath(obj); + + if (string.IsNullOrEmpty(relativePath)) + return null; + + return Path.GetFullPath(relativePath); + } + + internal static string ForGuid(string guid) + { + string relativePath = GetAssetPath(guid); + + if (string.IsNullOrEmpty(relativePath)) + return null; + + return Path.GetFullPath(relativePath); + } + } + + internal static class GetFullPathUnderWorkspace + { + internal static string ForAsset( + string wkPath, + string assetPath) + { + if (string.IsNullOrEmpty(assetPath)) + return null; + + string fullPath = Path.GetFullPath(assetPath); + + if (!PathHelper.IsContainedOn(fullPath, wkPath)) + return null; + + return fullPath; + } + + internal static string ForGuid( + string wkPath, + string guid) + { + return ForAsset(wkPath, GetAssetPath(guid)); + } + } + + internal static string GetLayoutsFolderRelativePath() + { + return string.Concat(mAssetsFolderLocation, "/Layouts"); + } + + internal static string GetStylesFolderRelativePath() + { + return string.Concat(mAssetsFolderLocation, "/Styles"); + } + + internal static string GetImagesFolderRelativePath() + { + return string.Concat(mAssetsFolderLocation, "/Images"); + } + + internal static string GetRelativePath(string fullPath) + { + return PathHelper.GetRelativePath( + mProjectFullPath, fullPath).Substring(1); + } + + internal static bool IsRunningAsUPMPackage() + { + string unityPlasticDllPath = Path.GetFullPath( + AssemblyLocation.GetAssemblyDirectory( + Assembly.GetAssembly(typeof(PlasticLocalization)))); + + return Directory.Exists( + Path.GetFullPath(Path.Combine( + unityPlasticDllPath, + // assets relative path when running as a UPM package + "../../../Editor/PlasticSCM/Assets"))); + } + + static string GetAssetPath(string guid) + { + if (string.IsNullOrEmpty(guid)) + return null; + + return AssetDatabase.GUIDToAssetPath(guid); + } + + static AssetsPath() + { + mAssetsFolderLocation = (IsRunningAsUPMPackage()) ? + "Packages/com.unity.collab-proxy/Editor/PlasticSCM/Assets" : + "Assets/Plugins/PlasticSCM/Editor/Assets"; + } + + static string mProjectFullPath = ProjectPath. + FromApplicationDataPath(ApplicationDataPath.Get()); + + static string mAssetsFolderLocation; + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/AssetsPath.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/AssetsPath.cs.meta new file mode 100644 index 00000000..b9e65e55 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/AssetsPath.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: a077a49d9db9de74f827f0568f6e65c2 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/GetSelectedPaths.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/GetSelectedPaths.cs new file mode 100644 index 00000000..05b153a5 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/GetSelectedPaths.cs @@ -0,0 +1,58 @@ +using System.Collections.Generic; +using System.IO; + +using Unity.PlasticSCM.Editor.AssetMenu; +using Unity.PlasticSCM.Editor.AssetsOverlays.Cache; +using UnityEditor.VersionControl; + +namespace Unity.PlasticSCM.Editor.AssetUtils +{ + internal static class GetSelectedPaths + { + internal static List ForOperation( + string wkPath, + AssetList assetList, + IAssetStatusCache assetStatusCache, + AssetMenuOperations operation) + { + List selectedPaths = AssetsSelection. + GetSelectedPaths(wkPath, assetList); + + List result = new List(selectedPaths); + + foreach (string path in selectedPaths) + { + if (MetaPath.IsMetaPath(path)) + continue; + + string metaPath = MetaPath.GetMetaPath(path); + + if (!File.Exists(metaPath)) + continue; + + if (result.Contains(metaPath)) + continue; + + if (!IsApplicableForOperation( + metaPath, false, operation, assetStatusCache)) + continue; + + result.Add(metaPath); + } + + return result; + } + + static bool IsApplicableForOperation( + string path, + bool isDirectory, + AssetMenuOperations operation, + IAssetStatusCache assetStatusCache) + { + SelectedAssetGroupInfo info = SelectedAssetGroupInfo.BuildFromSingleFile( + path, isDirectory, assetStatusCache); + + return AssetMenuUpdater.GetAvailableMenuOperations(info).HasFlag(operation); + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/GetSelectedPaths.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/GetSelectedPaths.cs.meta new file mode 100644 index 00000000..14c7e690 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/GetSelectedPaths.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d9369fa547ca81b4fafa42a3e74c1b7a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/LoadAsset.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/LoadAsset.cs new file mode 100644 index 00000000..5cd18a76 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/LoadAsset.cs @@ -0,0 +1,46 @@ +using System; +using System.IO; + +using UnityEditor; + +using Codice.Client.BaseCommands; + +namespace Unity.PlasticSCM.Editor.AssetUtils +{ + internal static class LoadAsset + { + internal static UnityEngine.Object FromChangeInfo(ChangeInfo changeInfo) + { + string changeFullPath = changeInfo.GetFullPath(); + + if (MetaPath.IsMetaPath(changeFullPath)) + changeFullPath = MetaPath.GetPathFromMetaPath(changeFullPath); + + return FromFullPath(changeFullPath); + } + + static UnityEngine.Object FromFullPath(string fullPath) + { + if (!IsPathUnderProject(fullPath)) + return null; + + return AssetDatabase.LoadMainAssetAtPath( + AssetsPath.GetRelativePath(fullPath)); + } + + static bool IsPathUnderProject(string path) + { + if (string.IsNullOrEmpty(path)) + return false; + + var fullPath = Path.GetFullPath(path).Replace('\\', '/'); + + return fullPath.StartsWith( + mProjectRelativePath, + StringComparison.OrdinalIgnoreCase); + } + + static string mProjectRelativePath = + Directory.GetCurrentDirectory().Replace('\\', '/') + '/'; + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/LoadAsset.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/LoadAsset.cs.meta new file mode 100644 index 00000000..917b0dea --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/LoadAsset.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 91f74d588534bef42ac4b919a2ece84a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor.meta new file mode 100644 index 00000000..394d0435 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e5a9787c5ed94504798db0c3330424fe +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetModificationProcessor.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetModificationProcessor.cs new file mode 100644 index 00000000..27597d8c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetModificationProcessor.cs @@ -0,0 +1,99 @@ +using UnityEditor; + +using Unity.PlasticSCM.Editor.AssetsOverlays.Cache; +using Unity.PlasticSCM.Editor.UI; +using AssetOverlays = Unity.PlasticSCM.Editor.AssetsOverlays; + +namespace Unity.PlasticSCM.Editor.AssetUtils.Processor +{ + class AssetModificationProcessor : UnityEditor.AssetModificationProcessor + { + internal static bool ForceCheckout { get; private set; } + + /* We need to do a checkout, verifying that the content/date or size has changed. + * In order to do this checkout we need the changes to have reached the disk. + * That's why we save the changed files in this array, and when they are reloaded + * in AssetPostprocessor.OnPostprocessAllAssets we process them. */ + internal static string[] ModifiedAssets { get; set; } + + static AssetModificationProcessor() + { + ForceCheckout = EditorPrefs.GetBool( + UnityConstants.FORCE_CHECKOUT_KEY_NAME); + } + + internal static void Enable( + string wkPath, + IAssetStatusCache assetStatusCache) + { + mWkPath = wkPath; + mAssetStatusCache = assetStatusCache; + + mIsEnabled = true; + } + + internal static void Disable() + { + mIsEnabled = false; + + mWkPath = null; + mAssetStatusCache = null; + } + + internal static void SetForceCheckoutOption(bool isEnabled) + { + ForceCheckout = isEnabled; + + EditorPrefs.SetBool( + UnityConstants.FORCE_CHECKOUT_KEY_NAME, + isEnabled); + } + + static string[] OnWillSaveAssets(string[] paths) + { + if (!mIsEnabled) + return paths; + + ModifiedAssets = (string[])paths.Clone(); + + return paths; + } + + static bool IsOpenForEdit(string assetPath, out string message) + { + message = string.Empty; + + if (!mIsEnabled) + return true; + + if (!ForceCheckout) + return true; + + if (assetPath.StartsWith("ProjectSettings/")) + return true; + + string assetFullPath = AssetsPath.GetFullPathUnderWorkspace. + ForAsset(mWkPath, assetPath); + + if (assetFullPath == null) + return true; + + if (MetaPath.IsMetaPath(assetFullPath)) + assetFullPath = MetaPath.GetPathFromMetaPath(assetFullPath); + + AssetOverlays.AssetStatus status = mAssetStatusCache. + GetStatus(assetFullPath); + + if (AssetOverlays.ClassifyAssetStatus.IsAdded(status) || + AssetOverlays.ClassifyAssetStatus.IsCheckedOut(status)) + return true; + + return !AssetOverlays.ClassifyAssetStatus.IsControlled(status); + } + + static bool mIsEnabled; + + static IAssetStatusCache mAssetStatusCache; + static string mWkPath; + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetModificationProcessor.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetModificationProcessor.cs.meta new file mode 100644 index 00000000..7f919287 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetModificationProcessor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c53c624438663f74ab67fbdf8869ae18 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetPostprocessor.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetPostprocessor.cs new file mode 100644 index 00000000..769e9c3b --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetPostprocessor.cs @@ -0,0 +1,141 @@ +using System.Collections.Generic; + +using Codice.Client.Common.FsNodeReaders.Watcher; + +namespace Unity.PlasticSCM.Editor.AssetUtils.Processor +{ + class AssetPostprocessor : UnityEditor.AssetPostprocessor + { + internal struct PathToMove + { + internal readonly string SrcPath; + internal readonly string DstPath; + + internal PathToMove(string srcPath, string dstPath) + { + SrcPath = srcPath; + DstPath = dstPath; + } + } + + internal static void Enable( + string wkPath, + PlasticAssetsProcessor plasticAssetsProcessor) + { + mWkPath = wkPath; + mPlasticAssetsProcessor = plasticAssetsProcessor; + + mIsEnabled = true; + } + + internal static void Disable() + { + mIsEnabled = false; + + mWkPath = null; + mPlasticAssetsProcessor = null; + } + + internal static void SetIsRepaintInspectorNeededAfterAssetDatabaseRefresh() + { + mIsRepaintInspectorNeededAfterAssetDatabaseRefresh = true; + } + + static void OnPostprocessAllAssets( + string[] importedAssets, + string[] deletedAssets, + string[] movedAssets, + string[] movedFromAssetPaths) + { + if (!mIsEnabled) + return; + + if (mIsRepaintInspectorNeededAfterAssetDatabaseRefresh) + { + mIsRepaintInspectorNeededAfterAssetDatabaseRefresh = false; + RepaintInspector.All(); + } + + // We need to ensure that the FSWatcher is enabled before processing Plastic operations + // It fixes the following scenario: + // 1. Close PlasticSCM window + // 2. Create an asset, it appears with the added overlay + // 3. Open PlasticSCM window, the asset should appear as added instead of deleted locally + MonoFileSystemWatcher.IsEnabled = true; + + mPlasticAssetsProcessor.MoveOnSourceControl( + GetPathsToMoveContainedOnWorkspace( + mWkPath, movedAssets, movedFromAssetPaths)); + + mPlasticAssetsProcessor.DeleteFromSourceControl( + GetPathsContainedOnWorkspace(mWkPath, deletedAssets)); + + mPlasticAssetsProcessor.AddToSourceControl( + GetPathsContainedOnWorkspace(mWkPath, importedAssets)); + + if (AssetModificationProcessor.ModifiedAssets == null) + return; + + mPlasticAssetsProcessor.CheckoutOnSourceControl( + GetPathsContainedOnWorkspace( + mWkPath, AssetModificationProcessor.ModifiedAssets)); + + AssetModificationProcessor.ModifiedAssets = null; + } + + static List GetPathsToMoveContainedOnWorkspace( + string wkPath, + string[] movedAssets, + string[] movedFromAssetPaths) + { + List result = new List( + movedAssets.Length); + + for (int i = 0; i < movedAssets.Length; i++) + { + string fullSrcPath = AssetsPath.GetFullPathUnderWorkspace. + ForAsset(wkPath, movedFromAssetPaths[i]); + + if (fullSrcPath == null) + continue; + + string fullDstPath = AssetsPath.GetFullPathUnderWorkspace. + ForAsset(wkPath, movedAssets[i]); + + if (fullDstPath == null) + continue; + + result.Add(new PathToMove( + fullSrcPath, fullDstPath)); + } + + return result; + } + + static List GetPathsContainedOnWorkspace( + string wkPath, string[] assets) + { + List result = new List( + assets.Length); + + foreach (string asset in assets) + { + string fullPath = AssetsPath.GetFullPathUnderWorkspace. + ForAsset(wkPath, asset); + + if (fullPath == null) + continue; + + result.Add(fullPath); + } + + return result; + } + + static bool mIsEnabled; + static bool mIsRepaintInspectorNeededAfterAssetDatabaseRefresh; + + static PlasticAssetsProcessor mPlasticAssetsProcessor; + static string mWkPath; + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetPostprocessor.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetPostprocessor.cs.meta new file mode 100644 index 00000000..ecd4f184 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetPostprocessor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e9ffdef169b1cbb4e9910671a9ee83bc +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetsProcessor.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetsProcessor.cs new file mode 100644 index 00000000..45d7f3b5 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetsProcessor.cs @@ -0,0 +1,22 @@ +using Unity.PlasticSCM.Editor.AssetsOverlays.Cache; + +namespace Unity.PlasticSCM.Editor.AssetUtils.Processor +{ + internal static class AssetsProcessors + { + internal static void Enable( + string wkPath, + PlasticAssetsProcessor plasticAssetsProcessor, + IAssetStatusCache assetStatusCache) + { + AssetPostprocessor.Enable(wkPath, plasticAssetsProcessor); + AssetModificationProcessor.Enable(wkPath, assetStatusCache); + } + + internal static void Disable() + { + AssetPostprocessor.Disable(); + AssetModificationProcessor.Disable(); + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetsProcessor.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetsProcessor.cs.meta new file mode 100644 index 00000000..c8165bc6 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/AssetsProcessor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 71cb30384b5f8d64ea7df220cff88d0c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/PlasticAssetsProcessor.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/PlasticAssetsProcessor.cs new file mode 100644 index 00000000..8dee2913 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/PlasticAssetsProcessor.cs @@ -0,0 +1,107 @@ +using System; +using System.Collections.Generic; + +using Codice.LogWrapper; + +namespace Unity.PlasticSCM.Editor.AssetUtils.Processor +{ + internal class PlasticAssetsProcessor : WorkspaceOperationsMonitor.IDisableAssetsProcessor + { + internal void SetWorkspaceOperationsMonitor( + WorkspaceOperationsMonitor workspaceOperationsMonitor) + { + mWorkspaceOperationsMonitor = workspaceOperationsMonitor; + } + + internal void AddToSourceControl(List paths) + { + if (paths.Count == 0) + return; + + if (IsDisableBecauseExceptionHappened(DateTime.Now)) + { + mLog.Warn( + "PlasticAssetsProcessor skipping AddToSourceControl operation " + + "because an exception happened in the last 60 seconds"); + return; + } + + foreach (string path in paths) + mLog.DebugFormat("AddToSourceControl: {0}", path); + + mWorkspaceOperationsMonitor.AddAssetsProcessorPathsToAdd(paths); + } + + internal void DeleteFromSourceControl(List paths) + { + if (paths.Count == 0) + return; + + if (IsDisableBecauseExceptionHappened(DateTime.Now)) + { + mLog.Warn( + "PlasticAssetsProcessor skipping DeleteFromSourceControl operation " + + "because an exception happened in the last 60 seconds"); + return; + } + + foreach (string path in paths) + mLog.DebugFormat("DeleteFromSourceControl: {0}", path); + + mWorkspaceOperationsMonitor.AddAssetsProcessorPathsToDelete(paths); + } + + internal void MoveOnSourceControl(List paths) + { + if (paths.Count == 0) + return; + + if (IsDisableBecauseExceptionHappened(DateTime.Now)) + { + mLog.Warn( + "PlasticAssetsProcessor skipping MoveOnSourceControl operation " + + "because an exception happened in the last 60 seconds"); + return; + } + + foreach (AssetPostprocessor.PathToMove path in paths) + mLog.DebugFormat("MoveOnSourceControl: {0} to {1}", path.SrcPath, path.DstPath); + + mWorkspaceOperationsMonitor.AddAssetsProcessorPathsToMove(paths); + } + + internal void CheckoutOnSourceControl(List paths) + { + if (paths.Count == 0) + return; + + if (IsDisableBecauseExceptionHappened(DateTime.Now)) + { + mLog.Warn( + "PlasticAssetsProcessor skipping CheckoutOnSourceControl operation " + + "because an exception happened in the last 60 seconds"); + return; + } + + foreach (string path in paths) + mLog.DebugFormat("CheckoutOnSourceControl: {0}", path); + + mWorkspaceOperationsMonitor.AddAssetsProcessorPathsToCheckout(paths); + } + + void WorkspaceOperationsMonitor.IDisableAssetsProcessor.Disable() + { + mLastExceptionDateTime = DateTime.Now; + } + + bool IsDisableBecauseExceptionHappened(DateTime now) + { + return (now - mLastExceptionDateTime).TotalSeconds < 5; + } + + DateTime mLastExceptionDateTime = DateTime.MinValue; + WorkspaceOperationsMonitor mWorkspaceOperationsMonitor; + + static readonly ILog mLog = LogManager.GetLogger("PlasticAssetsProcessor"); + } +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/PlasticAssetsProcessor.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/PlasticAssetsProcessor.cs.meta new file mode 100644 index 00000000..9f7c4913 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/PlasticAssetsProcessor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d3daa94b5fca9a648b12f6ef2aae752f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/WorkspaceOperationsMonitor.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/WorkspaceOperationsMonitor.cs new file mode 100644 index 00000000..7754ae07 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/WorkspaceOperationsMonitor.cs @@ -0,0 +1,536 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.IO; +using System.Threading; + +using Codice.Client.BaseCommands; +using Codice.Client.Commands; +using Codice.Client.Commands.WkTree; +using Codice.LogWrapper; +using GluonGui; +using PlasticGui; +using PlasticGui.WorkspaceWindow; +using Unity.PlasticSCM.Editor.UI; +using Unity.PlasticSCM.Editor.Views.IncomingChanges; +using Unity.PlasticSCM.Editor.Views.PendingChanges; + +namespace Unity.PlasticSCM.Editor.AssetUtils.Processor +{ + internal class WorkspaceOperationsMonitor + { + public interface IDisableAssetsProcessor + { + void Disable(); + } + + internal WorkspaceOperationsMonitor( + IPlasticAPI plasticApi, + IDisableAssetsProcessor disableAssetsProcessor, + bool isGluonMode) + { + mPlasticAPI = plasticApi; + mDisableAssetsProcessor = disableAssetsProcessor; + mIsGluonMode = isGluonMode; + } + + internal void RegisterWindow( + WorkspaceWindow workspaceWindow, + ViewHost viewHost, + NewIncomingChangesUpdater incomingChangesUpdater) + { + mWorkspaceWindow = workspaceWindow; + mViewHost = viewHost; + mNewIncomingChangesUpdater = incomingChangesUpdater; + } + + internal void UnRegisterWindow() + { + mWorkspaceWindow = null; + mViewHost = null; + mNewIncomingChangesUpdater = null; + } + + internal void RegisterPendingChangesView( + PendingChangesTab pendingChangesTab) + { + mPendingChangesTab = pendingChangesTab; + } + + internal void RegisterIncomingChangesView( + IIncomingChangesTab incomingChangesTab) + { + mIncomingChangesTab = incomingChangesTab; + } + + internal void UnRegisterViews() + { + mPendingChangesTab = null; + mIncomingChangesTab = null; + } + + internal void Start() + { + mIsRunning = true; + + Thread thread = new Thread(TaskLoopThread); + thread.IsBackground = true; + thread.Start(); + } + + internal void Stop() + { + SetAsFinished(); + } + + internal void AddAssetsProcessorPathsToAdd( + List paths) + { + AddPathsToProcess( + mAssetsProcessorPathsToAdd, paths, + mLock, mResetEvent); + } + + internal void AddAssetsProcessorPathsToDelete( + List paths) + { + AddPathsToProcess( + mAssetsProcessorPathsToDelete, paths, + mLock, mResetEvent); + } + + internal void AddAssetsProcessorPathsToCheckout( + List paths) + { + AddPathsToProcess( + mAssetsProcessorPathsToCheckout, paths, + mLock, mResetEvent); + } + + internal void AddAssetsProcessorPathsToMove( + List paths) + { + AddPathsToMoveToProcess( + mAssetsProcessorPathsToMove, paths, + mLock, mResetEvent); + } + + internal void AddPathsToCheckout( + List paths) + { + AddPathsToProcess( + mPathsToCheckout, paths, + mLock, mResetEvent); + } + + void TaskLoopThread() + { + while (true) + { + try + { + if (!mIsRunning) + break; + + ProcessAssetProcessorOperations( + mPlasticAPI, + mAssetsProcessorPathsToAdd, + mAssetsProcessorPathsToDelete, + mAssetsProcessorPathsToCheckout, + mAssetsProcessorPathsToMove, + mLock, + mDisableAssetsProcessor); + + ProcessCheckoutOperation( + mPlasticAPI, + mPathsToCheckout, + mLock); + + bool hasAssetProcessorOperations = false; + bool hasCheckoutOperations = false; + HasPendingOperationsToProcess( + mAssetsProcessorPathsToAdd, + mAssetsProcessorPathsToDelete, + mAssetsProcessorPathsToCheckout, + mAssetsProcessorPathsToMove, + mPathsToCheckout, + mLock, + out hasAssetProcessorOperations, + out hasCheckoutOperations); + + if (hasAssetProcessorOperations || + hasCheckoutOperations) + continue; + + if (!hasAssetProcessorOperations) + EditorDispatcher.Dispatch(AfterAssetProcessorOperation); + + if (!hasCheckoutOperations) + EditorDispatcher.Dispatch(AfterCheckoutOperation); + + SleepUntilNextWorkload(); + } + catch (Exception e) + { + mLog.ErrorFormat( + "Error running the tasks loop : {0}", e.Message); + mLog.DebugFormat( + "Stacktrace: {0}", e.StackTrace); + } + } + } + + void AfterAssetProcessorOperation() + { + AutoRefresh.PendingChangesView( + mPendingChangesTab); + + AutoRefresh.IncomingChangesView( + mIncomingChangesTab); + } + + void AfterCheckoutOperation() + { + RefreshAsset.VersionControlCache(); + + if (mIsGluonMode) + { + RefreshViewsAfterCheckoutForGluon(mViewHost); + return; + } + + if (mNewIncomingChangesUpdater != null) + mNewIncomingChangesUpdater.Update(DateTime.Now); + + RefreshViewsAfterCheckoutForDeveloper(mWorkspaceWindow); + } + + void SetAsFinished() + { + if (!mIsRunning) + return; + + mIsRunning = false; + mResetEvent.Set(); + } + + void SleepUntilNextWorkload() + { + mResetEvent.Reset(); + mResetEvent.WaitOne(); + } + + static void ProcessAssetProcessorOperations( + IPlasticAPI plasticApi, + List assetsProcessorPathsToAdd, + List assetsProcessorPathsToDelete, + List assetsProcessorPathsToCheckout, + List assetsProcessorPathsToMove, + object lockObj, + IDisableAssetsProcessor disableAssetsProcessor) + { + try + { + AssetsProcessorOperations.AddIfNotControlled( + plasticApi, ExtractPathsToProcess( + assetsProcessorPathsToAdd, lockObj), + FilterManager.Get().GetIgnoredFilter()); + + AssetsProcessorOperations.DeleteIfControlled( + plasticApi, ExtractPathsToProcess( + assetsProcessorPathsToDelete, lockObj)); + + AssetsProcessorOperations.CheckoutIfControlledAndChanged( + plasticApi, ExtractPathsToProcess( + assetsProcessorPathsToCheckout, lockObj)); + + AssetsProcessorOperations.MoveIfControlled( + plasticApi, ExtractPathsToMoveToProcess( + assetsProcessorPathsToMove, lockObj)); + } + catch (Exception ex) + { + LogException(ex); + + disableAssetsProcessor.Disable(); + } + } + + static void ProcessCheckoutOperation( + IPlasticAPI plasticApi, + List pathsToProcess, + object lockObj) + { + List paths = ExtractPathsToProcess( + pathsToProcess, lockObj); + + if (paths.Count == 0) + return; + + plasticApi.Checkout( + paths.ToArray(), + CheckoutModifiers.ProcessSymlinks); + } + + static void AddPathsToProcess( + List pathsToProcess, + List paths, + object lockObj, + ManualResetEvent resetEvent) + { + lock (lockObj) + { + pathsToProcess.AddRange(paths); + } + + resetEvent.Set(); + } + + static void AddPathsToMoveToProcess( + List pathsToProcess, + List paths, + object lockObj, + ManualResetEvent resetEvent) + { + lock (lockObj) + { + pathsToProcess.AddRange(paths); + } + + resetEvent.Set(); + } + + static List ExtractPathsToProcess( + List pathsToProcess, + object lockObj) + { + List result; + + lock (lockObj) + { + result = new List(pathsToProcess); + pathsToProcess.Clear(); + } + + return result; + } + + static List ExtractPathsToMoveToProcess( + List pathsToProcess, + object lockObj) + { + List result; + + lock (lockObj) + { + result = new List(pathsToProcess); + pathsToProcess.Clear(); + } + + return result; + } + + static void HasPendingOperationsToProcess( + List assetsProcessorPathsToAdd, + List assetsProcessorPathsToDelete, + List assetsProcessorPathsToCheckout, + List assetsProcessorPathsToMove, + List pathsToCheckout, + object lockObj, + out bool hasAssetProcessorOperations, + out bool hasCheckoutOperations) + { + lock (lockObj) + { + hasAssetProcessorOperations = + assetsProcessorPathsToAdd.Count > 0 || + assetsProcessorPathsToDelete.Count > 0 || + assetsProcessorPathsToCheckout.Count > 0 || + assetsProcessorPathsToMove.Count > 0; + + hasCheckoutOperations = + pathsToCheckout.Count > 0; + } + } + + static void RefreshViewsAfterCheckoutForDeveloper( + IWorkspaceWindow workspaceWindow) + { + if (workspaceWindow == null) + return; + + workspaceWindow.RefreshView(ViewType.BranchExplorerView); + workspaceWindow.RefreshView(ViewType.PendingChangesView); + workspaceWindow.RefreshView(ViewType.HistoryView); + } + + static void RefreshViewsAfterCheckoutForGluon( + ViewHost viewHost) + { + if (viewHost == null) + return; + + viewHost.RefreshView(ViewType.WorkspaceExplorerView); + viewHost.RefreshView(ViewType.CheckinView); + viewHost.RefreshView(ViewType.IncomingChangesView); + viewHost.RefreshView(ViewType.SearchView); + } + + static void LogException(Exception ex) + { + mLog.WarnFormat("Message: {0}", ex.Message); + + mLog.DebugFormat( + "StackTrace:{0}{1}", + Environment.NewLine, ex.StackTrace); + } + + static class AssetsProcessorOperations + { + internal static void AddIfNotControlled( + IPlasticAPI plasticApi, + List paths, + IgnoredFilesFilter ignoredFilter) + { + List result = new List(); + + foreach (string path in paths) + { + string metaPath = MetaPath.GetMetaPath(path); + + if (plasticApi.GetWorkspaceFromPath(path) == null) + return; + + if (plasticApi.GetWorkspaceTreeNode(path) == null && + !ignoredFilter.IsIgnored(path)) + result.Add(path); + + if (File.Exists(metaPath) && + plasticApi.GetWorkspaceTreeNode(metaPath) == null && + !ignoredFilter.IsIgnored(path)) + result.Add(metaPath); + } + + if (result.Count == 0) + return; + + IList checkouts; + plasticApi.Add( + result.ToArray(), + GetDefaultAddOptions(), + out checkouts); + } + + internal static void DeleteIfControlled( + IPlasticAPI plasticApi, + List paths) + { + foreach (string path in paths) + { + string metaPath = MetaPath.GetMetaPath(path); + + if (plasticApi.GetWorkspaceTreeNode(path) != null) + { + plasticApi.DeleteControlled( + path, DeleteModifiers.None); + } + + if (plasticApi.GetWorkspaceTreeNode(metaPath) != null) + { + plasticApi.DeleteControlled( + metaPath, DeleteModifiers.None); + } + } + } + + internal static void MoveIfControlled( + IPlasticAPI plasticApi, + List paths) + { + foreach (AssetPostprocessor.PathToMove pathToMove in paths) + { + string srcMetaPath = MetaPath.GetMetaPath(pathToMove.SrcPath); + string dstMetaPath = MetaPath.GetMetaPath(pathToMove.DstPath); + + if (plasticApi.GetWorkspaceTreeNode(pathToMove.SrcPath) != null) + { + plasticApi.Move( + pathToMove.SrcPath, pathToMove.DstPath, + MoveModifiers.None); + } + + if (plasticApi.GetWorkspaceTreeNode(srcMetaPath) != null) + { + plasticApi.Move( + srcMetaPath, dstMetaPath, + MoveModifiers.None); + } + } + } + + internal static void CheckoutIfControlledAndChanged( + IPlasticAPI plasticApi, + List paths) + { + List result = new List(); + + foreach (string path in paths) + { + string metaPath = MetaPath.GetMetaPath(path); + + WorkspaceTreeNode node = + plasticApi.GetWorkspaceTreeNode(path); + WorkspaceTreeNode nodeMeta = + plasticApi.GetWorkspaceTreeNode(metaPath); + + if (node != null && ChangedFileChecker.IsChanged( + node.LocalInfo, path, false)) + result.Add(path); + + if (nodeMeta != null && ChangedFileChecker.IsChanged( + nodeMeta.LocalInfo, metaPath, false)) + result.Add(metaPath); + } + + if (result.Count == 0) + return; + + plasticApi.Checkout( + result.ToArray(), + CheckoutModifiers.None); + } + + static AddOptions GetDefaultAddOptions() + { + AddOptions options = new AddOptions(); + options.AddPrivateParents = true; + options.NeedCheckPlatformPath = true; + return options; + } + } + + object mLock = new object(); + volatile bool mIsRunning; + volatile ManualResetEvent mResetEvent = new ManualResetEvent(false); + + List mAssetsProcessorPathsToAdd = new List(); + List mAssetsProcessorPathsToDelete = new List(); + List mAssetsProcessorPathsToCheckout = new List(); + List mAssetsProcessorPathsToMove = + new List(); + List mPathsToCheckout = new List(); + + PendingChangesTab mPendingChangesTab; + IIncomingChangesTab mIncomingChangesTab; + + NewIncomingChangesUpdater mNewIncomingChangesUpdater; + ViewHost mViewHost; + IWorkspaceWindow mWorkspaceWindow; + + readonly bool mIsGluonMode = false; + readonly IDisableAssetsProcessor mDisableAssetsProcessor; + readonly IPlasticAPI mPlasticAPI; + + static readonly ILog mLog = LogManager.GetLogger("WorkspaceOperationsMonitor"); + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/WorkspaceOperationsMonitor.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/WorkspaceOperationsMonitor.cs.meta new file mode 100644 index 00000000..aa5bfe82 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/Processor/WorkspaceOperationsMonitor.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: fdec637f96aaa6546ad88a90cae5dcf1 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/ProjectPath.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/ProjectPath.cs new file mode 100644 index 00000000..df091a3c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/ProjectPath.cs @@ -0,0 +1,12 @@ +using System.IO; + +namespace Unity.PlasticSCM.Editor.AssetUtils +{ + internal static class ProjectPath + { + internal static string FromApplicationDataPath(string dataPath) + { + return Path.GetDirectoryName(Path.GetFullPath(dataPath)); + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/ProjectPath.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/ProjectPath.cs.meta new file mode 100644 index 00000000..e334442b --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/ProjectPath.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 6cad902920d2d0e448b4a307b199d8fd +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RefreshAsset.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RefreshAsset.cs new file mode 100644 index 00000000..259a7c8f --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RefreshAsset.cs @@ -0,0 +1,43 @@ +using UnityEditor.PackageManager; + +using Unity.PlasticSCM.Editor.AssetUtils.Processor; + +namespace Unity.PlasticSCM.Editor.AssetUtils +{ + internal static class RefreshAsset + { + internal static void BeforeLongAssetOperation() + { + UnityEditor.AssetDatabase.DisallowAutoRefresh(); + } + + internal static void AfterLongAssetOperation() + { + UnityEditor.AssetDatabase.AllowAutoRefresh(); + + UnityAssetDatabase(); + + // Client is an API to interact with package manager + // Client.Resolve() will resolve any pending packages added or removed from the project. + // https://docs.unity3d.com/ScriptReference/PackageManager.Client.html + Client.Resolve(); + } + + internal static void UnityAssetDatabase() + { + UnityEditor.AssetDatabase.Refresh( + UnityEditor.ImportAssetOptions.Default); + + UnityEditor.VersionControl.Provider.ClearCache(); + + AssetPostprocessor.SetIsRepaintInspectorNeededAfterAssetDatabaseRefresh(); + } + + internal static void VersionControlCache() + { + UnityEditor.VersionControl.Provider.ClearCache(); + + RepaintInspector.All(); + } + } +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RefreshAsset.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RefreshAsset.cs.meta new file mode 100644 index 00000000..ddf89835 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RefreshAsset.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7495e44f1cb132745a310485807e68f6 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RepaintInspector.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RepaintInspector.cs new file mode 100644 index 00000000..03adb72a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RepaintInspector.cs @@ -0,0 +1,17 @@ +using UnityEditor; +using UnityEngine; + +namespace Unity.PlasticSCM.Editor.AssetUtils +{ + internal static class RepaintInspector + { + internal static void All() + { + UnityEditor.Editor[] editors = + Resources.FindObjectsOfTypeAll(); + + foreach (UnityEditor.Editor editor in editors) + editor.Repaint(); + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RepaintInspector.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RepaintInspector.cs.meta new file mode 100644 index 00000000..af6449f7 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/RepaintInspector.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9203e3f44c0ecfd42953709384a56c4d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/SaveAssets.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/SaveAssets.cs new file mode 100644 index 00000000..ce34b073 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/SaveAssets.cs @@ -0,0 +1,137 @@ +using System.IO; +using System.Collections.Generic; + +using UnityEditor; +using UnityEditor.SceneManagement; +using UnityEngine.SceneManagement; + +using Codice.Client.BaseCommands; +using Codice.Client.Common; + +namespace Unity.PlasticSCM.Editor.AssetUtils +{ + internal static class SaveAssets + { + internal static void ForChangesWithConfirmation( + List changes, + out bool isCancelled) + { + ForPaths( + GetPaths(changes), true, + out isCancelled); + } + + internal static void ForPathsWithConfirmation( + List paths, + out bool isCancelled) + { + ForPaths( + paths, true, + out isCancelled); + } + + internal static void ForChangesWithoutConfirmation( + List changes) + { + bool isCancelled; + ForPaths( + GetPaths(changes), false, + out isCancelled); + } + + internal static void ForPathsWithoutConfirmation( + List paths) + { + bool isCancelled; + ForPaths( + paths, false, + out isCancelled); + } + + static void ForPaths( + List paths, + bool askForUserConfirmation, + out bool isCancelled) + { + SaveDirtyScenes( + paths, + askForUserConfirmation, + out isCancelled); + + if (isCancelled) + return; + + AssetDatabase.SaveAssets(); + } + + static void SaveDirtyScenes( + List paths, + bool askForUserConfirmation, + out bool isCancelled) + { + isCancelled = false; + + List scenesToSave = new List(); + + foreach (Scene dirtyScene in GetDirtyScenes()) + { + if (Contains(paths, dirtyScene)) + scenesToSave.Add(dirtyScene); + } + + if (scenesToSave.Count == 0) + return; + + if (askForUserConfirmation) + { + isCancelled = !EditorSceneManager. + SaveModifiedScenesIfUserWantsTo( + scenesToSave.ToArray()); + return; + } + + EditorSceneManager.SaveScenes( + scenesToSave.ToArray()); + } + + static List GetDirtyScenes() + { + List dirtyScenes = new List(); + + for (int i = 0; i < SceneManager.sceneCount; i++) + { + Scene scene = SceneManager.GetSceneAt(i); + + if (!scene.isDirty) + continue; + + dirtyScenes.Add(scene); + } + + return dirtyScenes; + } + + static bool Contains( + List paths, + Scene scene) + { + foreach (string path in paths) + { + if (PathHelper.IsSamePath( + path, + Path.GetFullPath(scene.path))) + return true; + } + + return false; + } + + static List GetPaths(List changeInfos) + { + List result = new List(); + foreach (ChangeInfo change in changeInfos) + result.Add(change.GetFullPath()); + return result; + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/SaveAssets.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/SaveAssets.cs.meta new file mode 100644 index 00000000..c8072e0a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AssetsUtils/SaveAssets.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 802adf99bdbb1a3439a0a09ae5664192 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AutoRefresh.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AutoRefresh.cs new file mode 100644 index 00000000..efc6e505 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AutoRefresh.cs @@ -0,0 +1,27 @@ +using Unity.PlasticSCM.Editor.Views.IncomingChanges; +using Unity.PlasticSCM.Editor.Views.PendingChanges; + +namespace Unity.PlasticSCM.Editor +{ + internal static class AutoRefresh + { + internal static void PendingChangesView(PendingChangesTab pendingChangesTab) + { + if (pendingChangesTab == null) + return; + + pendingChangesTab.AutoRefresh(); + } + + internal static void IncomingChangesView(IIncomingChangesTab incomingChangesTab) + { + if (incomingChangesTab == null) + return; + + if (!incomingChangesTab.IsVisible) + return; + + incomingChangesTab.AutoRefresh(); + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AutoRefresh.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AutoRefresh.cs.meta new file mode 100644 index 00000000..e077d45c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/AutoRefresh.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: a840d4787ba856c4dbaf61207189b00c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CheckWorkspaceTreeNodeStatus.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CheckWorkspaceTreeNodeStatus.cs new file mode 100644 index 00000000..f229f345 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CheckWorkspaceTreeNodeStatus.cs @@ -0,0 +1,35 @@ +using Codice.Client.Commands.WkTree; +using Codice.CM.Common; + +namespace Codice +{ + internal static class CheckWorkspaceTreeNodeStatus + { + internal static bool IsPrivate(WorkspaceTreeNode node) + { + return node == null; + } + + internal static bool IsCheckedOut(WorkspaceTreeNode node) + { + if (node == null) + return false; + + return node.RevInfo.CheckedOut; + } + + internal static bool IsAdded(WorkspaceTreeNode node) + { + if (node == null) + return false; + + return node.RevInfo.CheckedOut && + node.RevInfo.ParentId == -1; + } + + internal static bool IsDirectory(WorkspaceTreeNode node) + { + return node.RevInfo.Type == EnumRevisionType.enDirectory; + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CheckWorkspaceTreeNodeStatus.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CheckWorkspaceTreeNodeStatus.cs.meta new file mode 100644 index 00000000..3327a88f --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CheckWorkspaceTreeNodeStatus.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: f6aa8eca9e9e84840b73620eb177ea9e +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader.meta new file mode 100644 index 00000000..645432c8 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2a088652feef3704ab1221770deb738a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CloudProjectDownloader.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CloudProjectDownloader.cs new file mode 100644 index 00000000..56e1eb44 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CloudProjectDownloader.cs @@ -0,0 +1,89 @@ +using System; +using System.Collections.Generic; +using System.IO; + +using UnityEditor; +using UnityEngine; + +using Codice.LogWrapper; + +namespace Unity.PlasticSCM.Editor.ProjectDownloader +{ + internal static class CloudProjectDownloader + { + internal const string IS_PROJECT_DOWNLOADER_ALREADY_EXECUTED_KEY = + "PlasticSCM.ProjectDownloader.IsAlreadyExecuted"; + + internal const string SHOULD_PROJECT_BE_DOWNLOADED_KEY = + "PlasticSCM.ProjectDownloader.ShouldProjectBeDownloaded"; + + internal static void Initialize() + { + EditorApplication.update += RunOnceWhenAccessTokenIsInitialized; + } + + static void RunOnceWhenAccessTokenIsInitialized() + { + if (string.IsNullOrEmpty(CloudProjectSettings.accessToken)) + return; + + EditorApplication.update -= RunOnceWhenAccessTokenIsInitialized; + + Execute(CloudProjectSettings.accessToken); + } + + static void Execute(string unityAccessToken) + { + if (SessionState.GetBool( + IS_PROJECT_DOWNLOADER_ALREADY_EXECUTED_KEY, false)) + { + return; + } + + DownloadRepository(unityAccessToken); + + SessionState.SetBool( + IS_PROJECT_DOWNLOADER_ALREADY_EXECUTED_KEY, true); + } + + internal static void DownloadRepository(string unityAccessToken) + { + DownloadRepository(unityAccessToken, Environment.GetCommandLineArgs()); + } + + internal static void DownloadRepository(string unityAccessToken, string[] commandLineArgs) + { + Dictionary args = CommandLineArguments.Build(commandLineArgs); + + mLog.DebugFormat( + "Processing Unity arguments: {0}", string.Join(" ", commandLineArgs)); + + string projectPath = ParseArguments.ProjectPath(args); + string cloudRepository = ParseArguments.CloudProject(args); + string cloudOrganization = ParseArguments.CloudOrganization(args); + + if (string.IsNullOrEmpty(projectPath) || + string.IsNullOrEmpty(cloudRepository) || + string.IsNullOrEmpty(cloudOrganization)) + { + return; + } + + SessionState.SetBool( + SHOULD_PROJECT_BE_DOWNLOADED_KEY, true); + + PlasticApp.InitializeIfNeeded(); + + DownloadRepositoryOperation downloadOperation = + new DownloadRepositoryOperation(); + + downloadOperation.DownloadRepositoryToPathIfNeeded( + cloudRepository, + cloudOrganization, + Path.GetFullPath(projectPath), + unityAccessToken); + } + + static readonly ILog mLog = LogManager.GetLogger("ProjectDownloader"); + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CloudProjectDownloader.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CloudProjectDownloader.cs.meta new file mode 100644 index 00000000..4044f6b5 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CloudProjectDownloader.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 94a5d27698bed3d42beabebcedbf1f23 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CommandLineArguments.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CommandLineArguments.cs new file mode 100644 index 00000000..1b3a9b6e --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CommandLineArguments.cs @@ -0,0 +1,58 @@ +using System; +using System.Collections.Generic; + +namespace Unity.PlasticSCM.Editor.ProjectDownloader +{ + internal class CommandLineArguments + { + internal static Dictionary Build(string[] args) + { + Dictionary result = new Dictionary( + StringComparer.OrdinalIgnoreCase); + + if (args == null) + return result; + List trimmedArguments = TrimArgs(args); + + int index = 1; + + while (true) + { + if (index > trimmedArguments.Count - 1) + break; + + if (IsKeyValueArgumentAtIndex(trimmedArguments, index)) + { + result[trimmedArguments[index]] = trimmedArguments[index + 1]; + index += 2; + continue; + } + + result[trimmedArguments[index]] = null; + index += 1; + } + + return result; + } + + static List TrimArgs(string[] args) + { + List trimmedArguments = new List(); + + foreach (string argument in args) + trimmedArguments.Add(argument.Trim()); + + return trimmedArguments; + } + + static bool IsKeyValueArgumentAtIndex( + List trimmedArguments, + int index) + { + if (index + 1 > trimmedArguments.Count -1) + return false; + + return !trimmedArguments[index + 1].StartsWith("-"); + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CommandLineArguments.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CommandLineArguments.cs.meta new file mode 100644 index 00000000..f9e83f24 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/CommandLineArguments.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 4675673a75b20a14da0806d155b5680c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/DownloadRepositoryOperation.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/DownloadRepositoryOperation.cs new file mode 100644 index 00000000..dadb041a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/DownloadRepositoryOperation.cs @@ -0,0 +1,218 @@ +using System; +using System.Threading; + +using UnityEditor; + +using Codice.Client.BaseCommands; +using Codice.Client.Commands; +using Codice.CM.Common; +using Codice.LogWrapper; +using PlasticGui; +using PlasticGui.WebApi; +using PlasticGui.WorkspaceWindow; +using PlasticGui.WorkspaceWindow.Update; +using Unity.PlasticSCM.Editor.AssetUtils; +using Unity.PlasticSCM.Editor.UI; +using Unity.PlasticSCM.Editor.WebApi; +using Unity.PlasticSCM.Editor.Configuration; + +namespace Unity.PlasticSCM.Editor.ProjectDownloader +{ + internal class DownloadRepositoryOperation + { + internal void DownloadRepositoryToPathIfNeeded( + string cloudRepository, + string cloudOrganization, + string projectPath, + string unityAccessToken) + { + RefreshAsset.BeforeLongAssetOperation(); + + try + { + BuildProgressSpeedAndRemainingTime.ProgressData progressData = + new BuildProgressSpeedAndRemainingTime.ProgressData(DateTime.Now); + + ThreadPool.QueueUserWorkItem( + DownloadRepository, + new DownloadRepositoryParameters() + { + CloudOrganization = cloudOrganization, + CloudRepository = cloudRepository, + ProjectPath = projectPath, + AccessToken = unityAccessToken + }); + + while (!mOperationFinished) + { + if (mDisplayProgress) + { + DisplayProgress( + mUpdateNotifier.GetUpdateStatus(), + progressData, + cloudRepository); + } + + Thread.Sleep(150); + } + } + finally + { + EditorUtility.ClearProgressBar(); + + RefreshAsset.AfterLongAssetOperation(); + + if (!mOperationFailed) + { + PlasticPlugin.Enable(); + ShowWindow.PlasticAfterDownloadingProject(); + } + } + } + + void DownloadRepository(object state) + { + DownloadRepositoryParameters parameters = (DownloadRepositoryParameters)state; + + try + { + if (FindWorkspace.HasWorkspace(parameters.ProjectPath)) + { + // each domain reload, the package is reloaded. + // way need to check if we already downloaded it + return; + } + + mDisplayProgress = true; + + IPlasticWebRestApi restApi = new PlasticWebRestApi(); + string defaultCloudAlias = restApi.GetDefaultCloudAlias(); + + RepositorySpec repSpec = BuildRepSpec( + parameters.CloudRepository, + parameters.CloudOrganization, + defaultCloudAlias); + + TokenExchangeResponse tokenExchangeResponse = + AutoConfig.PlasticCredentials( + parameters.AccessToken, + repSpec.Server, + parameters.ProjectPath); + + if (tokenExchangeResponse.Error != null) + { + mOperationFailed = true; + + UnityEngine.Debug.LogErrorFormat( + PlasticLocalization.GetString(PlasticLocalization.Name.ErrorDownloadingCloudProject), + string.Format("Unable to get TokenExchangeResponse: {0} [code {1}]", + tokenExchangeResponse.Error.Message, + tokenExchangeResponse.Error.ErrorCode)); + return; + } + + WorkspaceInfo wkInfo = CreateWorkspace( + repSpec, parameters.ProjectPath); + + mLog.DebugFormat("Created workspace {0} on {1}", + wkInfo.Name, + wkInfo.ClientPath); + + PlasticGui.Plastic.API.Update( + wkInfo.ClientPath, + UpdateFlags.None, + null, + mUpdateNotifier); + } + catch (Exception ex) + { + LogException(ex); + + UnityEngine.Debug.LogErrorFormat( + PlasticLocalization.GetString(PlasticLocalization.Name.ErrorDownloadingCloudProject), + ex.Message); + + mOperationFailed = true; + } + finally + { + mOperationFinished = true; + } + } + + static void DisplayProgress( + UpdateOperationStatus status, + BuildProgressSpeedAndRemainingTime.ProgressData progressData, + string cloudRepository) + { + string totalProgressMessage = UpdateProgressRender. + GetProgressString(status, progressData); + + float totalProgressPercent = GetProgressBarPercent. + ForTransfer(status.UpdatedSize, status.TotalSize) / 100f; + + EditorUtility.DisplayProgressBar( + string.Format("{0} {1}", + PlasticLocalization.GetString(PlasticLocalization.Name.DownloadingProgress), + cloudRepository), + totalProgressMessage, totalProgressPercent); + } + + static WorkspaceInfo CreateWorkspace( + RepositorySpec repositorySpec, + string projectPath) + { + CreateWorkspaceDialogUserAssistant assistant = new CreateWorkspaceDialogUserAssistant( + PlasticGuiConfig.Get().Configuration.DefaultWorkspaceRoot, + PlasticGui.Plastic.API.GetAllWorkspacesArray()); + + assistant.RepositoryChanged( + repositorySpec.ToString(), + string.Empty, + string.Empty); + + return PlasticGui.Plastic.API.CreateWorkspace( + projectPath, + assistant.GetProposedWorkspaceName(), + repositorySpec.ToString()); + } + + static RepositorySpec BuildRepSpec( + string cloudRepository, + string cloudOrganization, + string defaultCloudAlias) + { + return new RepositorySpec() + { + Name = cloudRepository, + Server = CloudServer.BuildFullyQualifiedName( + cloudOrganization, defaultCloudAlias) + }; + } + + static void LogException(Exception ex) + { + mLog.WarnFormat("Message: {0}", ex.Message); + + mLog.DebugFormat( + "StackTrace:{0}{1}", + Environment.NewLine, ex.StackTrace); + } + + class DownloadRepositoryParameters + { + internal string CloudRepository; + internal string CloudOrganization; + internal string ProjectPath; + internal string AccessToken; + } + + volatile bool mOperationFinished = false; + volatile bool mOperationFailed = false; + volatile bool mDisplayProgress; + + UpdateNotifier mUpdateNotifier = new UpdateNotifier(); + + static readonly ILog mLog = LogManager.GetLogger("DownloadRepositoryOperation"); + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/DownloadRepositoryOperation.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/DownloadRepositoryOperation.cs.meta new file mode 100644 index 00000000..e4e4a755 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/DownloadRepositoryOperation.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 608efd4e185fb9440bb8550d98e20ca4 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/ParseArguments.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/ParseArguments.cs new file mode 100644 index 00000000..c0c55029 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/ParseArguments.cs @@ -0,0 +1,56 @@ +using System.Collections.Generic; + +namespace Unity.PlasticSCM.Editor.ProjectDownloader +{ + internal static class ParseArguments + { + internal static string CloudProject(Dictionary args) + { + string data; + + if (!args.TryGetValue(CLOUD_PROJECT, out data)) + return null; + + return data; + } + + internal static string CloudOrganization(Dictionary args) + { + string data; + + if (!args.TryGetValue(CLOUD_ORGANIZATION, out data)) + return null; + + if (data == null) + return null; + + return GetOrganizationNameFromData(data); + } + + internal static string ProjectPath(Dictionary args) + { + string data; + + if (!args.TryGetValue(CREATE_PROJECT, out data)) + return null; + + return data; + } + + static string GetOrganizationNameFromData(string data) + { + // data is in format: 151d73c7-38cb-4eec-b11e-34764e707226-danipen-unity + int guidLenght = 36; + + if (data.Length < guidLenght + 1) + return null; + + return data.Substring(guidLenght + 1); + } + + const string CLOUD_PROJECT = "-cloudProject"; + const string CLOUD_ORGANIZATION = "-cloudOrganization"; + const string CREATE_PROJECT = "-createProject"; + + } +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/ParseArguments.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/ParseArguments.cs.meta new file mode 100644 index 00000000..ba74f2b1 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CloudProjectDownloader/ParseArguments.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: f6b5d170f39144847822c10b478f25e5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration.meta new file mode 100644 index 00000000..f65d6739 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ef074903871b8b64d856ee0a54f14a7c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrateCollabProject.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrateCollabProject.cs new file mode 100644 index 00000000..be564cec --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrateCollabProject.cs @@ -0,0 +1,264 @@ +using System; +using System.IO; + +using UnityEditor; +using UnityEngine; + +using Codice.Client.Common.Threading; +using Codice.CM.Common; +using Codice.CM.WorkspaceServer; +using Codice.LogWrapper; +using Unity.PlasticSCM.Editor.AssetUtils; +using Unity.PlasticSCM.Editor.WebApi; +using Unity.PlasticSCM.Editor.ProjectDownloader; + +namespace Unity.PlasticSCM.Editor.CollabMigration +{ + public static class MigrateCollabProject + { + internal static void Initialize() + { + if (SessionState.GetInt( + IS_PROJECT_MIGRATED_ALREADY_CALCULATED_KEY, + MIGRATED_NOT_CALCULATED) == MIGRATED_NOTHING_TO_DO) + return; + + EditorApplication.update += RunOnceWhenAccessTokenAndProjectIdAreInitialized; + } + + internal static void RunOnceWhenAccessTokenAndProjectIdAreInitialized() + { + if (string.IsNullOrEmpty(CloudProjectSettings.accessToken)) + return; + + if (!SetupCloudProjectId.HasCloudProjectId()) + return; + + if (!SessionState.GetBool( + CloudProjectDownloader.IS_PROJECT_DOWNLOADER_ALREADY_EXECUTED_KEY, false)) + return; + + EditorApplication.update -= RunOnceWhenAccessTokenAndProjectIdAreInitialized; + + string projectPath = ProjectPath.FromApplicationDataPath( + ApplicationDataPath.Get()); + + string projectGuid = SetupCloudProjectId.GetCloudProjectId(); + + if (!ShouldProjectBeMigrated(projectPath, projectGuid)) + { + SessionState.SetInt( + IS_PROJECT_MIGRATED_ALREADY_CALCULATED_KEY, + MIGRATED_NOTHING_TO_DO); + return; + } + + Execute( + CloudProjectSettings.accessToken, + projectPath, + projectGuid); + } + + static bool ShouldProjectBeMigrated( + string projectPath, + string projectGuid) + { + if (SessionState.GetBool( + CloudProjectDownloader.SHOULD_PROJECT_BE_DOWNLOADED_KEY, false)) + { + return false; + } + + string collabPath = GetCollabSnapshotFile( + projectPath, projectGuid); + + if (!File.Exists(collabPath)) + { + return false; + } + + if (FindWorkspace.HasWorkspace(ApplicationDataPath.Get())) + { + return false; + } + + return true; + } + + static void Execute( + string unityAccessToken, + string projectPath, + string projectGuid) + { + string headCommitSha = GetCollabHeadCommitSha(projectPath, projectGuid); + + if (string.IsNullOrEmpty(headCommitSha)) + return; + + PlasticApp.InitializeIfNeeded(); + + LaunchMigrationIfProjectIsArchivedAndMigrated( + unityAccessToken, + projectPath, + projectGuid, + headCommitSha); + } + + internal static void DeletePlasticDirectoryIfExists(string projectPath) + { + WorkspaceInfo wkInfo = new WorkspaceInfo("wk", projectPath); + string plasticDirectory = WorkspaceConfigFile.GetPlasticWkConfigPath(wkInfo); + + if (!Directory.Exists(plasticDirectory)) + return; + + Directory.Delete(plasticDirectory, true); + } + + static void LaunchMigrationIfProjectIsArchivedAndMigrated( + string unityAccessToken, + string projectPath, + string projectGuid, + string headCommitSha) + { + IsCollabProjectMigratedResponse isMigratedResponse = null; + ChangesetFromCollabCommitResponse changesetResponse = null; + + IThreadWaiter waiter = ThreadWaiter.GetWaiter(10); + waiter.Execute( + /*threadOperationDelegate*/ delegate + { + isMigratedResponse = WebRestApiClient.PlasticScm. + IsCollabProjectMigrated(unityAccessToken, projectGuid); + + if (isMigratedResponse.Error != null) + return; + + if (!isMigratedResponse.IsMigrated) + return; + + OrganizationCredentials credentials = new OrganizationCredentials(); + credentials.User = isMigratedResponse.Credentials.Email; + credentials.Password = isMigratedResponse.Credentials.Token; + + string webLoginAccessToken = WebRestApiClient.CloudServer.WebLogin( + isMigratedResponse.WebServerUri, + isMigratedResponse.PlasticCloudOrganizationName, + credentials); + + changesetResponse = WebRestApiClient.CloudServer. + GetChangesetFromCollabCommit( + isMigratedResponse.WebServerUri, + isMigratedResponse.PlasticCloudOrganizationName, + webLoginAccessToken, projectGuid, headCommitSha); + }, + /*afterOperationDelegate*/ delegate + { + if (waiter.Exception != null) + { + ExceptionsHandler.LogException( + "IsCollabProjectArchivedAndMigrated", + waiter.Exception); + return; + } + + if (isMigratedResponse.Error != null) + { + mLog.ErrorFormat( + "Unable to get IsCollabProjectMigratedResponse: {0} [code {1}]", + isMigratedResponse.Error.Message, + isMigratedResponse.Error.ErrorCode); + return; + } + + if (!isMigratedResponse.IsMigrated) + { + SessionState.SetInt( + IS_PROJECT_MIGRATED_ALREADY_CALCULATED_KEY, + MIGRATED_NOTHING_TO_DO); + return; + } + + if (changesetResponse.Error != null) + { + mLog.ErrorFormat( + "Unable to get ChangesetFromCollabCommitResponse: {0} [code {1}]", + changesetResponse.Error.Message, + changesetResponse.Error.ErrorCode); + return; + } + + DeletePlasticDirectoryIfExists(projectPath); + + MigrationDialog.Show( + null, + unityAccessToken, + projectPath, + isMigratedResponse.Credentials.Email, + isMigratedResponse.PlasticCloudOrganizationName, + new RepId( + changesetResponse.RepId, + changesetResponse.RepModuleId), + changesetResponse.ChangesetId, + changesetResponse.BranchId, + AfterWorkspaceMigrated); + }); + } + + static void AfterWorkspaceMigrated() + { + SessionState.SetInt( + IS_PROJECT_MIGRATED_ALREADY_CALCULATED_KEY, + MIGRATED_NOTHING_TO_DO); + + CollabPlugin.Disable(); + + mLog.DebugFormat( + "Disabled Collab Plugin after the migration for Project: {0}", + ProjectPath.FromApplicationDataPath(ApplicationDataPath.Get())); + } + + static string GetCollabHeadCommitSha( + string projectPath, + string projectGuid) + { + string collabPath = GetCollabSnapshotFile( + projectPath, projectGuid); + + if (!File.Exists(collabPath)) + return null; + + string text = File.ReadAllText(collabPath); + + string[] chunks = text.Split( + new string[] { "currRevisionID" }, + StringSplitOptions.None); + + string current = chunks[1].Substring(3, 40); + + if (!current.Contains("none")) + return current; + + chunks = text.Split( + new string[] { "headRevisionID" }, + StringSplitOptions.None); + + return chunks[1].Substring(3, 40); + } + + static string GetCollabSnapshotFile( + string projectPath, + string projectGuid) + { + return projectPath + "/Library/Collab/CollabSnapshot_" + projectGuid + ".txt"; + } + + const string IS_PROJECT_MIGRATED_ALREADY_CALCULATED_KEY = + "PlasticSCM.MigrateCollabProject.IsAlreadyCalculated"; + + const int MIGRATED_NOT_CALCULATED = 0; + const int MIGRATED_NOTHING_TO_DO = 1; + + static readonly ILog mLog = LogManager.GetLogger("MigrateCollabProject"); + } +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrateCollabProject.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrateCollabProject.cs.meta new file mode 100644 index 00000000..2224fd36 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrateCollabProject.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ace6856390aa30340afb8eaf8a0168f5 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationDialog.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationDialog.cs new file mode 100644 index 00000000..1045b54f --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationDialog.cs @@ -0,0 +1,417 @@ +using System; + +using UnityEditor; +using UnityEngine; + +using Codice.Client.BaseCommands; +using Codice.Client.BaseCommands.EventTracking; +using Codice.Client.BaseCommands.Sync; +using Codice.Client.Common.Threading; +using Codice.CM.Common; +using Codice.LogWrapper; +using CodiceApp.EventTracking; +using PlasticGui; +using PlasticGui.WorkspaceWindow; +using Unity.PlasticSCM.Editor.UI; +using Unity.PlasticSCM.Editor.UI.Progress; +using Unity.PlasticSCM.Editor.WebApi; +using Unity.PlasticSCM.Editor.Configuration; + +namespace Unity.PlasticSCM.Editor.CollabMigration +{ + internal class MigrationDialog : PlasticDialog + { + protected override Rect DefaultRect + { + get + { + var baseRect = base.DefaultRect; + return new Rect(baseRect.x, baseRect.y, 710, 260); + } + } + + protected override string GetTitle() + { + return "Upgrade your Collaborate project to Unity Version Control"; + } + + //TODO: localize the strings + protected override void OnModalGUI() + { + GUILayout.BeginHorizontal(); + + DoIconArea(); + + GUILayout.Space(20); + + DoContentArea(); + + GUILayout.EndHorizontal(); + + DoButtonsArea(); + + mProgressControls.UpdateDeterminateProgress(this); + } + + internal static bool Show( + EditorWindow parentWindow, + string unityAccessToken, + string projectPath, + string user, + string organizationName, + RepId repId, + long changesetId, + long branchId, + Action afterWorkspaceMigratedAction) + { + MigrationDialog dialog = Create( + unityAccessToken, + projectPath, + user, + organizationName, + repId, + changesetId, + branchId, + afterWorkspaceMigratedAction, + new ProgressControlsForMigration()); + + return dialog.RunModal(parentWindow) == ResponseType.Ok; + } + + void DoIconArea() + { + GUILayout.BeginVertical(); + + GUILayout.Space(30); + + Rect iconRect = GUILayoutUtility.GetRect( + GUIContent.none, EditorStyles.label, + GUILayout.Width(60), GUILayout.Height(60)); + + GUI.DrawTexture( + iconRect, + Images.GetPlasticIcon(), + ScaleMode.ScaleToFit); + + GUILayout.EndVertical(); + } + + void DoContentArea() + { + GUILayout.BeginVertical(); + + Title("Upgrade your Collaborate project to Unity Version Control"); + + GUILayout.Space(20); + + Paragraph("Your Unity project has been upgraded (from Collaborate) to Unity Version Control free" + + " of charge by your administrator. Your local workspace will now be converted to a" + + " Unity Version Control workspace in just a few minutes. Select “Migrate” to start the conversion process."); + + DrawProgressForMigration.For( + mProgressControls.ProgressData); + + GUILayout.Space(40); + + GUILayout.EndVertical(); + } + + //TODO: localize the strings + void DoButtonsArea() + { + using (new EditorGUILayout.HorizontalScope()) + { + GUILayout.FlexibleSpace(); + + if (Application.platform == RuntimePlatform.WindowsEditor) + { + DoOkButton(); + DoCloseButton(); + return; + } + + DoCloseButton(); + DoOkButton(); + } + } + + void DoOkButton() + { + if (mIsMigrationCompleted) + { + DoOpenPlasticButton(); + return; + } + + DoMigrateButton(); + } + + void DoCloseButton() + { + GUI.enabled = !mProgressControls.ProgressData.IsOperationRunning; + + if (NormalButton(PlasticLocalization.GetString( + PlasticLocalization.Name.CloseButton))) + { + if (mIsMigrationCompleted) + TrackFeatureUseEvent.For( + PlasticGui.Plastic.API.GetRepositorySpec(mWorkspaceInfo), + TrackFeatureUseEvent.Features.CloseDialogAfterWorkspaceMigration); + else + TrackFeatureUseEvent.For( + GetEventCloudOrganizationInfo(), + TrackFeatureUseEvent.Features.DoNotMigrateWorkspace); + + CloseButtonAction(); + } + + GUI.enabled = true; + } + + void DoOpenPlasticButton() + { + if (!NormalButton("Open Unity Version Control")) + return; + + TrackFeatureUseEvent.For( + PlasticGui.Plastic.API.GetRepositorySpec(mWorkspaceInfo), + TrackFeatureUseEvent.Features.OpenPlasticAfterWorkspaceMigration); + + ((IPlasticDialogCloser)this).CloseDialog(); + ShowWindow.Plastic(); + } + + EventCloudOrganizationInfo GetEventCloudOrganizationInfo() + { + return new EventCloudOrganizationInfo() + { + Name = mOrganizationName, + ServerType = EventCloudOrganizationInfo.GetServerType(true), + User = mUser + }; + } + + void DoMigrateButton() + { + GUI.enabled = !mProgressControls.ProgressData.IsOperationRunning; + + if (NormalButton("Migrate")) + { + if (EditorUtility.DisplayDialog( + "Collab migration to Unity Version Control", + "Are you sure to start the migration process?", + PlasticLocalization.GetString(PlasticLocalization.Name.YesButton), + PlasticLocalization.GetString(PlasticLocalization.Name.NoButton))) + { + TrackFeatureUseEvent.For( + GetEventCloudOrganizationInfo(), + TrackFeatureUseEvent.Features.MigrateWorkspace); + + LaunchMigration( + mUnityAccessToken, mProjectPath, + mOrganizationName, mRepId, + mChangesetId, mBranchId, + mAfterWorkspaceMigratedAction, + mProgressControls); + } + else + { + TrackFeatureUseEvent.For( + GetEventCloudOrganizationInfo(), + TrackFeatureUseEvent.Features.DoNotMigrateWorkspace); + } + } + + GUI.enabled = true; + } + + static void UpdateProgress(string wkPath, + CreateWorkspaceFromCollab.Progress progress, + ProgressControlsForMigration progressControls, + BuildProgressSpeedAndRemainingTime.ProgressData progressData) + { + string header = MigrationProgressRender.FixNotificationPath( + wkPath, progress.CurrentFile); + + string message = MigrationProgressRender.GetProgressString( + progress, + progressData, + DateTime.Now, + 0.05, + "Calculating...", + "Converted {0} of {1}bytes ({2} of 1 file){4}", + "Converted {0} of {1}bytes ({2} of {3} files {4})", + "remaining"); + + float percent = GetProgressBarPercent.ForTransfer( + progress.ProcessedSize, progress.TotalSize) / 100f; + + progressControls.ShowProgress(header, message, percent); + } + + void LaunchMigration( + string unityAccessToken, + string projectPath, + string organizationName, + RepId repId, + long changesetId, + long branchId, + Action afterWorkspaceMigratedAction, + ProgressControlsForMigration progressControls) + { + string serverName = string.Format( + "{0}@cloud", organizationName); + + TokenExchangeResponse tokenExchangeResponse = null; + mWorkspaceInfo = null; + + CreateWorkspaceFromCollab.Progress progress = new CreateWorkspaceFromCollab.Progress(); + + BuildProgressSpeedAndRemainingTime.ProgressData progressData = + new BuildProgressSpeedAndRemainingTime.ProgressData(DateTime.Now); + + IThreadWaiter waiter = ThreadWaiter.GetWaiter(10); + waiter.Execute( + /*threadOperationDelegate*/ + delegate + { + tokenExchangeResponse = AutoConfig.PlasticCredentials( + unityAccessToken, + serverName, + projectPath); + + if (tokenExchangeResponse.Error != null) + { + return; + } + + RepositoryInfo repInfo = new BaseCommandsImpl(). + GetRepositoryInfo(repId, serverName); + + if (repInfo == null) + { + return; + } + + repInfo.SetExplicitServer(serverName); + + mWorkspaceInfo = CreateWorkspaceFromCollab.Create( + projectPath, repInfo.Name, repInfo, + changesetId, branchId, + progress); + }, + /*afterOperationDelegate*/ + delegate + { + progressControls.HideProgress(); + + if (waiter.Exception != null) + { + DisplayException(progressControls, waiter.Exception); + TrackWorkspaceMigrationFinishedFailureEvent(mWorkspaceInfo); + return; + } + + if (tokenExchangeResponse.Error != null) + { + mLog.ErrorFormat( + "Unable to get TokenExchangeResponse: {0} [code {1}]", + tokenExchangeResponse.Error.Message, + tokenExchangeResponse.Error.ErrorCode); + } + + if (tokenExchangeResponse.Error != null || + mWorkspaceInfo == null) + { + progressControls.ShowError( + "Failed to convert your workspace to Unity Version Control"); + TrackWorkspaceMigrationFinishedFailureEvent(mWorkspaceInfo); + return; + } + + progressControls.ShowSuccess( + "Your workspace has been successfully converted to Unity Version Control"); + + mIsMigrationCompleted = true; + + TrackFeatureUseEvent.For( + PlasticGui.Plastic.API.GetRepositorySpec(mWorkspaceInfo), + TrackFeatureUseEvent.Features.WorkspaceMigrationFinishedSuccess); + + afterWorkspaceMigratedAction(); + }, + /*timerTickDelegate*/ + delegate + { + UpdateProgress(projectPath, progress, progressControls, progressData); + }); + } + + void TrackWorkspaceMigrationFinishedFailureEvent(WorkspaceInfo wkInfo) + { + if (wkInfo == null) + { + TrackFeatureUseEvent.For( + GetEventCloudOrganizationInfo(), + TrackFeatureUseEvent.Features.WorkspaceMigrationFinishedFailure); + return; + } + + TrackFeatureUseEvent.For( + PlasticGui.Plastic.API.GetRepositorySpec(wkInfo), + TrackFeatureUseEvent.Features.WorkspaceMigrationFinishedFailure); + } + + static void DisplayException( + ProgressControlsForMigration progressControls, + Exception ex) + { + ExceptionsHandler.LogException( + "MigrationDialog", ex); + + progressControls.ShowError( + ExceptionsHandler.GetCorrectExceptionMessage(ex)); + } + + static MigrationDialog Create( + string unityAccessToken, + string projectPath, + string user, + string organizationName, + RepId repId, + long changesetId, + long branchId, + Action afterWorkspaceMigratedAction, + ProgressControlsForMigration progressControls) + { + var instance = CreateInstance(); + instance.IsResizable = false; + instance.mUnityAccessToken = unityAccessToken; + instance.mProjectPath = projectPath; + instance.mUser = user; + instance.mOrganizationName = organizationName; + instance.mRepId = repId; + instance.mChangesetId = changesetId; + instance.mBranchId = branchId; + instance.mAfterWorkspaceMigratedAction = afterWorkspaceMigratedAction; + instance.mProgressControls = progressControls; + instance.mEscapeKeyAction = instance.CloseButtonAction; + return instance; + } + + bool mIsMigrationCompleted; + + ProgressControlsForMigration mProgressControls; + Action mAfterWorkspaceMigratedAction; + long mChangesetId; + long mBranchId; + RepId mRepId; + string mOrganizationName; + string mUser; + string mProjectPath; + string mUnityAccessToken; + WorkspaceInfo mWorkspaceInfo; + + static readonly ILog mLog = LogManager.GetLogger("MigrationDialog"); + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationDialog.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationDialog.cs.meta new file mode 100644 index 00000000..45fa535c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationDialog.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: c7a84120cb1bc4b48a18d18cb745730a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationProgressRender.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationProgressRender.cs new file mode 100644 index 00000000..d3ea8015 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationProgressRender.cs @@ -0,0 +1,73 @@ +using System; +using System.IO; + +using Codice.Client.Commands; +using Codice.Client.Common; +using Codice.Client.BaseCommands; +using Codice.LogWrapper; +using PlasticGui; +using Codice.Client.BaseCommands.Sync; + + +namespace Unity.PlasticSCM.Editor.CollabMigration +{ + internal class MigrationProgressRender + { + internal static string FixNotificationPath(string wkPath, string notification) + { + if (notification == null) + return string.Empty; + + int position = notification.ToLower().IndexOf(wkPath.ToLower()); + + if (position < 0) + return notification; + + return notification.Remove(position, wkPath.Length + 1); + } + + internal static string GetProgressString( + CreateWorkspaceFromCollab.Progress status, + BuildProgressSpeedAndRemainingTime.ProgressData progressData, + DateTime now, + double smoothingFactor, + string updateProgressCalculatingMessage, + string updateProgressSingularMessage, + string updateProgressPluralMessage, + string remainingMessage) + { + if (status.CurrentStatus == CreateWorkspaceFromCollab.Progress.Status.Starting) + return updateProgressCalculatingMessage; + + progressData.StartTimerIfNotStarted(now); + + string updatedSize; + string totalSize; + GetFormattedSizes.ForTransfer( + status.ProcessedSize, + status.TotalSize, + out updatedSize, + out totalSize); + + string details = string.Format( + status.TotalFiles == 1 ? + updateProgressSingularMessage : + updateProgressPluralMessage, + updatedSize, + totalSize, + status.ProcessedFiles, + status.TotalFiles, + BuildProgressSpeedAndRemainingTime.ForTransfer( + progressData, + now, + status.TotalSize, + status.ProcessedSize, + smoothingFactor, + remainingMessage)); + + return details; + } + + static ILog mLog = LogManager.GetLogger("MigrationProgressRender"); + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationProgressRender.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationProgressRender.cs.meta new file mode 100644 index 00000000..cdee2107 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabMigration/MigrationProgressRender.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b793dc79f36144740a175a3cba53845d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabPlugin.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabPlugin.cs new file mode 100644 index 00000000..09557b6c --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabPlugin.cs @@ -0,0 +1,158 @@ +using System; +using System.Linq; +using System.Reflection; + +using UnityEditor; +using PackageManager = UnityEditor.PackageManager; + +using Unity.PlasticSCM.Editor.UI; + +namespace Unity.PlasticSCM.Editor +{ + public static class CollabPlugin + { + public static bool IsEnabled() + { + return IsCollabInstanceEnabled(); + } + + internal static void Disable() + { + SetCollabEnabledInstanceAs(false); + + SetCollabEnabledInProjectSettingsAs(false); + } + + internal static void GetVersion(Action onGetVersionCompleted) + { + PackageManager.Requests.ListRequest listRequest = PackageManager.Client.List(true); + + RunGetVersion(listRequest, onGetVersionCompleted); + } + + internal static void Enable() + { + SetCollabEnabledInstanceAs(true); + + SetCollabEnabledInProjectSettingsAs(true); + } + + static void SetCollabEnabledInstanceAs(bool value) + { + object collabInstance = GetCollabInstance(); + + if (collabInstance == null) + return; + + // Invokes Collab.instance.SetCollabEnabledForCurrentProject(false) + SetCollabEnabledForCurrentProject(collabInstance, value); + } + + static void RunGetVersion( + PackageManager.Requests.ListRequest listRequest, + Action onGetVersionCompleted) + { + EditorDispatcher.Dispatch(() => + { + if (!listRequest.IsCompleted) + { + RunGetVersion(listRequest, onGetVersionCompleted); + return; + } + + string pluginVersion = string.Empty; + + if (listRequest.Status == PackageManager.StatusCode.Success && + listRequest.Result != null) + { + PackageManager.PackageInfo collabPackage = listRequest.Result + .FirstOrDefault(package => package.name == mCollabPackageName); + + if (collabPackage != null) + pluginVersion = collabPackage.version; + } + + onGetVersionCompleted.Invoke(pluginVersion); + }); + } + + static void SetCollabEnabledInProjectSettingsAs(bool value) + { + // Invokes PlayerSettings.SetCloudServiceEnabled("Collab", false) + SetCloudServiceEnabled("Collab", value); + + AssetDatabase.SaveAssets(); + } + + static bool IsCollabInstanceEnabled() + { + object collabInstance = GetCollabInstance(); + + if (collabInstance == null) + return false; + + // Invokes Collab.instance.IsCollabEnabledForCurrentProject() + return IsCollabEnabledForCurrentProject(collabInstance); + } + + static void SetCollabEnabledForCurrentProject(object collabInstance, bool enable) + { + MethodInfo InternalSetCollabEnabledForCurrentProject = + CollabType.GetMethod("SetCollabEnabledForCurrentProject"); + + if (InternalSetCollabEnabledForCurrentProject == null) + return; + + InternalSetCollabEnabledForCurrentProject. + Invoke(collabInstance, new object[] { enable }); + } + + static void SetCloudServiceEnabled(string setting, bool enable) + { + MethodInfo InternalSetCloudServiceEnabled = PlayerSettingsType.GetMethod( + "SetCloudServiceEnabled", + BindingFlags.NonPublic | BindingFlags.Static); + + if (InternalSetCloudServiceEnabled == null) + return; + + InternalSetCloudServiceEnabled. + Invoke(null, new object[] { setting, enable }); + } + + static object GetCollabInstance() + { + if (CollabType == null) + return null; + + PropertyInfo InternalInstance = + CollabType.GetProperty("instance"); + + if (InternalInstance == null) + return null; + + return InternalInstance.GetValue(null, null); + } + + static bool IsCollabEnabledForCurrentProject(object collabInstance) + { + MethodInfo InternalIsCollabEnabledForCurrentProject = + CollabType.GetMethod("IsCollabEnabledForCurrentProject"); + + if (InternalIsCollabEnabledForCurrentProject == null) + return false; + + return (bool)InternalIsCollabEnabledForCurrentProject. + Invoke(collabInstance, null); + } + + static readonly Type CollabType = + typeof(UnityEditor.Editor).Assembly. + GetType("UnityEditor.Collaboration.Collab"); + + static readonly Type PlayerSettingsType = + typeof(UnityEditor.PlayerSettings); + + static readonly string mCollabPackageName = "com.unity.collab-proxy"; + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabPlugin.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabPlugin.cs.meta new file mode 100644 index 00000000..37224065 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/CollabPlugin.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 8b1d1407c22e5844698f18df6a9f1781 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration.meta new file mode 100644 index 00000000..2df003c0 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ec63ff75b0076d64fb0a5cf58170501f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/AutoConfig.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/AutoConfig.cs new file mode 100644 index 00000000..9185a9c2 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/AutoConfig.cs @@ -0,0 +1,137 @@ +using Codice.Client.Common; +using Codice.CM.Common; +using PlasticGui; +using Unity.PlasticSCM.Editor.Configuration.CloudEdition.Welcome; +using Unity.PlasticSCM.Editor.WebApi; + +namespace Unity.PlasticSCM.Editor.Configuration +{ + internal static class AutoConfig + { + internal static TokenExchangeResponse PlasticCredentials( + string unityAccessToken, + string serverName, + string projectPath) + { + SetupUnityEditionToken.CreateCloudEditionTokenIfNeeded(); + + bool isClientConfigConfigured = ClientConfig.IsConfigured(); + if (!isClientConfigConfigured) + { + ConfigureClientConf.FromUnityAccessToken( + unityAccessToken, serverName, projectPath); + } + + TokenExchangeResponse tokenExchangeResponse = WebRestApiClient. + PlasticScm.TokenExchange(unityAccessToken); + + if (tokenExchangeResponse.Error != null) + return tokenExchangeResponse; + + CloudEditionWelcomeWindow.JoinCloudServer( + serverName, + tokenExchangeResponse.User, + tokenExchangeResponse.AccessToken); + + if (!isClientConfigConfigured) + return tokenExchangeResponse; + + ConfigureProfile.ForServerIfNeeded( + serverName, + tokenExchangeResponse.User); + + return tokenExchangeResponse; + } + + static class ConfigureClientConf + { + internal static void FromUnityAccessToken( + string unityAccessToken, + string serverName, + string projectPath) + { + CredentialsResponse response = WebRestApiClient. + PlasticScm.GetCredentials(unityAccessToken); + + if (response.Error != null) + { + UnityEngine.Debug.LogErrorFormat( + PlasticLocalization.GetString( + PlasticLocalization.Name.ErrorGettingCredentialsCloudProject), + response.Error.Message, + response.Error.ErrorCode); + + return; + } + + ClientConfigData configData = BuildClientConfigData( + serverName, projectPath, response); + + ClientConfig.Get().Save(configData); + } + + static ClientConfigData BuildClientConfigData( + string serverName, + string projectPath, + CredentialsResponse response) + { + SEIDWorkingMode workingMode = GetWorkingMode(response.Type); + + ClientConfigData configData = new ClientConfigData(); + + configData.WorkspaceServer = serverName; + configData.CurrentWorkspace = projectPath; + configData.WorkingMode = workingMode.ToString(); + configData.SecurityConfig = UserInfo.GetSecurityConfigStr( + workingMode, + response.Email, + GetPassword(response.Token, response.Type)); + configData.LastRunningEdition = InstalledEdition.Get(); + return configData; + } + + static string GetPassword( + string token, + CredentialsResponse.TokenType tokenType) + { + if (tokenType == CredentialsResponse.TokenType.Bearer) + return BEARER_PREFIX + token; + + return token; + } + + static SEIDWorkingMode GetWorkingMode(CredentialsResponse.TokenType tokenType) + { + if (tokenType == CredentialsResponse.TokenType.Bearer) + return SEIDWorkingMode.SSOWorkingMode; + + return SEIDWorkingMode.LDAPWorkingMode; + } + + const string BEARER_PREFIX = "Bearer "; + } + + static class ConfigureProfile + { + internal static void ForServerIfNeeded(string serverName, string user) + { + ProfileManager profileManager = CmConnection.Get().GetProfileManager(); + + ServerProfile serverProfile = profileManager.GetProfileForServer(serverName); + + if (serverProfile != null) + return; + + serverProfile = ProfileManager.CreateProfile( + serverName, + SEIDWorkingMode.SSOWorkingMode, + user); + + profileManager.SaveProfile(serverProfile); + } + } + + } + +} + diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/AutoConfig.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/AutoConfig.cs.meta new file mode 100644 index 00000000..c358b227 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/AutoConfig.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7c21251ff4b7d844292a388e81e47e59 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/ChannelCertificateUiImpl.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/ChannelCertificateUiImpl.cs new file mode 100644 index 00000000..eaed0481 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/ChannelCertificateUiImpl.cs @@ -0,0 +1,93 @@ +using Codice.Client.Common; +using Codice.CM.Common; +using PlasticGui; +using PlasticPipe.Certificates; +using Unity.PlasticSCM.Editor.UI; +using UnityEditor; + +namespace Unity.PlasticSCM.Editor.Configuration +{ + internal class ChannelCertificateUiImpl : IChannelCertificateUI + { + internal ChannelCertificateUiImpl() + { + } + + CertOperationResult IChannelCertificateUI.AcceptNewServerCertificate(PlasticCertInfo serverCertificate) + { + return GetUserResponse( + PlasticLocalization.GetString( + PlasticLocalization.Name.NewCertificateTitle), + PlasticLocalization.GetString( + PlasticLocalization.Name.NewCertificateMessageUnityVCS), + serverCertificate); + } + + CertOperationResult IChannelCertificateUI.AcceptChangedServerCertificate(PlasticCertInfo serverCertificate) + { + return GetUserResponse( + PlasticLocalization.GetString( + PlasticLocalization.Name.ExistingCertificateChangedTitle), + PlasticLocalization.GetString( + PlasticLocalization.Name.ExistingCertificateChangedMessageUnityVCS), + serverCertificate); + } + + bool IChannelCertificateUI.AcceptInvalidHostname(string certHostname, string serverHostname) + { + bool result = false; + + GUIActionRunner.RunGUIAction(delegate { + result = EditorUtility.DisplayDialog( + PlasticLocalization.GetString( + PlasticLocalization.Name.InvalidCertificateHostnameTitle), + PlasticLocalization.GetString( + PlasticLocalization.Name.InvalidCertificateHostnameMessage, + certHostname, serverHostname), + PlasticLocalization.GetString(PlasticLocalization.Name.YesButton), + PlasticLocalization.GetString(PlasticLocalization.Name.NoButton)); + }); + + return result; + } + + CertOperationResult GetUserResponse( + string title, string message, PlasticCertInfo serverCertificate) + { + GuiMessage.GuiMessageResponseButton result = + GuiMessage.GuiMessageResponseButton.Neutral; + + GUIActionRunner.RunGUIAction(delegate { + result = GuiMessage.ShowQuestion( + title, + GetCertificateMessageString(message, serverCertificate), + PlasticLocalization.GetString(PlasticLocalization.Name.YesButton), + PlasticLocalization.GetString(PlasticLocalization.Name.CancelButton), + PlasticLocalization.GetString(PlasticLocalization.Name.NoButton)); + }); + + switch (result) + { + case GuiMessage.GuiMessageResponseButton.Positive: + return CertOperationResult.AddToStore; + case GuiMessage.GuiMessageResponseButton.Negative: + return CertOperationResult.DoNotAddToStore; + case GuiMessage.GuiMessageResponseButton.Neutral: + return CertOperationResult.Cancel; + default: + return CertOperationResult.Cancel; + } + } + + string GetCertificateMessageString(string message, PlasticCertInfo serverCertificate) + { + return string.Format(message, + CertificateUi.GetCnField(serverCertificate.Subject), + CertificateUi.GetCnField(serverCertificate.Issuer), + serverCertificate.Format, + serverCertificate.ExpirationDateString, + serverCertificate.KeyAlgorithm, + serverCertificate.CertHashString); + } + } +} diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/ChannelCertificateUiImpl.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/ChannelCertificateUiImpl.cs.meta new file mode 100644 index 00000000..dbcf2c56 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/ChannelCertificateUiImpl.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 628bc1ed591aa164ab9124ac22e02d9a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition.meta new file mode 100644 index 00000000..9cffe8ff --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0b593e05bcd27824eb229f8c6b20e13b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome.meta new file mode 100644 index 00000000..c3448ba7 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86d9084a265d35f4db65c4e31e0b6769 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/AutoLogin.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/AutoLogin.cs new file mode 100644 index 00000000..3ecea47a --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/AutoLogin.cs @@ -0,0 +1,199 @@ +using System; +using System.Collections.Generic; + +using UnityEditor; +using UnityEngine; + +using Codice.Client.Common.Threading; +using Codice.LogWrapper; +using PlasticGui.Configuration.OAuth; +using Unity.PlasticSCM.Editor.UI; +using Unity.PlasticSCM.Editor.UI.Progress; +using Unity.PlasticSCM.Editor.WebApi; + +namespace Unity.PlasticSCM.Editor.Configuration.CloudEdition.Welcome +{ + internal class AutoLogin : OAuthSignIn.INotify + { + internal enum State : byte + { + Off = 0, + Started = 1, + Running = 2, + ResponseInit = 3, + ResponseEnd = 6, + ResponseSuccess = 7, + OrganizationChoosed = 8, + InitializingPlastic = 9, + ErrorNoToken = 20, + ErrorTokenException = 21, + ErrorResponseNull = 22, + ErrorResponseError = 23, + ErrorTokenEmpty = 24, + ErrorResponseCancel = 25 + } + + internal string AccessToken; + internal string UserName; + + internal void Run() + { + mPlasticWindow = GetPlasticWindow(); + + if (!string.IsNullOrEmpty(CloudProjectSettings.accessToken)) + { + ExchangeTokensAndJoinOrganization(CloudProjectSettings.accessToken); + return; + } + + mPlasticWindow.GetWelcomeView().autoLoginState = AutoLogin.State.ErrorNoToken; + } + + void OAuthSignIn.INotify.SuccessForConfigure( + List organizations, + bool canCreateAnOrganization, + string userName, + string accessToken) + { + mPlasticWindow.GetWelcomeView().autoLoginState = AutoLogin.State.ResponseSuccess; + ChooseOrganization(organizations); + } + + void OAuthSignIn.INotify.SuccessForSSO(string organization) + { + } + + void OAuthSignIn.INotify.SuccessForProfile(string email) + { + } + + void OAuthSignIn.INotify.SuccessForHomeView(string userName) + { + } + + void OAuthSignIn.INotify.SuccessForCredentials( + string email, + string accessToken) + { + } + + void OAuthSignIn.INotify.Cancel(string errorMessage) + { + mPlasticWindow.GetWelcomeView().autoLoginState = AutoLogin.State.ErrorResponseCancel; + } + + void ExchangeTokensAndJoinOrganization(string unityAccessToken) + { + int ini = Environment.TickCount; + + TokenExchangeResponse response = null; + + IThreadWaiter waiter = ThreadWaiter.GetWaiter(10); + waiter.Execute( + /*threadOperationDelegate*/ delegate + { + mPlasticWindow.GetWelcomeView().autoLoginState = AutoLogin.State.ResponseInit; + response = WebRestApiClient.PlasticScm.TokenExchange(unityAccessToken); + }, + /*afterOperationDelegate*/ delegate + { + mLog.DebugFormat( + "TokenExchange time {0} ms", + Environment.TickCount - ini); + + if (waiter.Exception != null) + { + mPlasticWindow.GetWelcomeView().autoLoginState = AutoLogin.State.ErrorTokenException; + ExceptionsHandler.LogException( + "TokenExchangeSetting", + waiter.Exception); + Debug.LogWarning(waiter.Exception.Message); + return; + } + + if (response == null) + { + mPlasticWindow.GetWelcomeView().autoLoginState = AutoLogin.State.ErrorResponseNull; + Debug.LogWarning("Auto Login response null"); + return; + } + + if (response.Error != null) + { + mPlasticWindow.GetWelcomeView().autoLoginState = AutoLogin.State.ErrorResponseError; + var warning = string.Format( + "Unable to exchange token: {0} [code {1}]", + response.Error.Message, response.Error.ErrorCode); + mLog.ErrorFormat(warning); + Debug.LogWarning(warning); + return; + } + + if (string.IsNullOrEmpty(response.AccessToken)) + { + mPlasticWindow.GetWelcomeView().autoLoginState = AutoLogin.State.ErrorTokenEmpty; + var warning = string.Format( + "Access token is empty for user: {0}", + response.User); + mLog.InfoFormat(warning); + Debug.LogWarning(warning); + return; + } + + mPlasticWindow.GetWelcomeView().autoLoginState = AutoLogin.State.ResponseEnd; + AccessToken = response.AccessToken; + UserName = response.User; + GetOrganizationList(); + }); + } + + void GetOrganizationList() + { + OAuthSignIn.GetOrganizationsFromAccessToken( + string.Empty, + CloudProjectSettings.userName, + AccessToken, + OAuthSignIn.Mode.Configure, + new ProgressControlsForDialogs(), + this, + PlasticGui.Plastic.WebRestAPI + ); + } + + void ChooseOrganization( + List organizations) + { + mPlasticWindow = GetPlasticWindow(); + + CloudEditionWelcomeWindow.ShowWindow( + PlasticGui.Plastic.WebRestAPI, + mPlasticWindow.CmConnectionForTesting, null, true); + + mCloudEditionWelcomeWindow = CloudEditionWelcomeWindow.GetWelcomeWindow(); + mCloudEditionWelcomeWindow.FillUserAndToken(UserName, AccessToken); + if (organizations.Count == 1) + { + mCloudEditionWelcomeWindow.JoinOrganizationAndWelcomePage(organizations[0]); + return; + } + mCloudEditionWelcomeWindow.ShowOrganizationPanelFromAutoLogin(organizations); + } + + static PlasticWindow GetPlasticWindow() + { + var windows = Resources.FindObjectsOfTypeAll(); + PlasticWindow plasticWindow = windows.Length > 0 ? windows[0] : null; + + if (plasticWindow == null) + plasticWindow = ShowWindow.Plastic(); + + return plasticWindow; + } + + PlasticWindow mPlasticWindow; + CloudEditionWelcomeWindow mCloudEditionWelcomeWindow; + + static readonly ILog mLog = LogManager.GetLogger("TokensExchange"); + } + +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/AutoLogin.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/AutoLogin.cs.meta new file mode 100644 index 00000000..2a989397 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/AutoLogin.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 806bdb4f911275c4ca1ee81fde4b4d4f +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/CloudEditionWelcomeWindow.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/CloudEditionWelcomeWindow.cs new file mode 100644 index 00000000..e25faa07 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/CloudEditionWelcomeWindow.cs @@ -0,0 +1,276 @@ +using UnityEditor; +using UnityEngine; +using UnityEngine.UIElements; + +using PlasticGui; +using PlasticGui.WebApi; +using PlasticGui.Configuration.CloudEdition.Welcome; +using PlasticGui.Configuration.OAuth; +using System.Collections.Generic; +using Codice.Client.Common.Servers; +using Codice.Client.Common; +using Codice.Utils; +using Unity.PlasticSCM.Editor.Views.Welcome; + +using Codice.CM.Common; + +namespace Unity.PlasticSCM.Editor.Configuration.CloudEdition.Welcome +{ + internal interface IWelcomeWindowNotify + { + void SuccessForConfigure(List organizations); + void Back(); + } + + internal class CloudEditionWelcomeWindow : + EditorWindow, + OAuthSignIn.INotify, + IWelcomeWindowNotify + { + internal static void ShowWindow( + IPlasticWebRestApi restApi, + CmConnection cmConnection, + WelcomeView welcomeView, + bool autoLogin = false) + { + sRestApi = restApi; + sCmConnection = cmConnection; + sAutoLogin = autoLogin; + CloudEditionWelcomeWindow window = GetWindow(); + + window.titleContent = new GUIContent( + PlasticLocalization.GetString(PlasticLocalization.Name.SignInToUnityVCS)); + window.minSize = window.maxSize = new Vector2(450, 300); + + window.mWelcomeView = welcomeView; + + window.Show(); + } + + internal static CloudEditionWelcomeWindow GetWelcomeWindow() + { + return GetWindow(); + } + + internal static void JoinCloudServer( + string cloudServer, + string username, + string accessToken) + { + SaveCloudServer.ToPlasticGuiConfig(cloudServer); + SaveCloudServer.ToPlasticGuiConfigFile( + cloudServer, GetPlasticConfigFileToSaveOrganization()); + SaveCloudServer.ToPlasticGuiConfigFile( + cloudServer, GetGluonConfigFileToSaveOrganization()); + + KnownServers.ServersFromCloud.InitializeForWindows( + PlasticGuiConfig.Get().Configuration.DefaultCloudServer); + + CloudEditionWelcome.WriteToTokensConf( + cloudServer, username, accessToken); + + SetupUnityEditionToken.CreateCloudEditionTokenIfNeeded(); + + if (sAutoLogin) + { + ClientConfigData clientConfigData = ConfigurationChecker.GetClientConfigData(); + clientConfigData.WorkspaceServer = cloudServer; + clientConfigData.WorkingMode = SEIDWorkingMode.SSOWorkingMode.ToString(); + clientConfigData.SecurityConfig = username; + ClientConfig.Get().Save(clientConfigData); + + GetWindow().GetWelcomeView().autoLoginState = AutoLogin.State.OrganizationChoosed; + } + } + + internal static string GetPlasticConfigFileToSaveOrganization() + { + if (PlatformIdentifier.IsMac()) + { + return "macgui.conf"; + } + + return "plasticgui.conf"; + } + + internal static string GetGluonConfigFileToSaveOrganization() + { + if (PlatformIdentifier.IsMac()) + { + return "gluon.conf"; + } + + return "gameui.conf"; + } + + internal void CancelJoinOrganization() + { + if (sAutoLogin) + { + GetWindow().GetWelcomeView().autoLoginState = AutoLogin.State.Started; + } + } + + internal void JoinOrganizationAndWelcomePage(string organization) + { + JoinCloudServer(organization, + mUserName, + mAccessToken); + + GetWelcomePage.Run(sRestApi, organization); + } + + internal void ReplaceRootPanel(VisualElement panel) + { + rootVisualElement.Clear(); + rootVisualElement.Add(panel); + } + + internal void ShowOrganizationPanel( + string title, + List organizations) + { + mOrganizationPanel = new OrganizationPanel( + this, + sRestApi, + title, + organizations); + + ReplaceRootPanel(mOrganizationPanel); + } + + internal void FillUserAndToken( + string userName, + string accessToken) + { + mUserName = userName; + mAccessToken = accessToken; + } + + internal void ShowOrganizationPanelFromAutoLogin( + List organizations) + { + ShowOrganizationPanel( + GetWindowTitle(), + organizations); + } + + internal string GetWindowTitle() + { + return PlasticLocalization.Name.SignInToUnityVCS.GetString(); + } + + internal SignInPanel GetSignInPanel() + { + return mSignInPanel; + } + + void OAuthSignIn.INotify.SuccessForConfigure( + List organizations, + bool canCreateAnOrganization, + string userName, + string accessToken) + { + ShowOrganizationPanel( + GetWindowTitle(), + organizations); + + Focus(); + + mUserName = userName; + mAccessToken = accessToken; + } + + void OAuthSignIn.INotify.SuccessForSSO(string organization) + { + // empty implementation + } + + void OAuthSignIn.INotify.SuccessForProfile(string email) + { + // empty implementation + } + + void OAuthSignIn.INotify.SuccessForHomeView(string homeView) + { + // empty implementation + } + + void OAuthSignIn.INotify.SuccessForCredentials( + string email, + string accessToken) + { + // empty implementation + } + + void OAuthSignIn.INotify.Cancel(string errorMessage) + { + Focus(); + } + + void IWelcomeWindowNotify.SuccessForConfigure( + List organizations) + { + ShowOrganizationPanel( + GetWindowTitle(), + organizations); + } + + void IWelcomeWindowNotify.Back() + { + rootVisualElement.Clear(); + rootVisualElement.Add(mSignInPanel); + } + + void OnEnable() + { + BuildComponents(); + } + + void OnDestroy() + { + Dispose(); + + if (mWelcomeView != null) + mWelcomeView.OnUserClosedConfigurationWindow(); + } + + void Dispose() + { + if (mSignInPanel != null) + mSignInPanel.Dispose(); + + if (mOrganizationPanel != null) + mOrganizationPanel.Dispose(); + } + + void BuildComponents() + { + VisualElement root = rootVisualElement; + + root.Clear(); + + mSignInPanel = new SignInPanel( + this, + sRestApi, + sCmConnection); + + titleContent = new GUIContent(GetWindowTitle()); + + root.Add(mSignInPanel); + if (sAutoLogin) + mSignInPanel.SignInWithUnityIdButtonAutoLogin(); + } + + string mAccessToken; + string mUserName; + + OrganizationPanel mOrganizationPanel; + SignInPanel mSignInPanel; + WelcomeView mWelcomeView; + + static IPlasticWebRestApi sRestApi; + static CmConnection sCmConnection; + static bool sAutoLogin = false; + } +} \ No newline at end of file diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/CloudEditionWelcomeWindow.cs.meta b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/CloudEditionWelcomeWindow.cs.meta new file mode 100644 index 00000000..44fcd417 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/CloudEditionWelcomeWindow.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 0ad54f9e1bb701142b116d0d1ed98437 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/OrganizationPanel.cs b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/OrganizationPanel.cs new file mode 100644 index 00000000..29f8acb9 --- /dev/null +++ b/third/semester1/CT3536: Games Programming/labs/Weeks 1-3/My project (1)/Library/PackageCache/com.unity.collab-proxy@2.0.5/Editor/PlasticSCM/Configuration/CloudEdition/Welcome/OrganizationPanel.cs @@ -0,0 +1,232 @@ +using System.Collections.Generic; +using System.Linq; + +using UnityEngine; +using UnityEditor.UIElements; +using UnityEngine.UIElements; + +using Codice.Client.Common.Threading; +using PlasticGui; +using PlasticGui.WebApi; +using PlasticGui.WebApi.Responses; +using Unity.PlasticSCM.Editor.UI; +using Unity.PlasticSCM.Editor.UI.UIElements; + +namespace Unity.PlasticSCM.Editor.Configuration.CloudEdition.Welcome +{ + internal class OrganizationPanel : VisualElement + { + internal OrganizationPanel( + CloudEditionWelcomeWindow parentWindow, + IPlasticWebRestApi restApi, + string title, + List organizations) + { + mParentWindow = parentWindow; + mRestApi = restApi; + + InitializeLayoutAndStyles(); + + BuildComponents(title, organizations); + + EditorWindowFocus.OnApplicationActivated += OnEditorActivated; + } + + internal void Dispose() + { + EditorWindowFocus.OnApplicationActivated -= OnEditorActivated; + + mParentWindow.CancelJoinOrganization(); + + if (mJoinSingleOrganizationButton != null) + mJoinSingleOrganizationButton.clicked -= JoinOrganizationButton_clicked; + + if (mJoinMultipleOrganizationsButton != null) + mJoinMultipleOrganizationsButton.clicked -= JoinOrganizationButton_clicked; + + if (mOpenUnityDashboardButton != null) + mOpenUnityDashboardButton.clicked -= OpenUnityDashboardButton_clicked; + } + + void OnEditorActivated() + { + if (!mReloadOrganizationsNeeded) + return; + + mReloadOrganizationsNeeded = false; + mProgressControls.ShowProgress(PlasticLocalization.Name.LoadingOrganizations.GetString()); + + OrganizationsResponse organizationResponse = null; + IThreadWaiter waiter = ThreadWaiter.GetWaiter(); + waiter.Execute( + /*threadOperationDelegate*/ delegate + { + organizationResponse = mRestApi.GetCloudServers(); + }, + /*afterOperationDelegate*/ delegate + { + mProgressControls.HideProgress(); + + if (waiter.Exception != null) + { + mProgressControls.ShowError(PlasticLocalization.Name.UnexpectedError.GetString()); + ExceptionsHandler.LogException(typeof(OrganizationPanel).Name, waiter.Exception); + return; + } + + if (organizationResponse.Error != null) + { + mReloadOrganizationsNeeded = true; + mProgressControls.ShowError(organizationResponse.Error.Message); + return; + } + + ProcessOrganizations(organizationResponse.CloudServers); + }); + } + + void ProcessOrganizations(List organizations) + { + this.Query("noOrganization").Collapse(); + this.Query("joinSingleOrganization").Collapse(); + this.Query("joinMultipleOrganizations").Collapse(); + + if (organizations.Count == 0) + { + mReloadOrganizationsNeeded = true; + BuildNoOrganizationSection(); + + mOpenUnityDashboardButton = this.Q